From aafe6fa373ba9bf0ca12049b9c0705008b8404c6 Mon Sep 17 00:00:00 2001 From: memoryleak47 Date: Thu, 30 Mar 2023 14:28:26 +0200 Subject: [PATCH 01/19] small cleanup --- Intern/RayCore/src/Beamline/Beamline.cpp | 2 +- Intern/RayCore/src/Beamline/OpticalElement.cpp | 3 --- Intern/RayCore/src/Data/Importer.cpp | 4 ++-- Intern/RayCore/src/Data/Importer.h | 2 +- Intern/RayCore/src/Data/xml.cpp | 2 +- Intern/RayCore/src/Tracer/CpuTracer.cpp | 2 +- Intern/RayCore/src/Tracer/Tracer.cpp | 2 +- Intern/RayCore/src/Tracer/Tracer.h | 2 +- Tests/setupTests.h | 2 +- Tests/testsPCH.h | 2 +- 10 files changed, 10 insertions(+), 13 deletions(-) diff --git a/Intern/RayCore/src/Beamline/Beamline.cpp b/Intern/RayCore/src/Beamline/Beamline.cpp index 9f8c979e2..6daf8c259 100644 --- a/Intern/RayCore/src/Beamline/Beamline.cpp +++ b/Intern/RayCore/src/Beamline/Beamline.cpp @@ -2,8 +2,8 @@ #include -#include "Debug/Instrumentor.h" #include "Beamline/Objects/Objects.h" +#include "Debug/Instrumentor.h" namespace RAYX { Beamline::Beamline() = default; diff --git a/Intern/RayCore/src/Beamline/OpticalElement.cpp b/Intern/RayCore/src/Beamline/OpticalElement.cpp index afe8b2720..a75402f49 100644 --- a/Intern/RayCore/src/Beamline/OpticalElement.cpp +++ b/Intern/RayCore/src/Beamline/OpticalElement.cpp @@ -22,9 +22,6 @@ OpticalElement::OpticalElement(const DesignObject& dobj) { m_position = dobj.parsePosition(); m_orientation = dobj.parseOrientation(); - - // TODO remove later! 42 means uninitialized. - m_behaviour.m_type = 42; } Element OpticalElement::intoElement() const { diff --git a/Intern/RayCore/src/Data/Importer.cpp b/Intern/RayCore/src/Data/Importer.cpp index b031a3132..8d72ebf7e 100644 --- a/Intern/RayCore/src/Data/Importer.cpp +++ b/Intern/RayCore/src/Data/Importer.cpp @@ -6,11 +6,11 @@ #include #include +#include "Beamline/Beamline.h" +#include "Beamline/Objects/Objects.h" #include "Data/xml.h" #include "Debug/Debug.h" #include "Debug/Instrumentor.h" -#include "Beamline/Beamline.h" -#include "Beamline/Objects/Objects.h" namespace RAYX { diff --git a/Intern/RayCore/src/Data/Importer.h b/Intern/RayCore/src/Data/Importer.h index 63f049228..4523f5e5f 100644 --- a/Intern/RayCore/src/Data/Importer.h +++ b/Intern/RayCore/src/Data/Importer.h @@ -2,8 +2,8 @@ #include -#include "Core.h" #include "Beamline/Beamline.h" +#include "Core.h" namespace RAYX { RAYX_API Beamline importBeamline(const std::filesystem::path&); diff --git a/Intern/RayCore/src/Data/xml.cpp b/Intern/RayCore/src/Data/xml.cpp index 6bc788919..dfc3601c3 100644 --- a/Intern/RayCore/src/Data/xml.cpp +++ b/Intern/RayCore/src/Data/xml.cpp @@ -6,9 +6,9 @@ #include #include -#include "Debug/Debug.h" #include "Beamline/EnergyDistribution.h" #include "Beamline/LightSource.h" +#include "Debug/Debug.h" #include "Shared/Constants.h" #include "utils.h" diff --git a/Intern/RayCore/src/Tracer/CpuTracer.cpp b/Intern/RayCore/src/Tracer/CpuTracer.cpp index c11db4dbb..b8600711c 100644 --- a/Intern/RayCore/src/Tracer/CpuTracer.cpp +++ b/Intern/RayCore/src/Tracer/CpuTracer.cpp @@ -5,10 +5,10 @@ #include #include +#include "Beamline/OpticalElement.h" #include "Debug/Debug.h" #include "Debug/Instrumentor.h" #include "Material/Material.h" -#include "Beamline/OpticalElement.h" #include "Random.h" using uint = unsigned int; diff --git a/Intern/RayCore/src/Tracer/Tracer.cpp b/Intern/RayCore/src/Tracer/Tracer.cpp index 81d710493..8287b0329 100644 --- a/Intern/RayCore/src/Tracer/Tracer.cpp +++ b/Intern/RayCore/src/Tracer/Tracer.cpp @@ -2,9 +2,9 @@ #include +#include "Beamline/OpticalElement.h" #include "Debug/Debug.h" #include "Debug/Instrumentor.h" -#include "Beamline/OpticalElement.h" #include "Random.h" #include "Shared/Constants.h" diff --git a/Intern/RayCore/src/Tracer/Tracer.h b/Intern/RayCore/src/Tracer/Tracer.h index 464f27e26..58611dbe2 100644 --- a/Intern/RayCore/src/Tracer/Tracer.h +++ b/Intern/RayCore/src/Tracer/Tracer.h @@ -5,8 +5,8 @@ #include #include -#include "Core.h" #include "Beamline/Beamline.h" +#include "Core.h" #include "Ray.h" #include "Shared/Constants.h" diff --git a/Tests/setupTests.h b/Tests/setupTests.h index 67037b653..190f84a2e 100644 --- a/Tests/setupTests.h +++ b/Tests/setupTests.h @@ -5,12 +5,12 @@ #include #include +#include "Beamline/Objects/Objects.h" #include "CanonicalizePath.h" #include "Core.h" #include "Data/Importer.h" #include "Debug/Debug.h" #include "Material/Material.h" -#include "Beamline/Objects/Objects.h" #include "Shared/Constants.h" #include "Tracer/CpuTracer.h" #include "Tracer/Ray.h" diff --git a/Tests/testsPCH.h b/Tests/testsPCH.h index 99a0a21a9..4db94fcd1 100644 --- a/Tests/testsPCH.h +++ b/Tests/testsPCH.h @@ -1,7 +1,7 @@ #pragma once -#include "Material/Material.h" #include "Beamline/Objects/Objects.h" +#include "Material/Material.h" #include "gmock/gmock.h" #include "gtest/gtest.h" #include "setupTests.h" \ No newline at end of file From 2219a42d519432c2a0bfd95f0a4d8845abf3df50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20M=C3=B6ller?= Date: Fri, 31 Mar 2023 16:13:14 +0200 Subject: [PATCH 02/19] add jupyter notebook for visualization resolves #134 --- Scripts/rayx-visualization-toolbox.ipynb | 372 +++++++++++++++++++++++ 1 file changed, 372 insertions(+) create mode 100644 Scripts/rayx-visualization-toolbox.ipynb diff --git a/Scripts/rayx-visualization-toolbox.ipynb b/Scripts/rayx-visualization-toolbox.ipynb new file mode 100644 index 000000000..21f88b2db --- /dev/null +++ b/Scripts/rayx-visualization-toolbox.ipynb @@ -0,0 +1,372 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "877bca97-8718-49c8-9c96-08befafa3899", + "metadata": {}, + "source": [ + "# RAY-X visualization toolbox" + ] + }, + { + "cell_type": "markdown", + "id": "0ebde0f7-05a0-481b-b55a-90d2f1201dd1", + "metadata": {}, + "source": [ + "This [Jupyter notebook](https://jupyter.org/) allows for visualization of RAYX' output files. For this, the [environment variables](https://en.wikipedia.org/wiki/Environment_variable) `$RAYX_FILE` or `$RAYX_DIR` can be set.\n", + "\n", + "* If `$RAYX_FILE` is set, it will be selected for visualization below.\n", + "* If `$RAYX_DIR` is set, all `.h5` files recursively residing in that directory will be selectable for visualization below.\n", + "\n", + "**※** To run this visualization toolbox, click KernelRestart Kernel and Run All Cells...Restart." + ] + }, + { + "cell_type": "markdown", + "id": "26427473-def9-4c7f-99a7-1bc732881697", + "metadata": { + "jp-MarkdownHeadingCollapsed": true, + "tags": [] + }, + "source": [ + "## Imports" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b5b5348c-394b-4a51-b9ef-3393966a3518", + "metadata": {}, + "outputs": [], + "source": [ + "import glob\n", + "import h5py\n", + "import ipywidgets\n", + "import natsort\n", + "import os\n", + "import re\n", + "\n", + "import matplotlib as mpl\n", + "import numpy as np\n", + "import pandas as pd\n", + "import pylab as plt\n", + "\n", + "from typing import List" + ] + }, + { + "cell_type": "markdown", + "id": "9b3e302e-d6eb-4e8a-b1bd-8f9d82ca9f7b", + "metadata": { + "jp-MarkdownHeadingCollapsed": true, + "tags": [] + }, + "source": [ + "## Settings & inputs" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fca554f1-240d-4d1b-bfda-21563435d7aa", + "metadata": {}, + "outputs": [], + "source": [ + "# Select all available HDF5 files in a directory, based on filename\n", + "h5_file = os.environ.get('RAYX_FILE')\n", + "h5_dir = os.environ.get('RAYX_DIR')\n", + "if h5_dir:\n", + " h5_files = natsort.natsorted(\n", + " glob.glob(f'{h5_dir}/**/*.h5') + \n", + " glob.glob(f'{h5_dir}/*.h5')\n", + " )\n", + "else:\n", + " h5_files = []" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e8cf6757-22ec-402c-9828-5c1f4c6ce806", + "metadata": {}, + "outputs": [], + "source": [ + "# Allow all color maps, selecting turbo as the default\n", + "# cf. https://ai.googleblog.com/2019/08/turbo-improved-rainbow-colormap-for.html\n", + "cmaps = plt.colormaps()\n", + "cmap_default = 'turbo'" + ] + }, + { + "cell_type": "markdown", + "id": "ebe4b5c4-f4ca-44d0-95c6-6393028bebb3", + "metadata": { + "jp-MarkdownHeadingCollapsed": true, + "tags": [] + }, + "source": [ + "## Functions" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "87b990fa-d734-43d2-9cee-521d2147389e", + "metadata": {}, + "outputs": [], + "source": [ + "def importOutput(filename: str, filter_weight=1, group_names=['Reflection Zoneplate']):\n", + " \"\"\"\n", + " Import output h5 format and clean data\n", + " \n", + " filename: absolute path to HDF5 file\n", + " filter_weight: 1 = W_JUST_HIT_ELEM\n", + " group_strings: Groups multiple strings if the base string matches\n", + " \"\"\"\n", + " # file will be closed when we exit from WITH scope\n", + " with h5py.File(filename, 'r') as h5f:\n", + " keys = []\n", + " for x in h5f.keys():\n", + " if x == \"rays\": continue\n", + " keys.append(int(x))\n", + " keys = sorted(keys)\n", + "\n", + " names = []\n", + " for x in keys:\n", + " x = \"\".join([chr(y) for y in h5f[str(x)]])\n", + " names.append(x)\n", + "\n", + " dataset = h5f[\"rays\"]\n", + " df = pd.DataFrame(dataset, columns=['RayId', 'SnapshotID', 'Xloc', 'Yloc', 'Zloc', 'Weight', 'Xdir', 'Ydir',\n", + " 'Zdir', 'Energy', 'Stokes0', 'Stokes1', 'Stokes2', 'Stokes3', 'pathLength',\n", + " 'order', 'lastElement', 'extraParam'])\n", + " df = df[df[\"Weight\"] == filter_weight]\n", + " df = df[[\"Xloc\", \"Yloc\", \"Zloc\", \"lastElement\"]]\n", + " \n", + " # Group names based on the group strings\n", + " groups = {}\n", + " for group_name in group_names:\n", + " groups[group_name] = [\n", + " name\n", + " for name in names\n", + " if re.match(f\"^{group_name} [0-9]+$\", name)\n", + " ]\n", + " # Add all single groups that are not matched\n", + " for name in names:\n", + " match = False\n", + " for group_name, group_members in groups.items():\n", + " if name in group_members:\n", + " match = True\n", + " if not match:\n", + " groups[name] = [name]\n", + " \n", + " return df, names, groups" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "45b82355-d12a-44d5-a06a-065fe78f9c43", + "metadata": {}, + "outputs": [], + "source": [ + "def plot_2d_histogram(df: pd.DataFrame, group, groups, names: List[str], cmap, proportional=True,\n", + " bins2d=2048, bins1d=128, logarithmic=False, plane='auto'):\n", + " \"\"\"\n", + " Plot 2D histogram\n", + " \"\"\"\n", + " if group == 'Please select file first':\n", + " return\n", + " es = [\n", + " float(names.index(group_member) + 1)\n", + " for group_member in groups[group]\n", + " ]\n", + " d = df[df[\"lastElement\"].isin(es)]\n", + "\n", + " # Cut proportionally if desired\n", + " if proportional:\n", + " hist_range = np.array([\n", + " (-2048 * 26 / 1000 / 2, 2048 * 26 / 1000 / 2),\n", + " (-2048 * 26 / 1000 / 2, 2048 * 26 / 1000 / 2)\n", + " ])\n", + " else:\n", + " hist_range = None\n", + "\n", + " # Choose planes based on dominant standard deviation\n", + " if plane == 'auto':\n", + " xy_plane = d[\"Yloc\"].std() > d[\"Zloc\"].std()\n", + " elif plane == 'xz':\n", + " xy_plane = False\n", + " else:\n", + " xy_plane = True\n", + " \n", + " # Compute 2d histogram\n", + " trace, xedges, yedges = np.histogram2d(\n", + " d[\"Xloc\"],\n", + " d[\"Yloc\"] if xy_plane else d[\"Zloc\"],\n", + " bins=bins2d,\n", + " range=hist_range,\n", + " )\n", + " trace = np.flip(trace.T)\n", + " extent = [yedges[0], yedges[-1], yedges[0], yedges[-1]]\n", + " vmin = trace.min()\n", + " vmax = trace.max()\n", + "\n", + " # Create gridspec for multiple plots\n", + " fig = plt.figure(figsize=(12, 12))\n", + " gs = plt.GridSpec(2, 3, width_ratios=[.03, 1, .2], height_ratios=[.2, 1 - .03])\n", + " ax_cbar = fig.add_subplot(gs[1, 0])\n", + " ax_hist2d = fig.add_subplot(gs[1, 1])\n", + " ax_hist_h = fig.add_subplot(gs[1, 2], sharey=ax_hist2d)\n", + " ax_hist_v = fig.add_subplot(gs[0, 1], sharex=ax_hist2d)\n", + " \n", + " # Plot 2d histogram\n", + " lognorm = None\n", + " if logarithmic:\n", + " if vmin <= 0:\n", + " vmin = 1e-1\n", + " lognorm = mpl.colors.LogNorm(vmin=vmin, vmax=vmax)\n", + " vmin = None\n", + " vmax = None\n", + " im = ax_hist2d.imshow(trace, vmin=vmin, vmax=vmax, extent=extent, cmap=cmap,\n", + " aspect='auto', norm=lognorm)\n", + " cbar = plt.colorbar(im, cax=ax_cbar)\n", + " plane = \"XY\" if xy_plane else \"XZ\"\n", + " plt.title(f\"{plane} histogram of {group}\")\n", + " plt.tight_layout()\n", + "\n", + " # Mean color\n", + " cmap = mpl.cm.get_cmap(cmap)\n", + " # mcol = cmap(trace.mean())\n", + " mcol = cmap(.5)\n", + " \n", + " # Histograms\n", + " mean_v = trace.mean(axis=0)\n", + " mean_h = trace.mean(axis=1)\n", + " ax_hist_v.plot(np.linspace(extent[0], extent[1], len(mean_v)), mean_v, color=mcol, linewidth=.3)\n", + " ax_hist_h.plot(mean_h, np.linspace(extent[3], extent[2], len(mean_h)), color=mcol, linewidth=.3)\n", + " if logarithmic:\n", + " ax_hist_v.set_yscale('log')\n", + " ax_hist_h.set_xscale('log')\n", + " plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "5481c67a-38ee-4b5d-a7f4-232703e9afc0", + "metadata": {}, + "source": [ + "## Interactive elements" + ] + }, + { + "cell_type": "markdown", + "id": "1c8b0763-5704-4f4a-a596-6c2371ae2815", + "metadata": {}, + "source": [ + "The following settings allow you to control the visualization.\n", + "\n", + "Setting | Description\n", + "-:|-\n", + "h5_file | HDF5 file from which to load data from\n", + "group | Group within that HDF5 file to visualize\n", + "plane | Use XY- or XZ-plane or detect automatically, based on standard deviation\n", + "cmap | [Colormap](https://matplotlib.org/stable/tutorials/colors/colormaps.html) for visualization\n", + "proportional | Whether data should be scaled to be proportional, or fit the plot's window\n", + "logarithmic | Whether to use logarithmic scaling for the colormap\n", + "bins2d | Number of bins for the 2D histogram" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "56a09b67-3d3f-4056-9704-3009e1851b54", + "metadata": { + "jupyter": { + "source_hidden": true + }, + "tags": [] + }, + "outputs": [], + "source": [ + "h5_file_options = natsort.natsorted(list(set([h5_file] + h5_files))) if h5_file else h5_files\n", + "h5_file_widget = ipywidgets.Dropdown(value=h5_file, options=h5_file_options)\n", + "group_widget = ipywidgets.Dropdown(options=['Please select file first'])\n", + "plane_widget = ipywidgets.Dropdown(value='auto', options=['auto', 'xy', 'xz'])\n", + "cmap_widget = ipywidgets.Dropdown(value=cmap_default, options=cmaps)\n", + "proportional_widget = ipywidgets.Checkbox()\n", + "logarithmic_widget = ipywidgets.Checkbox()\n", + "bins2d_widget = ipywidgets.IntSlider(value=2048, min=2, max=2048, step=1)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b3778fa8-f6a1-46d7-96e6-d5bbb52abeef", + "metadata": { + "jupyter": { + "source_hidden": true + }, + "tags": [] + }, + "outputs": [], + "source": [ + "@ipywidgets.interact(h5_file=h5_file_widget, group=group_widget, plane=plane_widget,\n", + " cmap=cmap_widget, proportional=proportional_widget,\n", + " logarithmic=logarithmic_widget, bins2d=bins2d_widget)\n", + "def print_stuff(h5_file, group, plane, cmap, proportional, logarithmic, bins2d):\n", + " if not h5_file:\n", + " h5_file_str = \"NOT SET! PLEASE SET $RAYX_FILE WHEN STARTING JUPYTER!\" if not h5_file else h5_file\n", + " h5_dir_str = \"NOT SET! PLEASE SET $RAYX_DIR WHEN STARTING JUPYTER!\" if not h5_dir else h5_dir\n", + " print(f\"NO HDF5 FILES FOUND FOR PLOTTING! MAKE SURE THE FOLLOWING FILE/DIR ARE CORRECT!\\n\\n FILE: {h5_file_str}\\n DIR: {h5_dir_str}\")\n", + " return\n", + " df, names, groups = importOutput(h5_file)\n", + " group_widget.options = groups.keys()\n", + " plot_2d_histogram(df, group, groups, names, cmap, proportional=proportional,\n", + " logarithmic=logarithmic, bins2d=bins2d, plane=plane)" + ] + }, + { + "cell_type": "markdown", + "id": "46f07000-7fdb-41bd-87bf-0b93a92ac236", + "metadata": {}, + "source": [ + " " + ] + }, + { + "cell_type": "markdown", + "id": "e5c42b5d-06bb-4497-823f-a57f9b1acebc", + "metadata": { + "tags": [] + }, + "source": [ + "























\n", + "























\n", + "























\n", + "























" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.8" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From 8cb2f28b1850cf6b02d4e3feb749063c92800ff8 Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Wed, 5 Apr 2023 13:58:40 +0200 Subject: [PATCH 03/19] move tests and remove unnecessary cmake code --- CMakeLists.txt | 1 - Extern/CMakeLists.txt | 3 +- Intern/RayCore/CMakeLists.txt | 99 +---- .../AutomaticBenchmarks/GPUvsCPU.py | 0 .../AutomaticBenchmarks/benchmark_diagram.py | 0 .../AutomaticBenchmarks/benchrayx.sh | 0 .../tests}/Benchmarks/ManualTests/README.md | 0 .../ManualTests/RML_Test_Bundle.zip | Bin .../ManualTests/TestResult_Report.ods | Bin .../RayCore/tests}/CMakeLists.txt | 17 - .../RayCore/tests}/input/BoringImagePlane.csv | 44 +- .../RayCore/tests}/input/BoringImagePlane.rml | 0 .../RayCore/tests}/input/Cone.csv | 404 +++++++++--------- .../RayCore/tests}/input/Cone.rml | 0 .../RayCore/tests}/input/CylinderDefault.csv | 404 +++++++++--------- .../RayCore/tests}/input/CylinderDefault.rml | 0 .../RayCore/tests}/input/Ellipsoid.rml | 0 .../RayCore/tests}/input/Ellipsoid_DGIA.csv | 404 +++++++++--------- .../RayCore/tests}/input/Ellipsoid_DGIA.rml | 0 .../RayCore/tests}/input/Ellipsoid_MB.csv | 404 +++++++++--------- .../RayCore/tests}/input/Ellipsoid_MB.rml | 0 .../RayCore/tests}/input/Ellipsoid_PM.csv | 404 +++++++++--------- .../RayCore/tests}/input/Ellipsoid_PM.rml | 0 .../RayCore/tests}/input/MatrixSource.csv | 204 ++++----- .../RayCore/tests}/input/MatrixSource.rml | 0 .../tests}/input/MatrixSourceMoved.rml | 0 .../tests}/input/MatrixSourceSpreaded.rml | 0 .../MatrixSource_distr_seeded.correct.csv | 0 .../input/MatrixSource_distr_seeded.rml | 0 .../input/MatrixSource_seeded.correct.csv | 0 .../tests}/input/MatrixSource_seeded.rml | 0 .../tests}/input/PlaneGratingDevAzMisVLS.csv | 138 +++--- .../tests}/input/PlaneGratingDevAzMisVLS.rml | 0 .../tests}/input/PlaneGratingDeviationAz.csv | 44 +- .../tests}/input/PlaneGratingDeviationAz.rml | 0 .../input/PlaneGratingDeviationAzMis.csv | 44 +- .../input/PlaneGratingDeviationAzMis.rml | 0 .../input/PlaneGratingDeviationDefault.csv | 44 +- .../input/PlaneGratingDeviationDefault.rml | 0 .../tests}/input/PlaneGratingIncAzMis.csv | 44 +- .../tests}/input/PlaneGratingIncAzMis.rml | 0 .../RayCore/tests}/input/PlaneMirror.csv | 204 ++++----- .../RayCore/tests}/input/PlaneMirror.rml | 0 .../RayCore/tests}/input/PlaneMirrorDef.csv | 44 +- .../RayCore/tests}/input/PlaneMirrorDef.rml | 0 .../RayCore/tests}/input/PlaneMirrorMis.csv | 44 +- .../RayCore/tests}/input/PlaneMirrorMis.rml | 0 .../input/PlaneMirror_refl_seeded.correct.csv | 0 .../tests}/input/PlaneMirror_refl_seeded.rml | 0 .../tests}/input/PointSourceHardEdge.rml | 0 .../tests}/input/PointSourceSoftEdge.rml | 0 .../input/PointSource_seeded.correct.csv | 0 .../tests}/input/PointSource_seeded.rml | 0 .../input/ReflectionZonePlateAzim200.csv | 32 +- .../input/ReflectionZonePlateAzim200.rml | 0 .../input/ReflectionZonePlateDefault.csv | 8 +- .../input/ReflectionZonePlateDefault.rml | 0 .../input/ReflectionZonePlateDefault200.csv | 28 +- .../input/ReflectionZonePlateDefault200.rml | 0 .../ReflectionZonePlateDefault200Toroid.csv | 224 +++++----- .../ReflectionZonePlateDefault200Toroid.rml | 0 .../tests}/input/ReflectionZonePlateMis.csv | 32 +- .../tests}/input/ReflectionZonePlateMis.rml | 0 .../tests}/input/SphereMirrorDefault.csv | 44 +- .../tests}/input/SphereMirrorDefault.rml | 0 .../tests}/input/allBeamlineObjects.rml | 0 .../input/ellipsoid_ip_200mirrormis.csv | 404 +++++++++--------- .../input/ellipsoid_ip_200mirrormis.rml | 0 .../tests}/input/globalCoordinates_20rays.csv | 44 +- .../tests}/input/globalCoordinates_20rays.rml | 0 .../RayCore/tests}/input/groupRZPTest.rml | 0 .../RayCore/tests}/input/groupTransform.rml | 0 .../RayCore/tests}/input/groupTransform2.rml | 0 .../input/groupTransformMisalignment.rml | 0 .../RayCore/tests}/input/loadDatFile.DAT | 26 +- .../RayCore/tests}/input/loadDatFile.rml | 0 .../RayCore/tests}/input/loadGroups.rml | 0 .../tests}/input/pm_ell_ip_200mirrormis.csv | 404 +++++++++--------- .../tests}/input/pm_ell_ip_200mirrormis.rml | 0 .../RayCore/tests}/input/slit.rml | 0 .../RayCore/tests}/input/toroid.csv | 404 +++++++++--------- .../RayCore/tests}/input/toroid.rml | 0 .../RayCore/tests}/input/toroid_swapped.csv | 340 +++++++-------- .../RayCore/tests}/input/toroid_swapped.rml | 0 {Tests => Intern/RayCore/tests}/main.cpp | 2 +- .../tests/output/BoringImagePlane.rayui.csv | 21 + .../tests/output/BoringImagePlane.rayx.csv | 21 + Intern/RayCore/tests/output/Cone.rayui.csv | 201 +++++++++ Intern/RayCore/tests/output/Cone.rayx.csv | 201 +++++++++ .../tests/output/CylinderDefault.rayui.csv | 201 +++++++++ .../tests/output/CylinderDefault.rayx.csv | 201 +++++++++ .../RayCore/tests/output/Ellipsoid.rayx.csv | 238 +++++++++++ .../tests/output/Ellipsoid_DGIA.rayui.csv | 201 +++++++++ .../tests/output/Ellipsoid_DGIA.rayx.csv | 201 +++++++++ .../tests/output/Ellipsoid_MB.rayui.csv | 201 +++++++++ .../tests/output/Ellipsoid_MB.rayx.csv | 201 +++++++++ .../tests/output/Ellipsoid_PM.rayui.csv | 201 +++++++++ .../tests/output/Ellipsoid_PM.rayx.csv | 201 +++++++++ .../output/MatrixSource_distr_seeded.rayx.csv | 401 +++++++++++++++++ .../tests/output/MatrixSource_seeded.rayx.csv | 401 +++++++++++++++++ .../output/PlaneGratingDevAzMisVLS.rayui.csv | 68 +++ .../output/PlaneGratingDevAzMisVLS.rayx.csv | 68 +++ .../output/PlaneGratingDeviationAz.rayui.csv | 21 + .../output/PlaneGratingDeviationAz.rayx.csv | 21 + .../PlaneGratingDeviationAzMis.rayui.csv | 21 + .../PlaneGratingDeviationAzMis.rayx.csv | 21 + .../PlaneGratingDeviationDefault.rayui.csv | 21 + .../PlaneGratingDeviationDefault.rayx.csv | 21 + .../output/PlaneGratingIncAzMis.rayui.csv | 21 + .../output/PlaneGratingIncAzMis.rayx.csv | 21 + .../tests/output/PlaneMirror.rayui.csv | 101 +++++ .../RayCore/tests/output/PlaneMirror.rayx.csv | 101 +++++ .../tests/output/PlaneMirrorDef.rayui.csv | 21 + .../tests/output/PlaneMirrorDef.rayx.csv | 21 + .../tests/output/PlaneMirrorMis.rayui.csv | 21 + .../tests/output/PlaneMirrorMis.rayx.csv | 21 + .../output/PlaneMirror_refl_seeded.rayx.csv | 307 +++++++++++++ .../tests/output/PointSource_seeded.rayx.csv | 401 +++++++++++++++++ .../ReflectionZonePlateAzim200.rayui.csv | 15 + .../ReflectionZonePlateAzim200.rayx.csv | 15 + .../ReflectionZonePlateDefault.rayui.csv | 3 + .../ReflectionZonePlateDefault.rayx.csv | 3 + .../ReflectionZonePlateDefault200.rayui.csv | 13 + .../ReflectionZonePlateDefault200.rayx.csv | 13 + ...lectionZonePlateDefault200Toroid.rayui.csv | 111 +++++ ...flectionZonePlateDefault200Toroid.rayx.csv | 111 +++++ .../output/ReflectionZonePlateMis.rayui.csv | 15 + .../output/ReflectionZonePlateMis.rayx.csv | 15 + .../output/SphereMirrorDefault.rayui.csv | 21 + .../tests/output/SphereMirrorDefault.rayx.csv | 21 + .../ellipsoid_ip_200mirrormis.rayui.csv | 201 +++++++++ .../output/ellipsoid_ip_200mirrormis.rayx.csv | 201 +++++++++ .../output/globalCoordinates_20rays.rayui.csv | 21 + .../output/globalCoordinates_20rays.rayx.csv | 21 + .../output/pm_ell_ip_200mirrormis.rayui.csv | 201 +++++++++ .../output/pm_ell_ip_200mirrormis.rayx.csv | 201 +++++++++ Intern/RayCore/tests/output/toroid.rayui.csv | 201 +++++++++ Intern/RayCore/tests/output/toroid.rayx.csv | 201 +++++++++ .../tests/output/toroid_swapped.rayui.csv | 169 ++++++++ .../tests/output/toroid_swapped.rayx.csv | 169 ++++++++ .../RayCore/tests}/setupTests.cpp | 14 +- {Tests => Intern/RayCore/tests}/setupTests.h | 0 .../RayCore/tests}/testIntegration.cpp | 0 {Tests => Intern/RayCore/tests}/testRml.cpp | 0 .../RayCore/tests}/testSeeded.cpp | 0 .../RayCore/tests}/testShader.cpp | 0 .../RayCore/tests}/testSources.cpp | 0 {Tests => Intern/RayCore/tests}/testsPCH.h | 0 148 files changed, 8790 insertions(+), 2542 deletions(-) rename {Tests => Intern/RayCore/tests}/Benchmarks/AutomaticBenchmarks/GPUvsCPU.py (100%) rename {Tests => Intern/RayCore/tests}/Benchmarks/AutomaticBenchmarks/benchmark_diagram.py (100%) rename {Tests => Intern/RayCore/tests}/Benchmarks/AutomaticBenchmarks/benchrayx.sh (100%) mode change 100755 => 100644 rename {Tests => Intern/RayCore/tests}/Benchmarks/ManualTests/README.md (100%) rename {Tests => Intern/RayCore/tests}/Benchmarks/ManualTests/RML_Test_Bundle.zip (100%) rename {Tests => Intern/RayCore/tests}/Benchmarks/ManualTests/TestResult_Report.ods (100%) rename {Tests => Intern/RayCore/tests}/CMakeLists.txt (63%) rename {Tests => Intern/RayCore/tests}/input/BoringImagePlane.csv (99%) rename {Tests => Intern/RayCore/tests}/input/BoringImagePlane.rml (100%) rename {Tests => Intern/RayCore/tests}/input/Cone.csv (99%) rename {Tests => Intern/RayCore/tests}/input/Cone.rml (100%) rename {Tests => Intern/RayCore/tests}/input/CylinderDefault.csv (99%) rename {Tests => Intern/RayCore/tests}/input/CylinderDefault.rml (100%) rename {Tests => Intern/RayCore/tests}/input/Ellipsoid.rml (100%) rename {Tests => Intern/RayCore/tests}/input/Ellipsoid_DGIA.csv (99%) rename {Tests => Intern/RayCore/tests}/input/Ellipsoid_DGIA.rml (100%) rename {Tests => Intern/RayCore/tests}/input/Ellipsoid_MB.csv (98%) rename {Tests => Intern/RayCore/tests}/input/Ellipsoid_MB.rml (100%) rename {Tests => Intern/RayCore/tests}/input/Ellipsoid_PM.csv (99%) rename {Tests => Intern/RayCore/tests}/input/Ellipsoid_PM.rml (100%) rename {Tests => Intern/RayCore/tests}/input/MatrixSource.csv (99%) rename {Tests => Intern/RayCore/tests}/input/MatrixSource.rml (100%) rename {Tests => Intern/RayCore/tests}/input/MatrixSourceMoved.rml (100%) rename {Tests => Intern/RayCore/tests}/input/MatrixSourceSpreaded.rml (100%) rename {Tests => Intern/RayCore/tests}/input/MatrixSource_distr_seeded.correct.csv (100%) rename {Tests => Intern/RayCore/tests}/input/MatrixSource_distr_seeded.rml (100%) rename {Tests => Intern/RayCore/tests}/input/MatrixSource_seeded.correct.csv (100%) rename {Tests => Intern/RayCore/tests}/input/MatrixSource_seeded.rml (100%) rename {Tests => Intern/RayCore/tests}/input/PlaneGratingDevAzMisVLS.csv (99%) rename {Tests => Intern/RayCore/tests}/input/PlaneGratingDevAzMisVLS.rml (100%) rename {Tests => Intern/RayCore/tests}/input/PlaneGratingDeviationAz.csv (99%) rename {Tests => Intern/RayCore/tests}/input/PlaneGratingDeviationAz.rml (100%) rename {Tests => Intern/RayCore/tests}/input/PlaneGratingDeviationAzMis.csv (99%) rename {Tests => Intern/RayCore/tests}/input/PlaneGratingDeviationAzMis.rml (100%) rename {Tests => Intern/RayCore/tests}/input/PlaneGratingDeviationDefault.csv (99%) rename {Tests => Intern/RayCore/tests}/input/PlaneGratingDeviationDefault.rml (100%) rename {Tests => Intern/RayCore/tests}/input/PlaneGratingIncAzMis.csv (99%) rename {Tests => Intern/RayCore/tests}/input/PlaneGratingIncAzMis.rml (100%) rename {Tests => Intern/RayCore/tests}/input/PlaneMirror.csv (99%) rename {Tests => Intern/RayCore/tests}/input/PlaneMirror.rml (100%) rename {Tests => Intern/RayCore/tests}/input/PlaneMirrorDef.csv (99%) rename {Tests => Intern/RayCore/tests}/input/PlaneMirrorDef.rml (100%) rename {Tests => Intern/RayCore/tests}/input/PlaneMirrorMis.csv (99%) rename {Tests => Intern/RayCore/tests}/input/PlaneMirrorMis.rml (100%) rename {Tests => Intern/RayCore/tests}/input/PlaneMirror_refl_seeded.correct.csv (100%) rename {Tests => Intern/RayCore/tests}/input/PlaneMirror_refl_seeded.rml (100%) rename {Tests => Intern/RayCore/tests}/input/PointSourceHardEdge.rml (100%) rename {Tests => Intern/RayCore/tests}/input/PointSourceSoftEdge.rml (100%) rename {Tests => Intern/RayCore/tests}/input/PointSource_seeded.correct.csv (100%) rename {Tests => Intern/RayCore/tests}/input/PointSource_seeded.rml (100%) rename {Tests => Intern/RayCore/tests}/input/ReflectionZonePlateAzim200.csv (99%) rename {Tests => Intern/RayCore/tests}/input/ReflectionZonePlateAzim200.rml (100%) rename {Tests => Intern/RayCore/tests}/input/ReflectionZonePlateDefault.csv (99%) rename {Tests => Intern/RayCore/tests}/input/ReflectionZonePlateDefault.rml (100%) rename {Tests => Intern/RayCore/tests}/input/ReflectionZonePlateDefault200.csv (99%) rename {Tests => Intern/RayCore/tests}/input/ReflectionZonePlateDefault200.rml (100%) rename {Tests => Intern/RayCore/tests}/input/ReflectionZonePlateDefault200Toroid.csv (99%) rename {Tests => Intern/RayCore/tests}/input/ReflectionZonePlateDefault200Toroid.rml (100%) rename {Tests => Intern/RayCore/tests}/input/ReflectionZonePlateMis.csv (99%) rename {Tests => Intern/RayCore/tests}/input/ReflectionZonePlateMis.rml (100%) rename {Tests => Intern/RayCore/tests}/input/SphereMirrorDefault.csv (99%) rename {Tests => Intern/RayCore/tests}/input/SphereMirrorDefault.rml (100%) rename {Tests => Intern/RayCore/tests}/input/allBeamlineObjects.rml (100%) rename {Tests => Intern/RayCore/tests}/input/ellipsoid_ip_200mirrormis.csv (99%) rename {Tests => Intern/RayCore/tests}/input/ellipsoid_ip_200mirrormis.rml (100%) rename {Tests => Intern/RayCore/tests}/input/globalCoordinates_20rays.csv (99%) rename {Tests => Intern/RayCore/tests}/input/globalCoordinates_20rays.rml (100%) rename {Tests => Intern/RayCore/tests}/input/groupRZPTest.rml (100%) rename {Tests => Intern/RayCore/tests}/input/groupTransform.rml (100%) rename {Tests => Intern/RayCore/tests}/input/groupTransform2.rml (100%) rename {Tests => Intern/RayCore/tests}/input/groupTransformMisalignment.rml (100%) rename {Tests => Intern/RayCore/tests}/input/loadDatFile.DAT (85%) rename {Tests => Intern/RayCore/tests}/input/loadDatFile.rml (100%) rename {Tests => Intern/RayCore/tests}/input/loadGroups.rml (100%) rename {Tests => Intern/RayCore/tests}/input/pm_ell_ip_200mirrormis.csv (99%) rename {Tests => Intern/RayCore/tests}/input/pm_ell_ip_200mirrormis.rml (100%) rename {Tests => Intern/RayCore/tests}/input/slit.rml (100%) rename {Tests => Intern/RayCore/tests}/input/toroid.csv (99%) rename {Tests => Intern/RayCore/tests}/input/toroid.rml (100%) rename {Tests => Intern/RayCore/tests}/input/toroid_swapped.csv (99%) rename {Tests => Intern/RayCore/tests}/input/toroid_swapped.rml (100%) rename {Tests => Intern/RayCore/tests}/main.cpp (95%) create mode 100644 Intern/RayCore/tests/output/BoringImagePlane.rayui.csv create mode 100644 Intern/RayCore/tests/output/BoringImagePlane.rayx.csv create mode 100644 Intern/RayCore/tests/output/Cone.rayui.csv create mode 100644 Intern/RayCore/tests/output/Cone.rayx.csv create mode 100644 Intern/RayCore/tests/output/CylinderDefault.rayui.csv create mode 100644 Intern/RayCore/tests/output/CylinderDefault.rayx.csv create mode 100644 Intern/RayCore/tests/output/Ellipsoid.rayx.csv create mode 100644 Intern/RayCore/tests/output/Ellipsoid_DGIA.rayui.csv create mode 100644 Intern/RayCore/tests/output/Ellipsoid_DGIA.rayx.csv create mode 100644 Intern/RayCore/tests/output/Ellipsoid_MB.rayui.csv create mode 100644 Intern/RayCore/tests/output/Ellipsoid_MB.rayx.csv create mode 100644 Intern/RayCore/tests/output/Ellipsoid_PM.rayui.csv create mode 100644 Intern/RayCore/tests/output/Ellipsoid_PM.rayx.csv create mode 100644 Intern/RayCore/tests/output/MatrixSource_distr_seeded.rayx.csv create mode 100644 Intern/RayCore/tests/output/MatrixSource_seeded.rayx.csv create mode 100644 Intern/RayCore/tests/output/PlaneGratingDevAzMisVLS.rayui.csv create mode 100644 Intern/RayCore/tests/output/PlaneGratingDevAzMisVLS.rayx.csv create mode 100644 Intern/RayCore/tests/output/PlaneGratingDeviationAz.rayui.csv create mode 100644 Intern/RayCore/tests/output/PlaneGratingDeviationAz.rayx.csv create mode 100644 Intern/RayCore/tests/output/PlaneGratingDeviationAzMis.rayui.csv create mode 100644 Intern/RayCore/tests/output/PlaneGratingDeviationAzMis.rayx.csv create mode 100644 Intern/RayCore/tests/output/PlaneGratingDeviationDefault.rayui.csv create mode 100644 Intern/RayCore/tests/output/PlaneGratingDeviationDefault.rayx.csv create mode 100644 Intern/RayCore/tests/output/PlaneGratingIncAzMis.rayui.csv create mode 100644 Intern/RayCore/tests/output/PlaneGratingIncAzMis.rayx.csv create mode 100644 Intern/RayCore/tests/output/PlaneMirror.rayui.csv create mode 100644 Intern/RayCore/tests/output/PlaneMirror.rayx.csv create mode 100644 Intern/RayCore/tests/output/PlaneMirrorDef.rayui.csv create mode 100644 Intern/RayCore/tests/output/PlaneMirrorDef.rayx.csv create mode 100644 Intern/RayCore/tests/output/PlaneMirrorMis.rayui.csv create mode 100644 Intern/RayCore/tests/output/PlaneMirrorMis.rayx.csv create mode 100644 Intern/RayCore/tests/output/PlaneMirror_refl_seeded.rayx.csv create mode 100644 Intern/RayCore/tests/output/PointSource_seeded.rayx.csv create mode 100644 Intern/RayCore/tests/output/ReflectionZonePlateAzim200.rayui.csv create mode 100644 Intern/RayCore/tests/output/ReflectionZonePlateAzim200.rayx.csv create mode 100644 Intern/RayCore/tests/output/ReflectionZonePlateDefault.rayui.csv create mode 100644 Intern/RayCore/tests/output/ReflectionZonePlateDefault.rayx.csv create mode 100644 Intern/RayCore/tests/output/ReflectionZonePlateDefault200.rayui.csv create mode 100644 Intern/RayCore/tests/output/ReflectionZonePlateDefault200.rayx.csv create mode 100644 Intern/RayCore/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv create mode 100644 Intern/RayCore/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv create mode 100644 Intern/RayCore/tests/output/ReflectionZonePlateMis.rayui.csv create mode 100644 Intern/RayCore/tests/output/ReflectionZonePlateMis.rayx.csv create mode 100644 Intern/RayCore/tests/output/SphereMirrorDefault.rayui.csv create mode 100644 Intern/RayCore/tests/output/SphereMirrorDefault.rayx.csv create mode 100644 Intern/RayCore/tests/output/ellipsoid_ip_200mirrormis.rayui.csv create mode 100644 Intern/RayCore/tests/output/ellipsoid_ip_200mirrormis.rayx.csv create mode 100644 Intern/RayCore/tests/output/globalCoordinates_20rays.rayui.csv create mode 100644 Intern/RayCore/tests/output/globalCoordinates_20rays.rayx.csv create mode 100644 Intern/RayCore/tests/output/pm_ell_ip_200mirrormis.rayui.csv create mode 100644 Intern/RayCore/tests/output/pm_ell_ip_200mirrormis.rayx.csv create mode 100644 Intern/RayCore/tests/output/toroid.rayui.csv create mode 100644 Intern/RayCore/tests/output/toroid.rayx.csv create mode 100644 Intern/RayCore/tests/output/toroid_swapped.rayui.csv create mode 100644 Intern/RayCore/tests/output/toroid_swapped.rayx.csv rename {Tests => Intern/RayCore/tests}/setupTests.cpp (90%) rename {Tests => Intern/RayCore/tests}/setupTests.h (100%) rename {Tests => Intern/RayCore/tests}/testIntegration.cpp (100%) rename {Tests => Intern/RayCore/tests}/testRml.cpp (100%) rename {Tests => Intern/RayCore/tests}/testSeeded.cpp (100%) rename {Tests => Intern/RayCore/tests}/testShader.cpp (100%) rename {Tests => Intern/RayCore/tests}/testSources.cpp (100%) rename {Tests => Intern/RayCore/tests}/testsPCH.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6ccc19dba..d5f107858 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,6 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) add_subdirectory(Intern) add_subdirectory(Extern) -add_subdirectory(Tests) option(WERROR "add -Werror option" "NO") # inactive per default option(VULKAN "include the VulkanTracer" "YES") # activated per default diff --git a/Extern/CMakeLists.txt b/Extern/CMakeLists.txt index 48b41cbcd..9248a03a7 100644 --- a/Extern/CMakeLists.txt +++ b/Extern/CMakeLists.txt @@ -4,8 +4,7 @@ set(gtest_force_shared_crt ON CACHE BOOL "Always use msvcrt.dll" FORCE) add_subdirectory(googletest) -# CLI -# cli11 +# CLI11 set(CLI11_SANITIZERS OFF) set(CLI11_BUILD_DOCS OFF) set(CLI11_BUILD_TESTS OFF) diff --git a/Intern/RayCore/CMakeLists.txt b/Intern/RayCore/CMakeLists.txt index 601f5dbec..119c17418 100644 --- a/Intern/RayCore/CMakeLists.txt +++ b/Intern/RayCore/CMakeLists.txt @@ -1,69 +1,18 @@ cmake_minimum_required(VERSION 3.2 FATAL_ERROR) +# ---- Add tests ---- +add_subdirectory(Tests) +# ------------------- + project(RayCore) -SET(SOURCE - src/CanonicalizePath.cpp - src/Random.cpp - src/utils.cpp - src/Data/Importer.cpp - src/Data/xml.cpp - src/Data/DatFile.cpp - src/Debug/Debug.cpp - src/Debug/Instrumentor.cpp - src/Beamline/Beamline.cpp - src/Beamline/OpticalElement.cpp - src/Beamline/LightSource.cpp - src/Beamline/EnergyDistribution.cpp - src/Beamline/Objects/ImagePlane.cpp - src/Beamline/Objects/MatrixSource.cpp - src/Beamline/Objects/PointSource.cpp - src/Beamline/Objects/Ellipsoid.cpp - src/Beamline/Objects/ReflectionZonePlate.cpp - src/Beamline/Objects/Slit.cpp - src/Beamline/Objects/SphereGrating.cpp - src/Beamline/Objects/PlaneGrating.cpp - src/Beamline/Objects/PlaneMirror.cpp - src/Beamline/Objects/PointSource.cpp - src/Beamline/Objects/SphereMirror.cpp - src/Beamline/Objects/ToroidMirror.cpp - src/Beamline/Objects/Cylinder.cpp - src/Beamline/Objects/Cone.cpp - src/Material/Material.cpp - src/Material/NffTable.cpp - src/Material/PalikTable.cpp - src/Tracer/Tracer.cpp - src/Tracer/VulkanTracer.cpp - src/Tracer/CpuTracer.cpp - src/VulkanEngine/Cleanup.cpp - src/VulkanEngine/Buffer/DeclareBuffer.cpp - src/VulkanEngine/Buffer/CreateBuffer.cpp - src/VulkanEngine/Buffer/IO/GpuMemcpy.cpp - src/VulkanEngine/Buffer/IO/ReadBufferRaw.cpp - src/VulkanEngine/Buffer/IO/WriteBufferRaw.cpp - src/VulkanEngine/Destruct.cpp - src/VulkanEngine/Init/CommandPool.cpp - src/VulkanEngine/Init/DescriptorSetLayout.cpp - src/VulkanEngine/Init/Instance.cpp - src/VulkanEngine/Init/StagingBuffer.cpp - src/VulkanEngine/Init/Init.cpp - src/VulkanEngine/Init/PickDevice.cpp - src/VulkanEngine/Init/CommandBuffer.cpp - src/VulkanEngine/Init/Cache.cpp - src/VulkanEngine/Init/Fence.cpp - src/VulkanEngine/Init/ShaderModule.cpp - src/VulkanEngine/Run/RecordBuffer.cpp - src/VulkanEngine/Run/ComputePipeline.cpp - src/VulkanEngine/Run/DescriptorSet.cpp - src/VulkanEngine/Run/RunCommandBuffer.cpp - src/VulkanEngine/Run/Run.cpp - src/Writer/CSVWriter.cpp - src/Writer/H5Writer.cpp -) + +# Source file globbing +file(GLOB_RECURSE SOURCE ${RayCore_SOURCE_DIR}/src/*.cpp) add_library(${PROJECT_NAME} SHARED ${SOURCE}) -target_precompile_headers(${PROJECT_NAME} PRIVATE raycorePCH.h) +target_precompile_headers(${PROJECT_NAME} PUBLIC raycorePCH.h) set(CMAKE_PCH_INSTANTIATE_TEMPLATES ON) # Set Compiler @@ -106,8 +55,8 @@ endif() # Add Extern deps TODO(Jannis): the src include shouldn't be a SYSTEM include target_include_directories(${PROJECT_NAME} - SYSTEM PUBLIC ${RayCore_SOURCE_DIR}/src - PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/glm/glm/ + PUBLIC ${RayCore_SOURCE_DIR}/src + SYSTEM PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/glm/glm/ PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/rapidxml-1.13/ PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/HighFive/include/ PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/VMA/include/ @@ -122,27 +71,13 @@ if(NOT VULKAN STREQUAL "NO") set(COMPILED_SHADER ${CMAKE_BINARY_DIR}/bin/comp.spv) set(COMPILED_SHADER_FAKE ${CMAKE_BINARY_DIR}/bin/___comp.spv) # this exists so file cannot be found -> always execute command - if(WIN32) - add_custom_command( - OUTPUT - ${COMPILED_SHADER} - ${COMPILED_SHADER_FAKE} - COMMAND "$ENV{VULKAN_SDK}/Bin/glslc.exe" - ARGS ${RayCore_SOURCE_DIR}/src/Tracer/shader/main-glsl.comp -o ${COMPILED_SHADER} -fshader-stage=compute - ) - elseif(UNIX) - add_custom_command( - OUTPUT - ${COMPILED_SHADER} - ${COMPILED_SHADER_FAKE} - COMMAND "glslc" - ARGS ${RayCore_SOURCE_DIR}/src/Tracer/shader/main-glsl.comp -o ${COMPILED_SHADER} -fshader-stage=compute - ) - endif() + add_custom_command( + OUTPUT + ${COMPILED_SHADER} + ${COMPILED_SHADER_FAKE} + COMMAND "glslc" + ARGS ${RayCore_SOURCE_DIR}/src/Tracer/shader/main-glsl.comp -o ${COMPILED_SHADER} -fshader-stage=compute + ) add_custom_target(COMPILE_SHADER ALL DEPENDS ${COMPILED_SHADER}) endif() - -# Print include directories -get_target_property(INCLUDE_DIRECTORIES ${PROJECT_NAME} INCLUDE_DIRECTORIES) -message(STATUS "Include directories for ${PROJECT_NAME}: ${INCLUDE_DIRECTORIES}") diff --git a/Tests/Benchmarks/AutomaticBenchmarks/GPUvsCPU.py b/Intern/RayCore/tests/Benchmarks/AutomaticBenchmarks/GPUvsCPU.py similarity index 100% rename from Tests/Benchmarks/AutomaticBenchmarks/GPUvsCPU.py rename to Intern/RayCore/tests/Benchmarks/AutomaticBenchmarks/GPUvsCPU.py diff --git a/Tests/Benchmarks/AutomaticBenchmarks/benchmark_diagram.py b/Intern/RayCore/tests/Benchmarks/AutomaticBenchmarks/benchmark_diagram.py similarity index 100% rename from Tests/Benchmarks/AutomaticBenchmarks/benchmark_diagram.py rename to Intern/RayCore/tests/Benchmarks/AutomaticBenchmarks/benchmark_diagram.py diff --git a/Tests/Benchmarks/AutomaticBenchmarks/benchrayx.sh b/Intern/RayCore/tests/Benchmarks/AutomaticBenchmarks/benchrayx.sh old mode 100755 new mode 100644 similarity index 100% rename from Tests/Benchmarks/AutomaticBenchmarks/benchrayx.sh rename to Intern/RayCore/tests/Benchmarks/AutomaticBenchmarks/benchrayx.sh diff --git a/Tests/Benchmarks/ManualTests/README.md b/Intern/RayCore/tests/Benchmarks/ManualTests/README.md similarity index 100% rename from Tests/Benchmarks/ManualTests/README.md rename to Intern/RayCore/tests/Benchmarks/ManualTests/README.md diff --git a/Tests/Benchmarks/ManualTests/RML_Test_Bundle.zip b/Intern/RayCore/tests/Benchmarks/ManualTests/RML_Test_Bundle.zip similarity index 100% rename from Tests/Benchmarks/ManualTests/RML_Test_Bundle.zip rename to Intern/RayCore/tests/Benchmarks/ManualTests/RML_Test_Bundle.zip diff --git a/Tests/Benchmarks/ManualTests/TestResult_Report.ods b/Intern/RayCore/tests/Benchmarks/ManualTests/TestResult_Report.ods similarity index 100% rename from Tests/Benchmarks/ManualTests/TestResult_Report.ods rename to Intern/RayCore/tests/Benchmarks/ManualTests/TestResult_Report.ods diff --git a/Tests/CMakeLists.txt b/Intern/RayCore/tests/CMakeLists.txt similarity index 63% rename from Tests/CMakeLists.txt rename to Intern/RayCore/tests/CMakeLists.txt index 917fc6931..12d3730d8 100644 --- a/Tests/CMakeLists.txt +++ b/Intern/RayCore/tests/CMakeLists.txt @@ -1,23 +1,9 @@ cmake_minimum_required(VERSION 3.2 FATAL_ERROR) project(RayTests) -# if (NOT "$ENV{CI}" STREQUAL "YES") # lhdf5 doesn't exist in CI -# # for ubuntu users: -# include_directories("/usr/include/hdf5/serial") -# link_directories("/usr/lib/x86_64-linux-gnu/hdf5/serial") - -# link_libraries("hdf5") -# endif() include(CTest) enable_testing() -set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/bin/release) -set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/lib/release) -set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/lib/release) -set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/bin/debug) -set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/lib/debug) -set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/lib/debug) - set(BINARY ${CMAKE_PROJECT_NAME}_tst) file(GLOB_RECURSE TEST_SOURCES LIST_DIRECTORIES false *.h *.cpp) @@ -28,9 +14,6 @@ add_test(NAME ${BINARY} COMMAND ${BINARY}) target_precompile_headers(${BINARY} PRIVATE testsPCH.h) set(CMAKE_PCH_INSTANTIATE_TEMPLATES ON) -# if (WIN32) -# target_compile_definitions(${BINARY} PUBLIC RAYX_PLATFORM_MSVC) -# endif () target_link_libraries(${BINARY} PUBLIC RayCore gtest gmock) #Clean Coverage Files diff --git a/Tests/input/BoringImagePlane.csv b/Intern/RayCore/tests/input/BoringImagePlane.csv similarity index 99% rename from Tests/input/BoringImagePlane.csv rename to Intern/RayCore/tests/input/BoringImagePlane.csv index f862a339b..0862a75e2 100644 --- a/Tests/input/BoringImagePlane.csv +++ b/Intern/RayCore/tests/input/BoringImagePlane.csv @@ -1,22 +1,22 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 0 -0.532500041666671 0.480000104166682 0 -0.000499999916666671 0.000499999979166667 0.999999750000021 100 0.000250000041660314 1 1 0 0 -1 2 0 -0.17750000154321 0.480000048611116 0 -0.000166666645061729 0.000499999979166667 0.999999861111116 100 0.000138888903848056 1 1 0 0 -2 2 0 0.17750000154321 0.480000048611116 0 0.000166666645061729 0.000499999979166667 0.999999861111116 100 0.000138888903848056 1 1 0 0 -3 2 0 0.532500041666671 0.480000104166682 0 0.000499999916666671 0.000499999979166667 0.999999750000021 100 0.000250000041660314 1 1 0 0 -4 2 0 -0.532500041666671 0.160000022376546 0 -0.000499999972222223 0.000166666665895062 0.999999861111116 100 0.000138888903848056 1 1 0 0 -5 2 0 -0.17750000154321 0.160000003858025 0 -0.000166666663580247 0.000166666665895062 0.999999972222223 100 2.77777783139754e-05 1 1 0 0 -6 2 0 0.17750000154321 0.160000003858025 0 0.000166666663580247 0.000166666665895062 0.999999972222223 100 2.77777783139754e-05 1 1 0 0 -7 2 0 0.532500041666671 0.160000022376546 0 0.000499999972222223 0.000166666665895062 0.999999861111116 100 0.000138888903848056 1 1 0 0 -8 2 0 -0.532500041666671 -0.160000022376546 0 -0.000499999972222223 -0.000166666665895062 0.999999861111116 100 0.000138888903848056 1 1 0 0 -9 2 0 -0.17750000154321 -0.160000003858025 0 -0.000166666663580247 -0.000166666665895062 0.999999972222223 100 2.77777783139754e-05 1 1 0 0 -10 2 0 0.17750000154321 -0.160000003858025 0 0.000166666663580247 -0.000166666665895062 0.999999972222223 100 2.77777783139754e-05 1 1 0 0 -11 2 0 0.532500041666671 -0.160000022376546 0 0.000499999972222223 -0.000166666665895062 0.999999861111116 100 0.000138888903848056 1 1 0 0 -12 2 0 -0.532500041666671 -0.480000104166682 0 -0.000499999916666671 -0.000499999979166667 0.999999750000021 100 0.000250000041660314 1 1 0 0 -13 2 0 -0.17750000154321 -0.480000048611116 0 -0.000166666645061729 -0.000499999979166667 0.999999861111116 100 0.000138888903848056 1 1 0 0 -14 2 0 0.17750000154321 -0.480000048611116 0 0.000166666645061729 -0.000499999979166667 0.999999861111116 100 0.000138888903848056 1 1 0 0 -15 2 0 0.532500041666671 -0.480000104166682 0 0.000499999916666671 -0.000499999979166667 0.999999750000021 100 0.000250000041660314 1 1 0 0 -16 2 0 -0.532500041666671 0.480000104166682 0 -0.000499999916666671 0.000499999979166667 0.999999750000021 100 0.000250000041660314 1 1 0 0 -17 2 0 -0.17750000154321 0.480000048611116 0 -0.000166666645061729 0.000499999979166667 0.999999861111116 100 0.000138888903848056 1 1 0 0 -18 2 0 0.17750000154321 0.480000048611116 0 0.000166666645061729 0.000499999979166667 0.999999861111116 100 0.000138888903848056 1 1 0 0 -19 2 0 0.532500041666671 0.480000104166682 0 0.000499999916666671 0.000499999979166667 0.999999750000021 100 0.000250000041660314 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 0 -0.532500041666671 0.480000104166682 0 -0.000499999916666671 0.000499999979166667 0.999999750000021 100 0.000250000041660314 1 1 0 0 +1 2 0 -0.17750000154321 0.480000048611116 0 -0.000166666645061729 0.000499999979166667 0.999999861111116 100 0.000138888903848056 1 1 0 0 +2 2 0 0.17750000154321 0.480000048611116 0 0.000166666645061729 0.000499999979166667 0.999999861111116 100 0.000138888903848056 1 1 0 0 +3 2 0 0.532500041666671 0.480000104166682 0 0.000499999916666671 0.000499999979166667 0.999999750000021 100 0.000250000041660314 1 1 0 0 +4 2 0 -0.532500041666671 0.160000022376546 0 -0.000499999972222223 0.000166666665895062 0.999999861111116 100 0.000138888903848056 1 1 0 0 +5 2 0 -0.17750000154321 0.160000003858025 0 -0.000166666663580247 0.000166666665895062 0.999999972222223 100 2.77777783139754e-05 1 1 0 0 +6 2 0 0.17750000154321 0.160000003858025 0 0.000166666663580247 0.000166666665895062 0.999999972222223 100 2.77777783139754e-05 1 1 0 0 +7 2 0 0.532500041666671 0.160000022376546 0 0.000499999972222223 0.000166666665895062 0.999999861111116 100 0.000138888903848056 1 1 0 0 +8 2 0 -0.532500041666671 -0.160000022376546 0 -0.000499999972222223 -0.000166666665895062 0.999999861111116 100 0.000138888903848056 1 1 0 0 +9 2 0 -0.17750000154321 -0.160000003858025 0 -0.000166666663580247 -0.000166666665895062 0.999999972222223 100 2.77777783139754e-05 1 1 0 0 +10 2 0 0.17750000154321 -0.160000003858025 0 0.000166666663580247 -0.000166666665895062 0.999999972222223 100 2.77777783139754e-05 1 1 0 0 +11 2 0 0.532500041666671 -0.160000022376546 0 0.000499999972222223 -0.000166666665895062 0.999999861111116 100 0.000138888903848056 1 1 0 0 +12 2 0 -0.532500041666671 -0.480000104166682 0 -0.000499999916666671 -0.000499999979166667 0.999999750000021 100 0.000250000041660314 1 1 0 0 +13 2 0 -0.17750000154321 -0.480000048611116 0 -0.000166666645061729 -0.000499999979166667 0.999999861111116 100 0.000138888903848056 1 1 0 0 +14 2 0 0.17750000154321 -0.480000048611116 0 0.000166666645061729 -0.000499999979166667 0.999999861111116 100 0.000138888903848056 1 1 0 0 +15 2 0 0.532500041666671 -0.480000104166682 0 0.000499999916666671 -0.000499999979166667 0.999999750000021 100 0.000250000041660314 1 1 0 0 +16 2 0 -0.532500041666671 0.480000104166682 0 -0.000499999916666671 0.000499999979166667 0.999999750000021 100 0.000250000041660314 1 1 0 0 +17 2 0 -0.17750000154321 0.480000048611116 0 -0.000166666645061729 0.000499999979166667 0.999999861111116 100 0.000138888903848056 1 1 0 0 +18 2 0 0.17750000154321 0.480000048611116 0 0.000166666645061729 0.000499999979166667 0.999999861111116 100 0.000138888903848056 1 1 0 0 +19 2 0 0.532500041666671 0.480000104166682 0 0.000499999916666671 0.000499999979166667 0.999999750000021 100 0.000250000041660314 1 1 0 0 diff --git a/Tests/input/BoringImagePlane.rml b/Intern/RayCore/tests/input/BoringImagePlane.rml similarity index 100% rename from Tests/input/BoringImagePlane.rml rename to Intern/RayCore/tests/input/BoringImagePlane.rml diff --git a/Tests/input/Cone.csv b/Intern/RayCore/tests/input/Cone.csv similarity index 99% rename from Tests/input/Cone.csv rename to Intern/RayCore/tests/input/Cone.csv index aa82a71b2..7184989ca 100644 --- a/Tests/input/Cone.csv +++ b/Intern/RayCore/tests/input/Cone.csv @@ -1,202 +1,202 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -0.2713421433857 -5.39068331822541 0 0.00491325571278592 -0.000488025395497332 0.999987810800469 100 0.000656896961686471 1 1 0 0 -1 2 1 -0.229748531865936 -5.41604695624558 0 0.00415751684694949 -0.000491424757505854 0.99999123673929 100 0.000860264039033609 1 1 0 0 -2 2 1 -0.188079277554942 -5.43718607447625 0 0.00340170467656384 -0.000494258591049318 0.999994092039417 100 0.00103009481438221 1 1 0 0 -3 2 1 -0.146348111858507 -5.45409917174192 0 0.00264583252093794 -0.000496526333636754 0.999996376509371 100 0.00116619400432683 1 1 0 0 -4 2 1 -0.104568779273265 -5.46678504652504 0 0.00188991370465534 -0.000498227534928453 0.999998089995932 100 0.00126840527320837 1 1 0 0 -5 2 1 -0.0627550344848906 -5.47524279734918 0 0.00113396155640198 -0.000499361856967112 0.999999232384167 100 0.00133661131769713 1 1 0 0 -6 2 1 -0.0209206394608321 -5.47947182307198 0 0.00037798940779406 -0.00049992907435123 0.999999803597445 100 0.00137073390283149 1 1 0 0 -7 2 1 0.0209206394608321 -5.47947182307198 0 -0.00037798940779406 -0.00049992907435123 0.999999803597445 100 0.00137073390283149 1 1 0 0 -8 2 1 0.0627550344848906 -5.47524279734918 0 -0.00113396155640198 -0.000499361856967112 0.999999232384167 100 0.00133661131769713 1 1 0 0 -9 2 1 0.104568779273265 -5.46678504652504 0 -0.00188991370465535 -0.000498227534928453 0.999998089995932 100 0.00126840527320837 1 1 0 0 -10 2 1 0.146348111858507 -5.45409917174192 0 -0.00264583252093794 -0.000496526333636754 0.999996376509371 100 0.00116619400432683 1 1 0 0 -11 2 1 0.188079277554942 -5.43718607447625 0 -0.00340170467656384 -0.000494258591049318 0.999994092039417 100 0.00103009481438221 1 1 0 0 -12 2 1 0.229748531865936 -5.41604695624558 0 -0.00415751684694949 -0.000491424757505854 0.99999123673929 100 0.000860264039033609 1 1 0 0 -13 2 1 0.2713421433857 -5.39068331822541 0 -0.00491325571278592 -0.000488025395497332 0.999987810800469 100 0.000656896961686471 1 1 0 0 -14 2 1 -0.271317319935241 -4.54804448052803 0 0.00488906916922249 -0.000411180397420191 0.999987963894236 100 0.000276745604992357 1 1 0 0 -15 2 1 -0.229726046879385 -4.5732837071993 0 0.00413704909813639 -0.000414557616725986 0.999991356446015 100 0.000477172818364124 1 1 0 0 -16 2 1 -0.188059870828846 -4.59431910896893 0 0.00338495682823128 -0.000417372979115094 0.99999418391662 100 0.000644548461536942 1 1 0 0 -17 2 1 -0.146332389105988 -4.6111492066488 0 0.00263280547799759 -0.000419625932396944 0.999996446118381 100 0.000778680109760899 1 1 0 0 -18 2 1 -0.104557211869182 -4.62377281632645 0 0.00188060817106636 -0.000421316034482061 0.999998142901129 100 0.000879413716347699 1 1 0 0 -19 2 1 -0.0627479592674298 -4.63218904973694 0 0.00112837803506677 -0.000422442953606245 0.999999274152217 100 0.000946633698163168 1 1 0 0 -20 2 1 -0.0209182585896711 -4.63639731454922 0 0.000376128200483867 -0.000423006468499881 0.999999839796539 100 0.000980262965981638 1 1 0 0 -21 2 1 0.0209182585896711 -4.63639731454922 0 -0.000376128200483867 -0.000423006468499881 0.999999839796539 100 0.000980262965981638 1 1 0 0 -22 2 1 0.0627479592674298 -4.63218904973694 0 -0.00112837803506677 -0.000422442953606245 0.999999274152217 100 0.000946633698163168 1 1 0 0 -23 2 1 0.104557211869182 -4.62377281632645 0 -0.00188060817106636 -0.000421316034482061 0.999998142901129 100 0.000879413716347699 1 1 0 0 -24 2 1 0.146332389105988 -4.6111492066488 0 -0.00263280547799759 -0.000419625932396944 0.999996446118381 100 0.000778680109760899 1 1 0 0 -25 2 1 0.188059870828846 -4.59431910896893 0 -0.00338495682823128 -0.000417372979115094 0.99999418391662 100 0.000644548461536942 1 1 0 0 -26 2 1 0.229726046879384 -4.5732837071993 0 -0.00413704909813639 -0.000414557616725986 0.999991356446015 100 0.000477172818364124 1 1 0 0 -27 2 1 0.271317319935241 -4.54804448052803 0 -0.00488906916922249 -0.000411180397420191 0.999987963894236 100 0.000276745604992357 1 1 0 0 -28 2 1 -0.271292475199896 -3.70540141806252 0 0.0048651188376733 -0.000334334447581547 0.999988109348892 100 -3.84181510071357e-05 1 1 0 0 -29 2 1 -0.229703565504773 -3.73051744766781 0 0.00411678126465353 -0.00033768979306889 0.999991469002422 100 0.000159097769596883 1 1 0 0 -30 2 1 -0.188040481811735 -3.75145014566203 0 0.00336837257673934 -0.000340486908814469 0.999994269051003 100 0.000324042191209628 1 1 0 0 -31 2 1 -0.146316689313014 -3.76819805441879 0 0.00261990569556063 -0.000342725252688164 0.999996509310681 100 0.000456225494758655 1 1 0 0 -32 2 1 -0.104545665788194 -3.78076000728679 0 0.0018713935477579 -0.000344404390658137 0.999998189634264 100 0.00055549587762016 1 1 0 0 -33 2 1 -0.0627408988138807 -3.78913512895777 0 0.00112284906386873 -0.000345523997009295 0.999999309911335 100 0.000621739438997793 1 1 0 0 -34 2 1 -0.0209158829682254 -3.79332283573895 0 0.000374285177214243 -0.000346083854507157 0.999999870068277 100 0.000654880212550779 1 1 0 0 -35 2 1 0.0209158829682254 -3.79332283573895 0 -0.000374285177214243 -0.000346083854507157 0.999999870068277 100 0.000654880212550779 1 1 0 0 -36 2 1 0.0627408988138807 -3.78913512895777 0 -0.00112284906386873 -0.000345523997009295 0.999999309911335 100 0.000621739438997793 1 1 0 0 -37 2 1 0.104545665788194 -3.78076000728679 0 -0.0018713935477579 -0.000344404390658137 0.999998189634264 100 0.00055549587762016 1 1 0 0 -38 2 1 0.146316689313014 -3.76819805441879 0 -0.00261990569556063 -0.000342725252688164 0.999996509310681 100 0.000456225494758655 1 1 0 0 -39 2 1 0.188040481811735 -3.75145014566203 0 -0.00336837257673934 -0.000340486908814469 0.999994269051003 100 0.000324042191209628 1 1 0 0 -40 2 1 0.229703565504773 -3.73051744766781 0 -0.00411678126465353 -0.00033768979306889 0.999991469002422 100 0.000159097769596883 1 1 0 0 -41 2 1 0.271292475199896 -3.70540141806252 0 -0.0048651188376733 -0.000334334447581547 0.999988109348892 100 -3.84181510071357e-05 1 1 0 0 -42 2 1 -0.271267609922306 -2.86275418317806 0 0.004841401274657 -0.000257487562970199 0.999988247197862 100 -0.000288592848619373 1 1 0 0 -43 2 1 -0.229681087951545 -2.88774821231943 0 0.00409671043172187 -0.000260821298848246 0.999991574432449 100 -9.39600632818838e-05 1 1 0 0 -44 2 1 -0.188021110388994 -2.90857920447119 0 0.00335194953654306 -0.000263600388552443 0.999994347458594 100 6.8576703938561e-05 1 1 0 0 -45 2 1 -0.146301012212332 -2.92524572315172 0 0.00260713131775151 -0.00026582429978006 0.999996566095971 100 0.000198830576778164 1 1 0 0 -46 2 1 -0.10453414074392 -2.93774661863871 0 0.00186226850886257 -0.000267492606370406 0.999998230200287 100 0.000296651960525196 1 1 0 0 -47 2 1 -0.0627338529142027 -2.9460810283275 0 0.00111737384719055 -0.000268604988516885 0.999999339663305 100 0.000361928603410888 1 1 0 0 -48 2 1 -0.0209135125201104 -2.95024837699877 0 0.000372460072763287 -0.000269161232926529 0.999999894412857 100 0.000394585642993661 1 1 0 0 -49 2 1 0.0209135125201104 -2.95024837699877 0 -0.000372460072763287 -0.000269161232926529 0.999999894412857 100 0.000394585642993661 1 1 0 0 -50 2 1 0.0627338529142027 -2.9460810283275 0 -0.00111737384719055 -0.000268604988516885 0.999999339663305 100 0.000361928603410888 1 1 0 0 -51 2 1 0.10453414074392 -2.93774661863871 0 -0.00186226850886257 -0.000267492606370406 0.999998230200287 100 0.000296651960525196 1 1 0 0 -52 2 1 0.146301012212332 -2.92524572315172 0 -0.00260713131775151 -0.00026582429978006 0.999996566095971 100 0.000198830576778164 1 1 0 0 -53 2 1 0.188021110388994 -2.90857920447119 0 -0.00335194953654306 -0.000263600388552443 0.999994347458594 100 6.8576703938561e-05 1 1 0 0 -54 2 1 0.229681087951545 -2.88774821231943 0 -0.00409671043172187 -0.000260821298848246 0.999991574432449 100 -9.39600632818838e-05 1 1 0 0 -55 2 1 0.271267609922306 -2.86275418317806 0 -0.004841401274657 -0.000257487562970199 0.999988247197862 100 -0.000288592848619373 1 1 0 0 -56 2 1 -0.271242724822434 -2.0201028270173 0 0.00481791310329167 -0.000180639760204049 0.999988377473762 100 -0.000473777052661717 1 1 0 0 -57 2 1 -0.229658614420043 -2.04497603495638 0 0.00407683374094661 -0.000183952146110666 0.999991672759457 100 -0.000281999649132558 1 1 0 0 -58 2 1 -0.188001756445462 -2.06570630473054 0 0.00333568536825114 -0.00018671342655488 0.999994419155037 100 -0.000121847314630941 1 1 0 0 -59 2 1 -0.14628535754056 -2.08229222059585 0 0.00259448052460507 -0.000188923078834197 0.999996616483715 100 6.49577270905866e-06 1 1 0 0 -60 2 1 -0.10452263645505 -2.09473264943303 0 0.00185323175417022 -0.000190580684477276 0.999998264604028 100 0.000102882174928709 1 1 0 0 -61 2 1 -0.0627268213623173 -2.10302674109605 0 0.00111195160481215 -0.00019168592944982 0.999999363409864 100 0.000167201261206174 1 1 0 0 -62 2 1 -0.0209111471704164 -2.10717392867701 0 0.000370652627041963 -0.000192238604309586 0.999999912830471 100 0.00019937925674185 1 1 0 0 -63 2 1 0.0209111471704164 -2.10717392867701 0 -0.000370652627041963 -0.000192238604309586 0.999999912830471 100 0.00019937925674185 1 1 0 0 -64 2 1 0.0627268213623173 -2.10302674109605 0 -0.00111195160481215 -0.00019168592944982 0.999999363409864 100 0.000167201261206174 1 1 0 0 -65 2 1 0.10452263645505 -2.09473264943303 0 -0.00185323175417022 -0.000190580684477276 0.999998264604028 100 0.000102882174928709 1 1 0 0 -66 2 1 0.14628535754056 -2.08229222059585 0 -0.00259448052460507 -0.000188923078834197 0.999996616483715 100 6.49577270905866e-06 1 1 0 0 -67 2 1 0.188001756445462 -2.06570630473054 0 -0.00333568536825114 -0.00018671342655488 0.999994419155037 100 -0.000121847314630941 1 1 0 0 -68 2 1 0.229658614420043 -2.04497603495638 0 -0.00407683374094661 -0.000183952146110666 0.999991672759457 100 -0.000281999649132558 1 1 0 0 -69 2 1 0.271242724822434 -2.0201028270173 0 -0.00481791310329167 -0.000180639760204049 0.999988377473762 100 -0.000473777052661717 1 1 0 0 -70 2 1 -0.271217820598296 -1.17744739954494 0 0.00479465101169264 -0.000103791055539426 0.999988500208424 100 -0.000593969349210965 1 1 0 0 -71 2 1 -0.229636145101847 -1.20220094853733 0 0.00405714838896051 -0.000107082346644138 0.999991764006244 100 -0.000405019975119103 1 1 0 0 -72 2 1 -0.1879824198655 -1.22283146521001 0 0.00331957777751519 -0.000109826030873866 0.999994484155599 100 -0.000247229182946285 1 1 0 0 -73 2 1 -0.14626972503812 -1.239337554158 0 0.00258195153120223 -0.000112021594906503 0.99999666048315 100 -0.00012077850908554 1 1 0 0 -74 2 1 -0.104511152645227 -1.25171809854674 0 0.00184428200851044 -0.000113668627783337 0.999998292850201 100 -2.58132693033986e-05 1 1 0 0 -75 2 1 -0.0627198039560148 -1.25997226045187 0 0.00110658157153999 -0.000114766821109696 0.999999381152709 100 3.7557490600193e-05 1 1 0 0 -76 2 1 -0.0209087868456717 -1.26409948111534 0 0.000368862584970539 -0.000115315969205443 0.999999925321307 100 6.92610553869599e-05 1 1 0 0 -77 2 1 0.0209087868456717 -1.26409948111534 0 -0.000368862584970539 -0.000115315969205443 0.999999925321307 100 6.92610553869599e-05 1 1 0 0 -78 2 1 0.0627198039560148 -1.25997226045187 0 -0.00110658157153999 -0.000114766821109696 0.999999381152709 100 3.7557490600193e-05 1 1 0 0 -79 2 1 0.104511152645227 -1.25171809854674 0 -0.00184428200851044 -0.000113668627783337 0.999998292850201 100 -2.58132693033986e-05 1 1 0 0 -80 2 1 0.14626972503812 -1.239337554158 0 -0.00258195153120223 -0.000112021594906503 0.99999666048315 100 -0.00012077850908554 1 1 0 0 -81 2 1 0.1879824198655 -1.22283146521001 0 -0.00331957777751519 -0.000109826030873866 0.999994484155599 100 -0.000247229182946285 1 1 0 0 -82 2 1 0.229636145101847 -1.20220094853733 0 -0.00405714838896051 -0.000107082346644138 0.999991764006244 100 -0.000405019975119103 1 1 0 0 -83 2 1 0.271217820598296 -1.17744739954494 0 -0.00479465101169264 -0.000103791055539426 0.999988500208424 100 -0.000593969349210965 1 1 0 0 -84 2 1 -0.27119289792668 -0.334787949580469 0 0.00477161175141654 -2.69414648814692e-05 0.999988615432921 100 -0.000649168361178454 1 1 0 0 -85 2 1 -0.229613680180105 -0.359422985201966 0 0.00403765162610632 -3.02119119839905e-05 0.999991848195067 100 -0.000463020051142848 1 1 0 0 -86 2 1 -0.187963100533074 -0.379954704129655 0 0.00330362451395099 -3.29382093924302e-05 0.99999454247518 100 -0.000307568239804823 1 1 0 0 -87 2 1 -0.146254114449173 -0.39638173091166 0 0.0025695425868305 -3.51198529504604e-05 0.999996698103294 100 -0.00018299186706372 1 1 0 0 -88 2 1 -0.104499689042939 -0.408702964687825 0 0.00183541802115268 -3.67564390406361e-05 0.999998314943406 100 -8.94341751518368e-05 1 1 0 0 -89 2 1 -0.0627128004968613 -0.416917579521602 0 0.00110126299684705 -3.78476647787673e-05 0.999999392893498 100 -2.70026455382322e-05 1 1 0 0 -90 2 1 -0.0209064314738099 -0.421025024650377 0 0.000367089696358566 -3.83933281612181e-05 0.999999931885551 100 4.23104233959748e-06 1 1 0 0 -91 2 1 0.0209064314738099 -0.421025024650377 0 -0.000367089696358566 -3.83933281612181e-05 0.999999931885551 100 4.23104233959748e-06 1 1 0 0 -92 2 1 0.0627128004968613 -0.416917579521602 0 -0.00110126299684705 -3.78476647787673e-05 0.999999392893498 100 -2.70026455382322e-05 1 1 0 0 -93 2 1 0.104499689042939 -0.408702964687825 0 -0.00183541802115268 -3.67564390406361e-05 0.999998314943406 100 -8.94341751518368e-05 1 1 0 0 -94 2 1 0.146254114449173 -0.39638173091166 0 -0.0025695425868305 -3.51198529504604e-05 0.999996698103294 100 -0.00018299186706372 1 1 0 0 -95 2 1 0.187963100533074 -0.379954704129655 0 -0.00330362451395099 -3.29382093924302e-05 0.99999454247518 100 -0.000307568239804823 1 1 0 0 -96 2 1 0.229613680180105 -0.359422985201966 0 -0.00403765162610632 -3.02119119839905e-05 0.999991848195067 100 -0.000463020051142848 1 1 0 0 -97 2 1 0.27119289792668 -0.334787949580469 0 -0.00477161175141654 -2.69414648814692e-05 0.999988615432921 100 -0.000649168361178454 1 1 0 0 -98 2 1 -0.271167957463852 0.507875475180024 0 0.00474879213594945 4.99089962065491e-05 0.999988723177587 100 -0.00063937272682324 1 1 0 0 -99 2 1 -0.229591219829842 0.483357823717973 0 0.00401834075515647 4.66591465795307e-05 0.99999192534765 100 -0.000455998899951737 1 1 0 0 -100 2 1 -0.187943798331828 0.462923960830674 0 0.00328782337009045 4.39500301711027e-05 0.999994594128329 100 -0.000302863827528199 1 1 0 0 -101 2 1 -0.14623852552157 0.446575242396176 0 0.00255725197416845 4.1782142180008e-05 0.999996729352948 100 -0.000180143906732155 1 1 0 0 -102 2 1 -0.10448824538142 0.434312753603294 0 0.00182663856522347 4.01558790495415e-05 0.999998330888136 100 -8.79803357065612e-05 1 1 0 0 -103 2 1 -0.0627058107901166 0.426137308628128 0 0.00109599514452313 3.90715382784512e-05 0.999999398633848 100 -2.64790722894759e-05 1 1 0 0 -104 2 1 -0.0209040809841347 0.422049450390409 0 0.000365333715788283 3.85293182780244e-05 0.999999932523381 100 4.28922874107229e-06 1 1 0 0 -105 2 1 0.0209040809841347 0.422049450390409 0 -0.000365333715788283 3.85293182780244e-05 0.999999932523381 100 4.28922874107229e-06 1 1 0 0 -106 2 1 0.0627058107901166 0.426137308628128 0 -0.00109599514452313 3.90715382784512e-05 0.999999398633848 100 -2.64790722894759e-05 1 1 0 0 -107 2 1 0.10448824538142 0.434312753603294 0 -0.00182663856522347 4.01558790495415e-05 0.999998330888136 100 -8.79803357065612e-05 1 1 0 0 -108 2 1 0.14623852552157 0.446575242396176 0 -0.00255725197416845 4.1782142180008e-05 0.999996729352948 100 -0.000180143906732155 1 1 0 0 -109 2 1 0.187943798331828 0.462923960830674 0 -0.00328782337009045 4.39500301711027e-05 0.999994594128329 100 -0.000302863827528199 1 1 0 0 -110 2 1 0.229591219829842 0.483357823717973 0 -0.00401834075515647 4.66591465795307e-05 0.99999192534765 100 -0.000455998899951737 1 1 0 0 -111 2 1 0.271167957463852 0.507875475180024 0 -0.00474879213594945 4.99089962065491e-05 0.999988723177587 100 -0.00063937272682324 1 1 0 0 -112 2 1 -0.271142999846194 1.35054282813393 0 0.00472618903923839 0.000126760312493868 0.999988823472037 100 -0.000564581110097606 1 1 0 0 -113 2 1 -0.229568764218266 1.32614144767229 0 0.00399921313006967 0.000123530817994766 0.999991995485202 100 -0.000383955563165728 1 1 0 0 -114 2 1 -0.187924513145144 1.3058045125157 0 0.00327217218036351 0.000120838680258445 0.999994639129248 100 -0.000233115303103659 1 1 0 0 -115 2 1 -0.146222958006781 1.28953335933647 0 0.00254507800849346 0.000118684385728207 0.999996754240706 100 -0.000112234234052266 1 1 0 0 -116 2 1 -0.104476821398542 1.27732905794858 0 0.00181794243714036 0.000117068323835623 0.999998340688775 100 -2.14515550851502e-05 1 1 0 0 -117 2 1 -0.0626988346446438 1.26919241098963 0 0.00109077729233508 0.000115990786815678 0.999999398375337 100 3.91282811733618e-05 1 1 0 0 -118 2 1 -0.0209017353072889 1.26512395368469 0 0.00036359440250136 0.000115451969569247 0.999999927234974 100 6.9435616978808e-05 1 1 0 0 -119 2 1 0.0209017353072889 1.26512395368469 0 -0.00036359440250136 0.000115451969569247 0.999999927234974 100 6.9435616978808e-05 1 1 0 0 -120 2 1 0.0626988346446438 1.26919241098963 0 -0.00109077729233508 0.000115990786815678 0.999999398375337 100 3.91282811733618e-05 1 1 0 0 -121 2 1 0.104476821398542 1.27732905794858 0 -0.00181794243714036 0.000117068323835623 0.999998340688775 100 -2.14515550851502e-05 1 1 0 0 -122 2 1 0.146222958006781 1.28953335933647 0 -0.00254507800849346 0.000118684385728207 0.999996754240706 100 -0.000112234234052266 1 1 0 0 -123 2 1 0.187924513145144 1.3058045125157 0 -0.00327217218036351 0.000120838680258445 0.999994639129248 100 -0.000233115303103659 1 1 0 0 -124 2 1 0.229568764218266 1.32614144767229 0 -0.00399921313006967 0.000123530817994766 0.999991995485202 100 -0.000383955563165728 1 1 0 0 -125 2 1 0.271142999846194 1.35054282813393 0 -0.00472618903923839 0.000126760312493868 0.999988823472037 100 -0.000564581110097606 1 1 0 0 -126 2 1 -0.271118025690888 2.19321406374711 0 0.00470379939426427 0.0002036124690733 0.999988916345187 100 -0.00042479219962388 1 1 0 0 -127 2 1 -0.229546313505056 2.1689278568784 0 0.00398026615478244 0.000200403091442924 0.999992058628436 100 -0.000246889092522906 1 1 0 0 -128 2 1 -0.187905244856214 2.14868693428402 0 0.00325666882010882 0.00019772773346724 0.999994677491805 100 -9.83220309080934e-05 1 1 0 0 -129 2 1 -0.146207411659849 2.1324926137915 0 0.00253301903691188 0.000195586873031672 0.999996772774959 100 2.07375360332662e-05 1 1 0 0 -130 2 1 -0.104465416836719 2.12034595012867 0 0.00180932845606179 0.000193980892713941 0.999998344349605 100 0.000110152369416028 1 1 0 0 -131 2 1 -0.0626918718728273 2.11224773461242 0 0.00108560873169666 0.000192910079604203 0.999999392119507 100 0.000169819491134149 1 1 0 0 -132 2 1 -0.0208993943752225 2.10819849491643 0 0.000361871520288836 0.000192374625171077 0.9999999160205 100 0.000199670222855275 1 1 0 0 -133 2 1 0.0208993943752225 2.10819849491643 0 -0.000361871520288836 0.000192374625171077 0.9999999160205 100 0.000199670222855275 1 1 0 0 -134 2 1 0.0626918718728273 2.11224773461242 0 -0.00108560873169666 0.000192910079604203 0.999999392119507 100 0.000169819491134149 1 1 0 0 -135 2 1 0.104465416836718 2.12034595012867 0 -0.00180932845606179 0.000193980892713941 0.999998344349605 100 0.000110152369416028 1 1 0 0 -136 2 1 0.146207411659849 2.1324926137915 0 -0.00253301903691188 0.000195586873031672 0.999996772774959 100 2.07375360332662e-05 1 1 0 0 -137 2 1 0.187905244856214 2.14868693428402 0 -0.00325666882010882 0.00019772773346724 0.999994677491805 100 -9.83220309080934e-05 1 1 0 0 -138 2 1 0.229546313505056 2.1689278568784 0 -0.00398026615478245 0.000200403091442924 0.999992058628436 100 -0.000246889092522906 1 1 0 0 -139 2 1 0.271118025690888 2.19321406374711 0 -0.00470379939426427 0.0002036124690733 0.999988916345187 100 -0.00042479219962388 1 1 0 0 -140 2 1 -0.271093035596496 3.0358891375295 0 0.00468162019165506 0.000280465451353074 0.999989001825276 100 -0.000220004703578525 1 1 0 0 -141 2 1 -0.229523867842638 3.01171702230057 0 0.00396149728203482 0.000277275956330647 0.999992114797576 100 -4.4798565909332e-05 1 1 0 0 -142 2 1 -0.187885993348093 2.99157120999338 0 0.00324131120461245 0.000274617182546538 0.999994709229543 100 0.000101516611152874 1 1 0 0 -143 2 1 -0.14619188623932 2.97545299994444 0 0.00252107343761098 0.000272489599519948 0.999996784963902 100 0.000218771781078431 1 1 0 0 -144 2 1 -0.104454031442804 2.96336343207768 0 0.00180079546335261 0.000270893583128179 0.999998341874808 100 0.000306831630268789 1 1 0 0 -145 2 1 -0.0626849222904939 2.95530328659996 0 0.00108048876734778 0.000269829415431772 0.999999379867863 100 0.000365594624554433 1 1 0 0 -146 2 1 -0.0208970581211616 2.95127308377606 0 0.000360164837384173 0.000269297284544306 0.999999898880126 100 0.00039499305296431 1 1 0 0 -147 2 1 0.0208970581211616 2.95127308377606 0 -0.000360164837384173 0.000269297284544306 0.999999898880126 100 0.00039499305296431 1 1 0 0 -148 2 1 0.0626849222904939 2.95530328659996 0 -0.00108048876734778 0.000269829415431772 0.999999379867863 100 0.000365594624554433 1 1 0 0 -149 2 1 0.104454031442804 2.96336343207768 0 -0.00180079546335261 0.000270893583128179 0.999998341874808 100 0.000306831630268789 1 1 0 0 -150 2 1 0.14619188623932 2.97545299994444 0 -0.00252107343761098 0.000272489599519948 0.999996784963902 100 0.000218771781078431 1 1 0 0 -151 2 1 0.187885993348093 2.99157120999338 0 -0.00324131120461245 0.000274617182546538 0.999994709229543 100 0.000101516611152874 1 1 0 0 -152 2 1 0.229523867842638 3.01171702230057 0 -0.00396149728203482 0.000277275956330647 0.999992114797576 100 -4.4798565909332e-05 1 1 0 0 -153 2 1 0.271093035596496 3.0358891375295 0 -0.00468162019165506 0.000280465451353074 0.999989001825276 100 -0.000220004703578525 1 1 0 0 -154 2 1 -0.271068030143578 3.87856800600879 0 0.00465964847833793 0.000357319245047671 0.999989079939884 100 4.97826437140247e-05 1 1 0 0 -155 2 1 -0.229501427376461 3.85450891563302 0 0.00394290401222902 0.000354149402285092 0.999992164012374 100 0.00022231693253616 1 1 0 0 -156 2 1 -0.187866758503763 3.8344573239928 0 0.00322609728817338 0.00035150702039341 0.999994734355687 100 0.000366401238466096 1 1 0 0 -157 2 1 -0.146176381507192 3.81841451227726 0 0.00250923961913175 0.000349392560712064 0.999996790815537 100 0.000481868878068781 1 1 0 0 -158 2 1 -0.104442664968004 3.80638150588216 0 0.00179234232206446 0.000347806392567263 0.999998333268468 100 0.000568586421650252 1 1 0 0 -159 2 1 -0.0626779857168336 3.79835907411192 0 0.00107541671704263 0.000346748793102841 0.999999361621876 100 0.000626453759423384 1 1 0 0 -160 2 1 -0.0208947264795785 3.79434772995989 0 0.000358474126359308 0.000346219947151588 0.999999875814017 100 0.000655404122312575 1 1 0 0 -161 2 1 0.0208947264795785 3.79434772995989 0 -0.000358474126359308 0.000346219947151588 0.999999875814017 100 0.000655404122312575 1 1 0 0 -162 2 1 0.0626779857168336 3.79835907411192 0 -0.00107541671704263 0.000346748793102841 0.999999361621876 100 0.000626453759423384 1 1 0 0 -163 2 1 0.104442664968004 3.80638150588216 0 -0.00179234232206446 0.000347806392567263 0.999998333268468 100 0.000568586421650252 1 1 0 0 -164 2 1 0.146176381507192 3.81841451227726 0 -0.00250923961913175 0.000349392560712064 0.999996790815537 100 0.000481868878068781 1 1 0 0 -165 2 1 0.187866758503763 3.8344573239928 0 -0.00322609728817338 0.00035150702039341 0.999994734355687 100 0.000366401238466096 1 1 0 0 -166 2 1 0.229501427376461 3.85450891563302 0 -0.00394290401222902 0.000354149402285092 0.999992164012374 100 0.00022231693253616 1 1 0 0 -167 2 1 0.271068030143578 3.87856800600879 0 -0.00465964847833793 0.000357319245047671 0.999989079939884 100 4.97826437140247e-05 1 1 0 0 -168 2 1 -0.27104300989527 4.72125062671117 0 0.00463788135622887 0.000434173836170837 0.999989150715949 100 0.000384571089853125 1 1 0 0 -169 2 1 -0.229478992245249 4.69730350928515 0 0.00392448389231988 0.00043102341914758 0.999992206292124 100 0.000554458301053273 1 1 0 0 -170 2 1 -0.187847540206185 4.67734526110882 0 0.00321102506319524 0.000428397240048228 0.999994752883158 100 0.000696332457209792 1 1 0 0 -171 2 1 -0.146160897228866 4.66137714556107 0 0.00249751601966216 0.000426295752213923 0.999996790337681 100 0.000810029194553863 1 1 0 0 -172 2 1 -0.104431317167779 4.6494001737766 0 0.00178396791643075 0.000424719318565275 0.999998318534573 100 0.000895416940807081 1 1 0 0 -173 2 1 -0.0626710619743225 4.64141510436188 0 0.00107039191124662 0.000423668211437855 0.999999337382982 100 0.000952396969296387 1 1 0 0 -174 2 1 -0.0208923993861638 4.63742244317154 0 0.000356799164023601 0.000423142612457322 0.999999846822331 100 0.000980903447612036 1 1 0 0 -175 2 1 0.0208923993861638 4.63742244317154 0 -0.000356799164023601 0.000423142612457322 0.999999846822331 100 0.000980903447612036 1 1 0 0 -176 2 1 0.0626710619743225 4.64141510436188 0 -0.00107039191124662 0.000423668211437855 0.999999337382982 100 0.000952396969296387 1 1 0 0 -177 2 1 0.104431317167779 4.6494001737766 0 -0.00178396791643075 0.000424719318565275 0.999998318534573 100 0.000895416940807081 1 1 0 0 -178 2 1 0.146160897228866 4.66137714556107 0 -0.00249751601966216 0.000426295752213923 0.999996790337681 100 0.000810029194553863 1 1 0 0 -179 2 1 0.187847540206185 4.67734526110882 0 -0.00321102506319524 0.000428397240048228 0.999994752883158 100 0.000696332457209792 1 1 0 0 -180 2 1 0.229478992245249 4.69730350928515 0 -0.00392448389231988 0.00043102341914758 0.999992206292124 100 0.000554458301053273 1 1 0 0 -181 2 1 0.27104300989527 4.72125062671117 0 -0.00463788135622887 0.000434173836170837 0.999989150715949 100 0.000384571089853125 1 1 0 0 -182 2 1 -0.271017975397829 5.56393695813059 0 0.00461631598095904 0.000511029211025943 0.999989214179788 100 0.000784361856858595 1 1 0 0 -183 2 1 -0.229456562581253 5.5401007763604 0 0.00390623451473634 0.000507897996967849 0.999992241655674 100 0.000951626418554952 1 1 0 0 -184 2 1 -0.187828338338345 5.52023500663401 0 0.00319609255930328 0.000505287834691642 0.999994764824575 100 0.00109131086378511 1 1 0 0 -185 2 1 -0.146145433173075 5.50434089484674 0 0.00248590110635005 0.00050319916971639 0.99999678353797 100 0.00120325309922009 1 1 0 0 -186 2 1 -0.104419987801757 5.49241943813859 0 0.00177567115137571 0.000501632358698906 0.999998297677021 100 0.00128732337338988 1 1 0 0 -187 2 1 -0.0626641508886474 5.48447138461171 0 0.00106541369284174 0.000500587669272773 0.999999307152584 100 0.00134342433102574 1 1 0 0 -188 2 1 -0.0208900767777975 5.48049723311715 0 0.000355139731325619 0.000500065279927214 0.999999811905226 100 0.00137149104375567 1 1 0 0 -189 2 1 0.0208900767777975 5.48049723311715 0 -0.000355139731325619 0.000500065279927214 0.999999811905226 100 0.00137149104375567 1 1 0 0 -190 2 1 0.0626641508886474 5.48447138461171 0 -0.00106541369284174 0.000500587669272773 0.999999307152584 100 0.00134342433102574 1 1 0 0 -191 2 1 0.104419987801757 5.49241943813859 0 -0.00177567115137571 0.000501632358698906 0.999998297677021 100 0.00128732337338988 1 1 0 0 -192 2 1 0.146145433173075 5.50434089484674 0 -0.00248590110635005 0.00050319916971639 0.99999678353797 100 0.00120325309922009 1 1 0 0 -193 2 1 0.187828338338345 5.52023500663401 0 -0.00319609255930328 0.000505287834691642 0.999994764824575 100 0.00109131086378511 1 1 0 0 -194 2 1 0.229456562581252 5.5401007763604 0 -0.00390623451473634 0.000507897996967849 0.999992241655674 100 0.000951626418554952 1 1 0 0 -195 2 1 0.271017975397829 5.56393695813059 0 -0.00461631598095904 0.000511029211025943 0.999989214179788 100 0.000784361856858595 1 1 0 0 -196 2 1 -0.2713421433857 -5.39068331822541 0 0.00491325571278592 -0.000488025395497332 0.999987810800469 100 0.000656896961686471 1 1 0 0 -197 2 1 -0.229748531865936 -5.41604695624558 0 0.00415751684694949 -0.000491424757505854 0.99999123673929 100 0.000860264039033609 1 1 0 0 -198 2 1 -0.188079277554942 -5.43718607447625 0 0.00340170467656384 -0.000494258591049318 0.999994092039417 100 0.00103009481438221 1 1 0 0 -199 2 1 -0.146348111858507 -5.45409917174192 0 0.00264583252093794 -0.000496526333636754 0.999996376509371 100 0.00116619400432683 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -0.2713421433857 -5.39068331822541 0 0.00491325571278592 -0.000488025395497332 0.999987810800469 100 0.000656896961686471 1 1 0 0 +1 2 1 -0.229748531865936 -5.41604695624558 0 0.00415751684694949 -0.000491424757505854 0.99999123673929 100 0.000860264039033609 1 1 0 0 +2 2 1 -0.188079277554942 -5.43718607447625 0 0.00340170467656384 -0.000494258591049318 0.999994092039417 100 0.00103009481438221 1 1 0 0 +3 2 1 -0.146348111858507 -5.45409917174192 0 0.00264583252093794 -0.000496526333636754 0.999996376509371 100 0.00116619400432683 1 1 0 0 +4 2 1 -0.104568779273265 -5.46678504652504 0 0.00188991370465534 -0.000498227534928453 0.999998089995932 100 0.00126840527320837 1 1 0 0 +5 2 1 -0.0627550344848906 -5.47524279734918 0 0.00113396155640198 -0.000499361856967112 0.999999232384167 100 0.00133661131769713 1 1 0 0 +6 2 1 -0.0209206394608321 -5.47947182307198 0 0.00037798940779406 -0.00049992907435123 0.999999803597445 100 0.00137073390283149 1 1 0 0 +7 2 1 0.0209206394608321 -5.47947182307198 0 -0.00037798940779406 -0.00049992907435123 0.999999803597445 100 0.00137073390283149 1 1 0 0 +8 2 1 0.0627550344848906 -5.47524279734918 0 -0.00113396155640198 -0.000499361856967112 0.999999232384167 100 0.00133661131769713 1 1 0 0 +9 2 1 0.104568779273265 -5.46678504652504 0 -0.00188991370465535 -0.000498227534928453 0.999998089995932 100 0.00126840527320837 1 1 0 0 +10 2 1 0.146348111858507 -5.45409917174192 0 -0.00264583252093794 -0.000496526333636754 0.999996376509371 100 0.00116619400432683 1 1 0 0 +11 2 1 0.188079277554942 -5.43718607447625 0 -0.00340170467656384 -0.000494258591049318 0.999994092039417 100 0.00103009481438221 1 1 0 0 +12 2 1 0.229748531865936 -5.41604695624558 0 -0.00415751684694949 -0.000491424757505854 0.99999123673929 100 0.000860264039033609 1 1 0 0 +13 2 1 0.2713421433857 -5.39068331822541 0 -0.00491325571278592 -0.000488025395497332 0.999987810800469 100 0.000656896961686471 1 1 0 0 +14 2 1 -0.271317319935241 -4.54804448052803 0 0.00488906916922249 -0.000411180397420191 0.999987963894236 100 0.000276745604992357 1 1 0 0 +15 2 1 -0.229726046879385 -4.5732837071993 0 0.00413704909813639 -0.000414557616725986 0.999991356446015 100 0.000477172818364124 1 1 0 0 +16 2 1 -0.188059870828846 -4.59431910896893 0 0.00338495682823128 -0.000417372979115094 0.99999418391662 100 0.000644548461536942 1 1 0 0 +17 2 1 -0.146332389105988 -4.6111492066488 0 0.00263280547799759 -0.000419625932396944 0.999996446118381 100 0.000778680109760899 1 1 0 0 +18 2 1 -0.104557211869182 -4.62377281632645 0 0.00188060817106636 -0.000421316034482061 0.999998142901129 100 0.000879413716347699 1 1 0 0 +19 2 1 -0.0627479592674298 -4.63218904973694 0 0.00112837803506677 -0.000422442953606245 0.999999274152217 100 0.000946633698163168 1 1 0 0 +20 2 1 -0.0209182585896711 -4.63639731454922 0 0.000376128200483867 -0.000423006468499881 0.999999839796539 100 0.000980262965981638 1 1 0 0 +21 2 1 0.0209182585896711 -4.63639731454922 0 -0.000376128200483867 -0.000423006468499881 0.999999839796539 100 0.000980262965981638 1 1 0 0 +22 2 1 0.0627479592674298 -4.63218904973694 0 -0.00112837803506677 -0.000422442953606245 0.999999274152217 100 0.000946633698163168 1 1 0 0 +23 2 1 0.104557211869182 -4.62377281632645 0 -0.00188060817106636 -0.000421316034482061 0.999998142901129 100 0.000879413716347699 1 1 0 0 +24 2 1 0.146332389105988 -4.6111492066488 0 -0.00263280547799759 -0.000419625932396944 0.999996446118381 100 0.000778680109760899 1 1 0 0 +25 2 1 0.188059870828846 -4.59431910896893 0 -0.00338495682823128 -0.000417372979115094 0.99999418391662 100 0.000644548461536942 1 1 0 0 +26 2 1 0.229726046879384 -4.5732837071993 0 -0.00413704909813639 -0.000414557616725986 0.999991356446015 100 0.000477172818364124 1 1 0 0 +27 2 1 0.271317319935241 -4.54804448052803 0 -0.00488906916922249 -0.000411180397420191 0.999987963894236 100 0.000276745604992357 1 1 0 0 +28 2 1 -0.271292475199896 -3.70540141806252 0 0.0048651188376733 -0.000334334447581547 0.999988109348892 100 -3.84181510071357e-05 1 1 0 0 +29 2 1 -0.229703565504773 -3.73051744766781 0 0.00411678126465353 -0.00033768979306889 0.999991469002422 100 0.000159097769596883 1 1 0 0 +30 2 1 -0.188040481811735 -3.75145014566203 0 0.00336837257673934 -0.000340486908814469 0.999994269051003 100 0.000324042191209628 1 1 0 0 +31 2 1 -0.146316689313014 -3.76819805441879 0 0.00261990569556063 -0.000342725252688164 0.999996509310681 100 0.000456225494758655 1 1 0 0 +32 2 1 -0.104545665788194 -3.78076000728679 0 0.0018713935477579 -0.000344404390658137 0.999998189634264 100 0.00055549587762016 1 1 0 0 +33 2 1 -0.0627408988138807 -3.78913512895777 0 0.00112284906386873 -0.000345523997009295 0.999999309911335 100 0.000621739438997793 1 1 0 0 +34 2 1 -0.0209158829682254 -3.79332283573895 0 0.000374285177214243 -0.000346083854507157 0.999999870068277 100 0.000654880212550779 1 1 0 0 +35 2 1 0.0209158829682254 -3.79332283573895 0 -0.000374285177214243 -0.000346083854507157 0.999999870068277 100 0.000654880212550779 1 1 0 0 +36 2 1 0.0627408988138807 -3.78913512895777 0 -0.00112284906386873 -0.000345523997009295 0.999999309911335 100 0.000621739438997793 1 1 0 0 +37 2 1 0.104545665788194 -3.78076000728679 0 -0.0018713935477579 -0.000344404390658137 0.999998189634264 100 0.00055549587762016 1 1 0 0 +38 2 1 0.146316689313014 -3.76819805441879 0 -0.00261990569556063 -0.000342725252688164 0.999996509310681 100 0.000456225494758655 1 1 0 0 +39 2 1 0.188040481811735 -3.75145014566203 0 -0.00336837257673934 -0.000340486908814469 0.999994269051003 100 0.000324042191209628 1 1 0 0 +40 2 1 0.229703565504773 -3.73051744766781 0 -0.00411678126465353 -0.00033768979306889 0.999991469002422 100 0.000159097769596883 1 1 0 0 +41 2 1 0.271292475199896 -3.70540141806252 0 -0.0048651188376733 -0.000334334447581547 0.999988109348892 100 -3.84181510071357e-05 1 1 0 0 +42 2 1 -0.271267609922306 -2.86275418317806 0 0.004841401274657 -0.000257487562970199 0.999988247197862 100 -0.000288592848619373 1 1 0 0 +43 2 1 -0.229681087951545 -2.88774821231943 0 0.00409671043172187 -0.000260821298848246 0.999991574432449 100 -9.39600632818838e-05 1 1 0 0 +44 2 1 -0.188021110388994 -2.90857920447119 0 0.00335194953654306 -0.000263600388552443 0.999994347458594 100 6.8576703938561e-05 1 1 0 0 +45 2 1 -0.146301012212332 -2.92524572315172 0 0.00260713131775151 -0.00026582429978006 0.999996566095971 100 0.000198830576778164 1 1 0 0 +46 2 1 -0.10453414074392 -2.93774661863871 0 0.00186226850886257 -0.000267492606370406 0.999998230200287 100 0.000296651960525196 1 1 0 0 +47 2 1 -0.0627338529142027 -2.9460810283275 0 0.00111737384719055 -0.000268604988516885 0.999999339663305 100 0.000361928603410888 1 1 0 0 +48 2 1 -0.0209135125201104 -2.95024837699877 0 0.000372460072763287 -0.000269161232926529 0.999999894412857 100 0.000394585642993661 1 1 0 0 +49 2 1 0.0209135125201104 -2.95024837699877 0 -0.000372460072763287 -0.000269161232926529 0.999999894412857 100 0.000394585642993661 1 1 0 0 +50 2 1 0.0627338529142027 -2.9460810283275 0 -0.00111737384719055 -0.000268604988516885 0.999999339663305 100 0.000361928603410888 1 1 0 0 +51 2 1 0.10453414074392 -2.93774661863871 0 -0.00186226850886257 -0.000267492606370406 0.999998230200287 100 0.000296651960525196 1 1 0 0 +52 2 1 0.146301012212332 -2.92524572315172 0 -0.00260713131775151 -0.00026582429978006 0.999996566095971 100 0.000198830576778164 1 1 0 0 +53 2 1 0.188021110388994 -2.90857920447119 0 -0.00335194953654306 -0.000263600388552443 0.999994347458594 100 6.8576703938561e-05 1 1 0 0 +54 2 1 0.229681087951545 -2.88774821231943 0 -0.00409671043172187 -0.000260821298848246 0.999991574432449 100 -9.39600632818838e-05 1 1 0 0 +55 2 1 0.271267609922306 -2.86275418317806 0 -0.004841401274657 -0.000257487562970199 0.999988247197862 100 -0.000288592848619373 1 1 0 0 +56 2 1 -0.271242724822434 -2.0201028270173 0 0.00481791310329167 -0.000180639760204049 0.999988377473762 100 -0.000473777052661717 1 1 0 0 +57 2 1 -0.229658614420043 -2.04497603495638 0 0.00407683374094661 -0.000183952146110666 0.999991672759457 100 -0.000281999649132558 1 1 0 0 +58 2 1 -0.188001756445462 -2.06570630473054 0 0.00333568536825114 -0.00018671342655488 0.999994419155037 100 -0.000121847314630941 1 1 0 0 +59 2 1 -0.14628535754056 -2.08229222059585 0 0.00259448052460507 -0.000188923078834197 0.999996616483715 100 6.49577270905866e-06 1 1 0 0 +60 2 1 -0.10452263645505 -2.09473264943303 0 0.00185323175417022 -0.000190580684477276 0.999998264604028 100 0.000102882174928709 1 1 0 0 +61 2 1 -0.0627268213623173 -2.10302674109605 0 0.00111195160481215 -0.00019168592944982 0.999999363409864 100 0.000167201261206174 1 1 0 0 +62 2 1 -0.0209111471704164 -2.10717392867701 0 0.000370652627041963 -0.000192238604309586 0.999999912830471 100 0.00019937925674185 1 1 0 0 +63 2 1 0.0209111471704164 -2.10717392867701 0 -0.000370652627041963 -0.000192238604309586 0.999999912830471 100 0.00019937925674185 1 1 0 0 +64 2 1 0.0627268213623173 -2.10302674109605 0 -0.00111195160481215 -0.00019168592944982 0.999999363409864 100 0.000167201261206174 1 1 0 0 +65 2 1 0.10452263645505 -2.09473264943303 0 -0.00185323175417022 -0.000190580684477276 0.999998264604028 100 0.000102882174928709 1 1 0 0 +66 2 1 0.14628535754056 -2.08229222059585 0 -0.00259448052460507 -0.000188923078834197 0.999996616483715 100 6.49577270905866e-06 1 1 0 0 +67 2 1 0.188001756445462 -2.06570630473054 0 -0.00333568536825114 -0.00018671342655488 0.999994419155037 100 -0.000121847314630941 1 1 0 0 +68 2 1 0.229658614420043 -2.04497603495638 0 -0.00407683374094661 -0.000183952146110666 0.999991672759457 100 -0.000281999649132558 1 1 0 0 +69 2 1 0.271242724822434 -2.0201028270173 0 -0.00481791310329167 -0.000180639760204049 0.999988377473762 100 -0.000473777052661717 1 1 0 0 +70 2 1 -0.271217820598296 -1.17744739954494 0 0.00479465101169264 -0.000103791055539426 0.999988500208424 100 -0.000593969349210965 1 1 0 0 +71 2 1 -0.229636145101847 -1.20220094853733 0 0.00405714838896051 -0.000107082346644138 0.999991764006244 100 -0.000405019975119103 1 1 0 0 +72 2 1 -0.1879824198655 -1.22283146521001 0 0.00331957777751519 -0.000109826030873866 0.999994484155599 100 -0.000247229182946285 1 1 0 0 +73 2 1 -0.14626972503812 -1.239337554158 0 0.00258195153120223 -0.000112021594906503 0.99999666048315 100 -0.00012077850908554 1 1 0 0 +74 2 1 -0.104511152645227 -1.25171809854674 0 0.00184428200851044 -0.000113668627783337 0.999998292850201 100 -2.58132693033986e-05 1 1 0 0 +75 2 1 -0.0627198039560148 -1.25997226045187 0 0.00110658157153999 -0.000114766821109696 0.999999381152709 100 3.7557490600193e-05 1 1 0 0 +76 2 1 -0.0209087868456717 -1.26409948111534 0 0.000368862584970539 -0.000115315969205443 0.999999925321307 100 6.92610553869599e-05 1 1 0 0 +77 2 1 0.0209087868456717 -1.26409948111534 0 -0.000368862584970539 -0.000115315969205443 0.999999925321307 100 6.92610553869599e-05 1 1 0 0 +78 2 1 0.0627198039560148 -1.25997226045187 0 -0.00110658157153999 -0.000114766821109696 0.999999381152709 100 3.7557490600193e-05 1 1 0 0 +79 2 1 0.104511152645227 -1.25171809854674 0 -0.00184428200851044 -0.000113668627783337 0.999998292850201 100 -2.58132693033986e-05 1 1 0 0 +80 2 1 0.14626972503812 -1.239337554158 0 -0.00258195153120223 -0.000112021594906503 0.99999666048315 100 -0.00012077850908554 1 1 0 0 +81 2 1 0.1879824198655 -1.22283146521001 0 -0.00331957777751519 -0.000109826030873866 0.999994484155599 100 -0.000247229182946285 1 1 0 0 +82 2 1 0.229636145101847 -1.20220094853733 0 -0.00405714838896051 -0.000107082346644138 0.999991764006244 100 -0.000405019975119103 1 1 0 0 +83 2 1 0.271217820598296 -1.17744739954494 0 -0.00479465101169264 -0.000103791055539426 0.999988500208424 100 -0.000593969349210965 1 1 0 0 +84 2 1 -0.27119289792668 -0.334787949580469 0 0.00477161175141654 -2.69414648814692e-05 0.999988615432921 100 -0.000649168361178454 1 1 0 0 +85 2 1 -0.229613680180105 -0.359422985201966 0 0.00403765162610632 -3.02119119839905e-05 0.999991848195067 100 -0.000463020051142848 1 1 0 0 +86 2 1 -0.187963100533074 -0.379954704129655 0 0.00330362451395099 -3.29382093924302e-05 0.99999454247518 100 -0.000307568239804823 1 1 0 0 +87 2 1 -0.146254114449173 -0.39638173091166 0 0.0025695425868305 -3.51198529504604e-05 0.999996698103294 100 -0.00018299186706372 1 1 0 0 +88 2 1 -0.104499689042939 -0.408702964687825 0 0.00183541802115268 -3.67564390406361e-05 0.999998314943406 100 -8.94341751518368e-05 1 1 0 0 +89 2 1 -0.0627128004968613 -0.416917579521602 0 0.00110126299684705 -3.78476647787673e-05 0.999999392893498 100 -2.70026455382322e-05 1 1 0 0 +90 2 1 -0.0209064314738099 -0.421025024650377 0 0.000367089696358566 -3.83933281612181e-05 0.999999931885551 100 4.23104233959748e-06 1 1 0 0 +91 2 1 0.0209064314738099 -0.421025024650377 0 -0.000367089696358566 -3.83933281612181e-05 0.999999931885551 100 4.23104233959748e-06 1 1 0 0 +92 2 1 0.0627128004968613 -0.416917579521602 0 -0.00110126299684705 -3.78476647787673e-05 0.999999392893498 100 -2.70026455382322e-05 1 1 0 0 +93 2 1 0.104499689042939 -0.408702964687825 0 -0.00183541802115268 -3.67564390406361e-05 0.999998314943406 100 -8.94341751518368e-05 1 1 0 0 +94 2 1 0.146254114449173 -0.39638173091166 0 -0.0025695425868305 -3.51198529504604e-05 0.999996698103294 100 -0.00018299186706372 1 1 0 0 +95 2 1 0.187963100533074 -0.379954704129655 0 -0.00330362451395099 -3.29382093924302e-05 0.99999454247518 100 -0.000307568239804823 1 1 0 0 +96 2 1 0.229613680180105 -0.359422985201966 0 -0.00403765162610632 -3.02119119839905e-05 0.999991848195067 100 -0.000463020051142848 1 1 0 0 +97 2 1 0.27119289792668 -0.334787949580469 0 -0.00477161175141654 -2.69414648814692e-05 0.999988615432921 100 -0.000649168361178454 1 1 0 0 +98 2 1 -0.271167957463852 0.507875475180024 0 0.00474879213594945 4.99089962065491e-05 0.999988723177587 100 -0.00063937272682324 1 1 0 0 +99 2 1 -0.229591219829842 0.483357823717973 0 0.00401834075515647 4.66591465795307e-05 0.99999192534765 100 -0.000455998899951737 1 1 0 0 +100 2 1 -0.187943798331828 0.462923960830674 0 0.00328782337009045 4.39500301711027e-05 0.999994594128329 100 -0.000302863827528199 1 1 0 0 +101 2 1 -0.14623852552157 0.446575242396176 0 0.00255725197416845 4.1782142180008e-05 0.999996729352948 100 -0.000180143906732155 1 1 0 0 +102 2 1 -0.10448824538142 0.434312753603294 0 0.00182663856522347 4.01558790495415e-05 0.999998330888136 100 -8.79803357065612e-05 1 1 0 0 +103 2 1 -0.0627058107901166 0.426137308628128 0 0.00109599514452313 3.90715382784512e-05 0.999999398633848 100 -2.64790722894759e-05 1 1 0 0 +104 2 1 -0.0209040809841347 0.422049450390409 0 0.000365333715788283 3.85293182780244e-05 0.999999932523381 100 4.28922874107229e-06 1 1 0 0 +105 2 1 0.0209040809841347 0.422049450390409 0 -0.000365333715788283 3.85293182780244e-05 0.999999932523381 100 4.28922874107229e-06 1 1 0 0 +106 2 1 0.0627058107901166 0.426137308628128 0 -0.00109599514452313 3.90715382784512e-05 0.999999398633848 100 -2.64790722894759e-05 1 1 0 0 +107 2 1 0.10448824538142 0.434312753603294 0 -0.00182663856522347 4.01558790495415e-05 0.999998330888136 100 -8.79803357065612e-05 1 1 0 0 +108 2 1 0.14623852552157 0.446575242396176 0 -0.00255725197416845 4.1782142180008e-05 0.999996729352948 100 -0.000180143906732155 1 1 0 0 +109 2 1 0.187943798331828 0.462923960830674 0 -0.00328782337009045 4.39500301711027e-05 0.999994594128329 100 -0.000302863827528199 1 1 0 0 +110 2 1 0.229591219829842 0.483357823717973 0 -0.00401834075515647 4.66591465795307e-05 0.99999192534765 100 -0.000455998899951737 1 1 0 0 +111 2 1 0.271167957463852 0.507875475180024 0 -0.00474879213594945 4.99089962065491e-05 0.999988723177587 100 -0.00063937272682324 1 1 0 0 +112 2 1 -0.271142999846194 1.35054282813393 0 0.00472618903923839 0.000126760312493868 0.999988823472037 100 -0.000564581110097606 1 1 0 0 +113 2 1 -0.229568764218266 1.32614144767229 0 0.00399921313006967 0.000123530817994766 0.999991995485202 100 -0.000383955563165728 1 1 0 0 +114 2 1 -0.187924513145144 1.3058045125157 0 0.00327217218036351 0.000120838680258445 0.999994639129248 100 -0.000233115303103659 1 1 0 0 +115 2 1 -0.146222958006781 1.28953335933647 0 0.00254507800849346 0.000118684385728207 0.999996754240706 100 -0.000112234234052266 1 1 0 0 +116 2 1 -0.104476821398542 1.27732905794858 0 0.00181794243714036 0.000117068323835623 0.999998340688775 100 -2.14515550851502e-05 1 1 0 0 +117 2 1 -0.0626988346446438 1.26919241098963 0 0.00109077729233508 0.000115990786815678 0.999999398375337 100 3.91282811733618e-05 1 1 0 0 +118 2 1 -0.0209017353072889 1.26512395368469 0 0.00036359440250136 0.000115451969569247 0.999999927234974 100 6.9435616978808e-05 1 1 0 0 +119 2 1 0.0209017353072889 1.26512395368469 0 -0.00036359440250136 0.000115451969569247 0.999999927234974 100 6.9435616978808e-05 1 1 0 0 +120 2 1 0.0626988346446438 1.26919241098963 0 -0.00109077729233508 0.000115990786815678 0.999999398375337 100 3.91282811733618e-05 1 1 0 0 +121 2 1 0.104476821398542 1.27732905794858 0 -0.00181794243714036 0.000117068323835623 0.999998340688775 100 -2.14515550851502e-05 1 1 0 0 +122 2 1 0.146222958006781 1.28953335933647 0 -0.00254507800849346 0.000118684385728207 0.999996754240706 100 -0.000112234234052266 1 1 0 0 +123 2 1 0.187924513145144 1.3058045125157 0 -0.00327217218036351 0.000120838680258445 0.999994639129248 100 -0.000233115303103659 1 1 0 0 +124 2 1 0.229568764218266 1.32614144767229 0 -0.00399921313006967 0.000123530817994766 0.999991995485202 100 -0.000383955563165728 1 1 0 0 +125 2 1 0.271142999846194 1.35054282813393 0 -0.00472618903923839 0.000126760312493868 0.999988823472037 100 -0.000564581110097606 1 1 0 0 +126 2 1 -0.271118025690888 2.19321406374711 0 0.00470379939426427 0.0002036124690733 0.999988916345187 100 -0.00042479219962388 1 1 0 0 +127 2 1 -0.229546313505056 2.1689278568784 0 0.00398026615478244 0.000200403091442924 0.999992058628436 100 -0.000246889092522906 1 1 0 0 +128 2 1 -0.187905244856214 2.14868693428402 0 0.00325666882010882 0.00019772773346724 0.999994677491805 100 -9.83220309080934e-05 1 1 0 0 +129 2 1 -0.146207411659849 2.1324926137915 0 0.00253301903691188 0.000195586873031672 0.999996772774959 100 2.07375360332662e-05 1 1 0 0 +130 2 1 -0.104465416836719 2.12034595012867 0 0.00180932845606179 0.000193980892713941 0.999998344349605 100 0.000110152369416028 1 1 0 0 +131 2 1 -0.0626918718728273 2.11224773461242 0 0.00108560873169666 0.000192910079604203 0.999999392119507 100 0.000169819491134149 1 1 0 0 +132 2 1 -0.0208993943752225 2.10819849491643 0 0.000361871520288836 0.000192374625171077 0.9999999160205 100 0.000199670222855275 1 1 0 0 +133 2 1 0.0208993943752225 2.10819849491643 0 -0.000361871520288836 0.000192374625171077 0.9999999160205 100 0.000199670222855275 1 1 0 0 +134 2 1 0.0626918718728273 2.11224773461242 0 -0.00108560873169666 0.000192910079604203 0.999999392119507 100 0.000169819491134149 1 1 0 0 +135 2 1 0.104465416836718 2.12034595012867 0 -0.00180932845606179 0.000193980892713941 0.999998344349605 100 0.000110152369416028 1 1 0 0 +136 2 1 0.146207411659849 2.1324926137915 0 -0.00253301903691188 0.000195586873031672 0.999996772774959 100 2.07375360332662e-05 1 1 0 0 +137 2 1 0.187905244856214 2.14868693428402 0 -0.00325666882010882 0.00019772773346724 0.999994677491805 100 -9.83220309080934e-05 1 1 0 0 +138 2 1 0.229546313505056 2.1689278568784 0 -0.00398026615478245 0.000200403091442924 0.999992058628436 100 -0.000246889092522906 1 1 0 0 +139 2 1 0.271118025690888 2.19321406374711 0 -0.00470379939426427 0.0002036124690733 0.999988916345187 100 -0.00042479219962388 1 1 0 0 +140 2 1 -0.271093035596496 3.0358891375295 0 0.00468162019165506 0.000280465451353074 0.999989001825276 100 -0.000220004703578525 1 1 0 0 +141 2 1 -0.229523867842638 3.01171702230057 0 0.00396149728203482 0.000277275956330647 0.999992114797576 100 -4.4798565909332e-05 1 1 0 0 +142 2 1 -0.187885993348093 2.99157120999338 0 0.00324131120461245 0.000274617182546538 0.999994709229543 100 0.000101516611152874 1 1 0 0 +143 2 1 -0.14619188623932 2.97545299994444 0 0.00252107343761098 0.000272489599519948 0.999996784963902 100 0.000218771781078431 1 1 0 0 +144 2 1 -0.104454031442804 2.96336343207768 0 0.00180079546335261 0.000270893583128179 0.999998341874808 100 0.000306831630268789 1 1 0 0 +145 2 1 -0.0626849222904939 2.95530328659996 0 0.00108048876734778 0.000269829415431772 0.999999379867863 100 0.000365594624554433 1 1 0 0 +146 2 1 -0.0208970581211616 2.95127308377606 0 0.000360164837384173 0.000269297284544306 0.999999898880126 100 0.00039499305296431 1 1 0 0 +147 2 1 0.0208970581211616 2.95127308377606 0 -0.000360164837384173 0.000269297284544306 0.999999898880126 100 0.00039499305296431 1 1 0 0 +148 2 1 0.0626849222904939 2.95530328659996 0 -0.00108048876734778 0.000269829415431772 0.999999379867863 100 0.000365594624554433 1 1 0 0 +149 2 1 0.104454031442804 2.96336343207768 0 -0.00180079546335261 0.000270893583128179 0.999998341874808 100 0.000306831630268789 1 1 0 0 +150 2 1 0.14619188623932 2.97545299994444 0 -0.00252107343761098 0.000272489599519948 0.999996784963902 100 0.000218771781078431 1 1 0 0 +151 2 1 0.187885993348093 2.99157120999338 0 -0.00324131120461245 0.000274617182546538 0.999994709229543 100 0.000101516611152874 1 1 0 0 +152 2 1 0.229523867842638 3.01171702230057 0 -0.00396149728203482 0.000277275956330647 0.999992114797576 100 -4.4798565909332e-05 1 1 0 0 +153 2 1 0.271093035596496 3.0358891375295 0 -0.00468162019165506 0.000280465451353074 0.999989001825276 100 -0.000220004703578525 1 1 0 0 +154 2 1 -0.271068030143578 3.87856800600879 0 0.00465964847833793 0.000357319245047671 0.999989079939884 100 4.97826437140247e-05 1 1 0 0 +155 2 1 -0.229501427376461 3.85450891563302 0 0.00394290401222902 0.000354149402285092 0.999992164012374 100 0.00022231693253616 1 1 0 0 +156 2 1 -0.187866758503763 3.8344573239928 0 0.00322609728817338 0.00035150702039341 0.999994734355687 100 0.000366401238466096 1 1 0 0 +157 2 1 -0.146176381507192 3.81841451227726 0 0.00250923961913175 0.000349392560712064 0.999996790815537 100 0.000481868878068781 1 1 0 0 +158 2 1 -0.104442664968004 3.80638150588216 0 0.00179234232206446 0.000347806392567263 0.999998333268468 100 0.000568586421650252 1 1 0 0 +159 2 1 -0.0626779857168336 3.79835907411192 0 0.00107541671704263 0.000346748793102841 0.999999361621876 100 0.000626453759423384 1 1 0 0 +160 2 1 -0.0208947264795785 3.79434772995989 0 0.000358474126359308 0.000346219947151588 0.999999875814017 100 0.000655404122312575 1 1 0 0 +161 2 1 0.0208947264795785 3.79434772995989 0 -0.000358474126359308 0.000346219947151588 0.999999875814017 100 0.000655404122312575 1 1 0 0 +162 2 1 0.0626779857168336 3.79835907411192 0 -0.00107541671704263 0.000346748793102841 0.999999361621876 100 0.000626453759423384 1 1 0 0 +163 2 1 0.104442664968004 3.80638150588216 0 -0.00179234232206446 0.000347806392567263 0.999998333268468 100 0.000568586421650252 1 1 0 0 +164 2 1 0.146176381507192 3.81841451227726 0 -0.00250923961913175 0.000349392560712064 0.999996790815537 100 0.000481868878068781 1 1 0 0 +165 2 1 0.187866758503763 3.8344573239928 0 -0.00322609728817338 0.00035150702039341 0.999994734355687 100 0.000366401238466096 1 1 0 0 +166 2 1 0.229501427376461 3.85450891563302 0 -0.00394290401222902 0.000354149402285092 0.999992164012374 100 0.00022231693253616 1 1 0 0 +167 2 1 0.271068030143578 3.87856800600879 0 -0.00465964847833793 0.000357319245047671 0.999989079939884 100 4.97826437140247e-05 1 1 0 0 +168 2 1 -0.27104300989527 4.72125062671117 0 0.00463788135622887 0.000434173836170837 0.999989150715949 100 0.000384571089853125 1 1 0 0 +169 2 1 -0.229478992245249 4.69730350928515 0 0.00392448389231988 0.00043102341914758 0.999992206292124 100 0.000554458301053273 1 1 0 0 +170 2 1 -0.187847540206185 4.67734526110882 0 0.00321102506319524 0.000428397240048228 0.999994752883158 100 0.000696332457209792 1 1 0 0 +171 2 1 -0.146160897228866 4.66137714556107 0 0.00249751601966216 0.000426295752213923 0.999996790337681 100 0.000810029194553863 1 1 0 0 +172 2 1 -0.104431317167779 4.6494001737766 0 0.00178396791643075 0.000424719318565275 0.999998318534573 100 0.000895416940807081 1 1 0 0 +173 2 1 -0.0626710619743225 4.64141510436188 0 0.00107039191124662 0.000423668211437855 0.999999337382982 100 0.000952396969296387 1 1 0 0 +174 2 1 -0.0208923993861638 4.63742244317154 0 0.000356799164023601 0.000423142612457322 0.999999846822331 100 0.000980903447612036 1 1 0 0 +175 2 1 0.0208923993861638 4.63742244317154 0 -0.000356799164023601 0.000423142612457322 0.999999846822331 100 0.000980903447612036 1 1 0 0 +176 2 1 0.0626710619743225 4.64141510436188 0 -0.00107039191124662 0.000423668211437855 0.999999337382982 100 0.000952396969296387 1 1 0 0 +177 2 1 0.104431317167779 4.6494001737766 0 -0.00178396791643075 0.000424719318565275 0.999998318534573 100 0.000895416940807081 1 1 0 0 +178 2 1 0.146160897228866 4.66137714556107 0 -0.00249751601966216 0.000426295752213923 0.999996790337681 100 0.000810029194553863 1 1 0 0 +179 2 1 0.187847540206185 4.67734526110882 0 -0.00321102506319524 0.000428397240048228 0.999994752883158 100 0.000696332457209792 1 1 0 0 +180 2 1 0.229478992245249 4.69730350928515 0 -0.00392448389231988 0.00043102341914758 0.999992206292124 100 0.000554458301053273 1 1 0 0 +181 2 1 0.27104300989527 4.72125062671117 0 -0.00463788135622887 0.000434173836170837 0.999989150715949 100 0.000384571089853125 1 1 0 0 +182 2 1 -0.271017975397829 5.56393695813059 0 0.00461631598095904 0.000511029211025943 0.999989214179788 100 0.000784361856858595 1 1 0 0 +183 2 1 -0.229456562581253 5.5401007763604 0 0.00390623451473634 0.000507897996967849 0.999992241655674 100 0.000951626418554952 1 1 0 0 +184 2 1 -0.187828338338345 5.52023500663401 0 0.00319609255930328 0.000505287834691642 0.999994764824575 100 0.00109131086378511 1 1 0 0 +185 2 1 -0.146145433173075 5.50434089484674 0 0.00248590110635005 0.00050319916971639 0.99999678353797 100 0.00120325309922009 1 1 0 0 +186 2 1 -0.104419987801757 5.49241943813859 0 0.00177567115137571 0.000501632358698906 0.999998297677021 100 0.00128732337338988 1 1 0 0 +187 2 1 -0.0626641508886474 5.48447138461171 0 0.00106541369284174 0.000500587669272773 0.999999307152584 100 0.00134342433102574 1 1 0 0 +188 2 1 -0.0208900767777975 5.48049723311715 0 0.000355139731325619 0.000500065279927214 0.999999811905226 100 0.00137149104375567 1 1 0 0 +189 2 1 0.0208900767777975 5.48049723311715 0 -0.000355139731325619 0.000500065279927214 0.999999811905226 100 0.00137149104375567 1 1 0 0 +190 2 1 0.0626641508886474 5.48447138461171 0 -0.00106541369284174 0.000500587669272773 0.999999307152584 100 0.00134342433102574 1 1 0 0 +191 2 1 0.104419987801757 5.49241943813859 0 -0.00177567115137571 0.000501632358698906 0.999998297677021 100 0.00128732337338988 1 1 0 0 +192 2 1 0.146145433173075 5.50434089484674 0 -0.00248590110635005 0.00050319916971639 0.99999678353797 100 0.00120325309922009 1 1 0 0 +193 2 1 0.187828338338345 5.52023500663401 0 -0.00319609255930328 0.000505287834691642 0.999994764824575 100 0.00109131086378511 1 1 0 0 +194 2 1 0.229456562581252 5.5401007763604 0 -0.00390623451473634 0.000507897996967849 0.999992241655674 100 0.000951626418554952 1 1 0 0 +195 2 1 0.271017975397829 5.56393695813059 0 -0.00461631598095904 0.000511029211025943 0.999989214179788 100 0.000784361856858595 1 1 0 0 +196 2 1 -0.2713421433857 -5.39068331822541 0 0.00491325571278592 -0.000488025395497332 0.999987810800469 100 0.000656896961686471 1 1 0 0 +197 2 1 -0.229748531865936 -5.41604695624558 0 0.00415751684694949 -0.000491424757505854 0.99999123673929 100 0.000860264039033609 1 1 0 0 +198 2 1 -0.188079277554942 -5.43718607447625 0 0.00340170467656384 -0.000494258591049318 0.999994092039417 100 0.00103009481438221 1 1 0 0 +199 2 1 -0.146348111858507 -5.45409917174192 0 0.00264583252093794 -0.000496526333636754 0.999996376509371 100 0.00116619400432683 1 1 0 0 diff --git a/Tests/input/Cone.rml b/Intern/RayCore/tests/input/Cone.rml similarity index 100% rename from Tests/input/Cone.rml rename to Intern/RayCore/tests/input/Cone.rml diff --git a/Tests/input/CylinderDefault.csv b/Intern/RayCore/tests/input/CylinderDefault.csv similarity index 99% rename from Tests/input/CylinderDefault.csv rename to Intern/RayCore/tests/input/CylinderDefault.csv index 456dd56ec..7b495bc7f 100644 --- a/Tests/input/CylinderDefault.csv +++ b/Intern/RayCore/tests/input/CylinderDefault.csv @@ -1,202 +1,202 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -5.53249960041105 -0.105268943332393 0 -0.000499999916666671 0.00495130793916307 0.999987617198221 100 0.00103415551279795 1 1 0 0 -1 2 1 -4.68134570558228 -0.105268936006727 0 -0.000423076857570933 0.00495130793932835 0.999987652701603 100 0.000643623044538799 1 1 0 0 -2 2 1 -3.83019186582858 -0.105268929902011 0 -0.000346153795971782 0.00495130793946597 0.999987682287756 100 0.00031817933813727 1 1 0 0 -3 2 1 -2.97903807113631 -0.105268925018327 0 -0.000269230732324383 0.00495130793957607 0.999987705956678 100 5.78243840436699e-05 1 1 0 0 -4 2 1 -2.12788431149182 -0.105268921355521 0 -0.000192307667083903 0.00495130793965892 0.99998772370837 100 -0.000137441822857909 1 1 0 0 -5 2 1 -1.27673057688144 -0.105268918913546 0 -0.000115384600705508 0.00495130793971349 0.999987735542831 100 -0.000267619293254029 1 1 0 0 -6 2 1 -0.425576857291539 -0.105268917692666 0 -3.84615336443636e-05 0.00495130793974133 0.999987741460062 100 -0.000332708026689943 1 1 0 0 -7 2 1 0.425576857291539 -0.105268917692666 0 3.84615336443636e-05 0.00495130793974133 0.999987741460062 100 -0.000332708026689943 1 1 0 0 -8 2 1 1.27673057688144 -0.105268918913546 0 0.000115384600705508 0.00495130793971349 0.999987735542831 100 -0.000267619293254029 1 1 0 0 -9 2 1 2.12788431149182 -0.105268921355521 0 0.000192307667083903 0.00495130793965892 0.99998772370837 100 -0.000137441822857909 1 1 0 0 -10 2 1 2.97903807113631 -0.105268925018327 0 0.000269230732324383 0.00495130793957607 0.999987705956678 100 5.78243840436699e-05 1 1 0 0 -11 2 1 3.83019186582858 -0.105268929902011 0 0.000346153795971782 0.00495130793946597 0.999987682287756 100 0.00031817933813727 1 1 0 0 -12 2 1 4.68134570558228 -0.105268936006727 0 0.000423076857570933 0.00495130793932835 0.999987652701603 100 0.000643623044538799 1 1 0 0 -13 2 1 5.53249960041105 -0.105268943332393 0 0.000499999916666671 0.00495130793916307 0.999987617198221 100 0.00103415551279795 1 1 0 0 -14 2 1 -5.53249986260282 -0.0757501133801464 0 -0.000499999934418149 0.00419300807627904 0.999991084301924 100 0.00116800652608617 1 1 0 0 -15 2 1 -4.68134592743683 -0.0757501081224827 0 -0.000423076872591414 0.0041930080762978 0.999991119805187 100 0.000777474012238599 1 1 0 0 -16 2 1 -3.83019204734593 -0.0757501037411465 0 -0.000346153808261266 0.00419300807631379 0.99999114939124 100 0.00045203026809304 1 1 0 0 -17 2 1 -2.97903821231646 -0.075750100235993 0 -0.000269230741882871 0.00419300807632642 0.999991173060082 100 0.000191675282053438 1 1 0 0 -18 2 1 -2.12788441233477 -0.0757500976071972 0 -0.000192307673911395 0.00419300807633624 0.999991190811714 100 -3.59094883606303e-06 1 1 0 0 -19 2 1 -1.27673063738721 -0.075750095854648 0 -0.000115384604802003 0.00419300807634215 0.999991202646136 100 -0.000133768432760917 1 1 0 0 -20 2 1 -0.425576877460129 -0.0757500949782752 0 -3.8461535009862e-05 0.00419300807634562 0.999991208563346 100 -0.000198857172790667 1 1 0 0 -21 2 1 0.425576877460129 -0.0757500949782752 0 3.8461535009862e-05 0.00419300807634562 0.999991208563346 100 -0.000198857172790667 1 1 0 0 -22 2 1 1.27673063738721 -0.075750095854648 0 0.000115384604802003 0.00419300807634215 0.999991202646136 100 -0.000133768432760917 1 1 0 0 -23 2 1 2.12788441233478 -0.0757500976071972 0 0.000192307673911395 0.00419300807633624 0.999991190811714 100 -3.59094883606303e-06 1 1 0 0 -24 2 1 2.97903821231646 -0.075750100235993 0 0.000269230741882871 0.00419300807632642 0.999991173060082 100 0.000191675282053438 1 1 0 0 -25 2 1 3.83019204734593 -0.0757501037411465 0 0.000346153808261266 0.00419300807631379 0.99999114939124 100 0.00045203026809304 1 1 0 0 -26 2 1 4.68134592743683 -0.0757501081224827 0 0.000423076872591414 0.0041930080762978 0.999991119805187 100 0.000777474012238599 1 1 0 0 -27 2 1 5.53249986260282 -0.0757501133801464 0 0.000499999934418149 0.00419300807627904 0.999991084301924 100 0.00116800652608617 1 1 0 0 -28 2 1 -5.53250007199774 -0.0510410209630425 0 -0.000499999949211047 0.00343346763726596 0.999993980631901 100 0.00126135257630722 1 1 0 0 -29 2 1 -4.68134610461713 -0.0510410174348364 0 -0.000423076885108482 0.00343346763718202 0.999994016135063 100 0.000870820025284047 1 1 0 0 -30 2 1 -3.83019219231162 -0.0510410144947535 0 -0.000346153818502504 0.00343346763711208 0.999994045721033 100 0.000545376248851426 1 1 0 0 -31 2 1 -2.97903832506754 -0.0510410121427105 0 -0.000269230749848278 0.00343346763705629 0.999994069389808 100 0.000285021240642891 1 1 0 0 -32 2 1 -2.12788449287126 -0.0510410103786203 0 -0.000192307679600971 0.0034334676370141 0.99999408714139 100 8.97549917908691e-05 1 1 0 0 -33 2 1 -1.2767306857091 -0.0510410092025424 0 -0.000115384608215749 0.00343346763698635 0.999994098975778 100 -4.04225057764052e-05 1 1 0 0 -34 2 1 -0.425576893567425 -0.051041008614519 0 -3.84615361477773e-05 0.00343346763697225 0.999994104892972 100 -0.000105511252399992 1 1 0 0 -35 2 1 0.425576893567425 -0.051041008614519 0 3.84615361477773e-05 0.00343346763697225 0.999994104892972 100 -0.000105511252399992 1 1 0 0 -36 2 1 1.2767306857091 -0.0510410092025424 0 0.000115384608215749 0.00343346763698635 0.999994098975778 100 -4.04225057764052e-05 1 1 0 0 -37 2 1 2.12788449287126 -0.0510410103786203 0 0.000192307679600971 0.0034334676370141 0.99999408714139 100 8.97549917908691e-05 1 1 0 0 -38 2 1 2.97903832506754 -0.0510410121427105 0 0.000269230749848278 0.00343346763705629 0.999994069389808 100 0.000285021240642891 1 1 0 0 -39 2 1 3.83019219231162 -0.0510410144947535 0 0.000346153818502504 0.00343346763711208 0.999994045721033 100 0.000545376248851426 1 1 0 0 -40 2 1 4.68134610461713 -0.0510410174348364 0 0.000423076885108482 0.00343346763718202 0.999994016135063 100 0.000870820025284047 1 1 0 0 -41 2 1 5.53250007199774 -0.0510410209630425 0 0.000499999949211047 0.00343346763726596 0.999993980631901 100 0.00126135257630722 1 1 0 0 -42 2 1 -5.53250023219812 -0.0311649353066716 0 -0.000499999961045366 0.00267267983458408 0.999996303384438 100 0.00132139828815525 1 1 0 0 -43 2 1 -4.68134624017128 -0.0311649331670987 0 -0.000423076895122137 0.00267267983444108 0.99999633888752 100 0.00093086570768719 1 1 0 0 -44 2 1 -3.83019230321955 -0.0311649313842643 0 -0.000346153826695494 0.00267267983432162 0.999996368473422 100 0.000605421911245685 1 1 0 0 -45 2 1 -2.97903841132926 -0.031164929957916 0 -0.000269230756220604 0.0026726798342262 0.999996392142143 100 0.000345066883596701 1 1 0 0 -46 2 1 -2.12788455448677 -0.0311649288881135 0 -0.000192307684152632 0.00267267983415459 0.999996409893685 100 0.000149800621898066 1 1 0 0 -47 2 1 -1.27673072267841 -0.0311649281749369 0 -0.000115384610946746 0.00267267983410688 0.999996421728046 100 1.9623115235845e-05 1 1 0 0 -48 2 1 -0.425576905890526 -0.0311649278183368 0 -3.84615370581095e-05 0.00267267983408295 0.999996427645226 100 -4.5465635707842e-05 1 1 0 0 -49 2 1 0.425576905890526 -0.0311649278183368 0 3.84615370581095e-05 0.00267267983408295 0.999996427645226 100 -4.5465635707842e-05 1 1 0 0 -50 2 1 1.27673072267841 -0.0311649281749369 0 0.000115384610946746 0.00267267983410688 0.999996421728046 100 1.9623115235845e-05 1 1 0 0 -51 2 1 2.12788455448677 -0.0311649288881135 0 0.000192307684152633 0.00267267983415459 0.999996409893685 100 0.000149800621898066 1 1 0 0 -52 2 1 2.97903841132926 -0.031164929957916 0 0.000269230756220604 0.0026726798342262 0.999996392142143 100 0.000345066883596701 1 1 0 0 -53 2 1 3.83019230321955 -0.0311649313842643 0 0.000346153826695494 0.00267267983432162 0.999996368473422 100 0.000605421911245685 1 1 0 0 -54 2 1 4.68134624017128 -0.0311649331670987 0 0.000423076895122137 0.00267267983444108 0.99999633888752 100 0.00093086570768719 1 1 0 0 -55 2 1 5.53250023219812 -0.0311649353066716 0 0.000499999961045366 0.00267267983458408 0.999996303384438 100 0.00132139828815525 1 1 0 0 -56 2 1 -5.5325003468415 -0.0161453579272319 0 -0.000499999969921105 0.0019106378154426 0.999998049729682 100 0.00135541876113621 1 1 0 0 -57 2 1 -4.68134633717721 -0.0161453568329859 0 -0.000423076902632378 0.00191063781528439 0.999998085232703 100 0.000964886163501433 1 1 0 0 -58 2 1 -3.83019238258803 -0.0161453559210882 0 -0.000346153832840237 0.00191063781515205 0.999998114818555 100 0.000639442352394326 1 1 0 0 -59 2 1 -2.9790384730603 -0.0161453551916182 0 -0.000269230760999848 0.00191063781504638 0.999998138487236 100 0.000379087313149284 1 1 0 0 -60 2 1 -2.12788459858036 -0.0161453546444503 0 -0.000192307687566378 0.00191063781496736 0.999998156238747 100 0.000183821037921916 1 1 0 0 -61 2 1 -1.27673074913456 -0.0161453542797934 0 -0.000115384612994993 0.00191063781491413 0.999998168073087 100 5.36435271669689e-05 1 1 0 0 -62 2 1 -0.425576914709245 -0.0161453540973222 0 -3.84615377408587e-05 0.0019106378148879 0.999998173990258 100 -1.14452271873233e-05 1 1 0 0 -63 2 1 0.425576914709245 -0.0161453540973222 0 3.84615377408587e-05 0.0019106378148879 0.999998173990258 100 -1.14452271873233e-05 1 1 0 0 -64 2 1 1.27673074913456 -0.0161453542797934 0 0.000115384612994993 0.00191063781491413 0.999998168073087 100 5.36435271669689e-05 1 1 0 0 -65 2 1 2.12788459858036 -0.0161453546444503 0 0.000192307687566378 0.00191063781496736 0.999998156238747 100 0.000183821037921916 1 1 0 0 -66 2 1 2.9790384730603 -0.0161453551916182 0 0.000269230760999848 0.00191063781504638 0.999998138487236 100 0.000379087313149284 1 1 0 0 -67 2 1 3.83019238258803 -0.0161453559210882 0 0.000346153832840237 0.00191063781515205 0.999998114818555 100 0.000639442352394326 1 1 0 0 -68 2 1 4.68134633717721 -0.0161453568329859 0 0.000423076902632378 0.00191063781528439 0.999998085232703 100 0.000964886163501433 1 1 0 0 -69 2 1 5.5325003468415 -0.0161453579272319 0 0.000499999969921105 0.0019106378154426 0.999998049729682 100 0.00135541876113621 1 1 0 0 -70 2 1 -5.53250041960117 -0.0060060257764416 0 -0.000499999975838265 0.00114733466092054 0.999999216811293 100 0.00137076057922059 1 1 0 0 -71 2 1 -4.68134639874308 -0.00600602538160988 0 -0.000423076907639205 0.00114733466079128 0.999999252314273 100 0.000980227969762382 1 1 0 0 -72 2 1 -3.8301924329601 -0.00600602505245562 0 -0.000346153836936732 0.00114733466068415 0.999999281900091 100 0.000654784147968712 1 1 0 0 -73 2 1 -2.97903851223857 -0.00600602478925083 0 -0.000269230764186011 0.0011473346605983 0.999999305568745 100 0.000394429099856097 1 1 0 0 -74 2 1 -2.12788462656484 -0.00600602459173882 0 -0.000192307689842209 0.00114733466053377 0.999999323320235 100 0.000199162821672871 1 1 0 0 -75 2 1 -1.27673076592525 -0.00600602446017184 0 -0.000115384614360492 0.00114733466049061 0.999999335154563 100 6.89853086441872e-05 1 1 0 0 -76 2 1 -0.425576920306141 -0.006006024394281 0 -3.84615381960248e-05 0.0011473346604691 0.999999341071726 100 3.89655042454251e-06 1 1 0 0 -77 2 1 0.425576920306141 -0.006006024394281 0 3.84615381960248e-05 0.0011473346604691 0.999999341071726 100 3.89655042454251e-06 1 1 0 0 -78 2 1 1.27673076592525 -0.00600602446017184 0 0.000115384614360492 0.00114733466049061 0.999999335154563 100 6.89853086441872e-05 1 1 0 0 -79 2 1 2.12788462656484 -0.00600602459173882 0 0.000192307689842209 0.00114733466053377 0.999999323320235 100 0.000199162821672871 1 1 0 0 -80 2 1 2.97903851223857 -0.00600602478925083 0 0.000269230764186011 0.0011473346605983 0.999999305568745 100 0.000394429099856097 1 1 0 0 -81 2 1 3.8301924329601 -0.00600602505245562 0 0.000346153836936732 0.00114733466068415 0.999999281900091 100 0.000654784147968712 1 1 0 0 -82 2 1 4.68134639874308 -0.00600602538160988 0 0.000423076907639205 0.00114733466079128 0.999999252314273 100 0.000980227969762382 1 1 0 0 -83 2 1 5.53250041960117 -0.0060060257764416 0 0.000499999975838265 0.00114733466092054 0.999999216811293 100 0.00137076057922059 1 1 0 0 -84 2 1 -5.53250045418667 -0.000770914440220427 0 -0.000499999978796844 0.000382763385076368 0.999999801746086 100 0.0013748428193594 1 1 0 0 -85 2 1 -4.68134642800773 -0.000770914396260702 0 -0.000423076910142619 0.000382763385021939 0.999999837249046 100 0.000984310205012662 1 1 0 0 -86 2 1 -3.8301924569039 -0.000770914359652819 0 -0.00034615383898498 0.000382763384976725 0.999999866834846 100 0.000658866378557832 1 1 0 0 -87 2 1 -2.97903853086153 -0.000770914330340433 0 -0.000269230765779093 0.000382763384940393 0.999999890503487 100 0.00039851132783042 1 1 0 0 -88 2 1 -2.12788463986695 -0.000770914308304504 0 -0.000192307690980124 0.000382763384913193 0.999999908254967 100 0.000203245046122902 1 1 0 0 -89 2 1 -1.27673077390652 -0.000770914293606317 0 -0.000115384615043241 0.000382763384895068 0.999999920089288 100 7.30675288878047e-05 1 1 0 0 -90 2 1 -0.425576922966563 -0.00077091428634446 0 -3.84615384236079e-05 0.000382763384886076 0.999999926006448 100 7.97877305558359e-06 1 1 0 0 -91 2 1 0.425576922966563 -0.00077091428634446 0 3.84615384236079e-05 0.000382763384886076 0.999999926006448 100 7.97877305558359e-06 1 1 0 0 -92 2 1 1.27673077390652 -0.000770914293606317 0 0.000115384615043241 0.000382763384895068 0.999999920089288 100 7.30675288878047e-05 1 1 0 0 -93 2 1 2.12788463986695 -0.000770914308304504 0 0.000192307690980124 0.000382763384913193 0.999999908254967 100 0.000203245046122902 1 1 0 0 -94 2 1 2.97903853086153 -0.000770914330340433 0 0.000269230765779093 0.000382763384940393 0.999999890503487 100 0.00039851132783042 1 1 0 0 -95 2 1 3.8301924569039 -0.000770914359652819 0 0.00034615383898498 0.000382763384976725 0.999999866834846 100 0.000658866378557832 1 1 0 0 -96 2 1 4.68134642800773 -0.000770914396260702 0 0.000423076910142619 0.000382763385021939 0.999999837249046 100 0.000984310205012662 1 1 0 0 -97 2 1 5.53250045418667 -0.000770914440220427 0 0.000499999978796844 0.000382763385076368 0.999999801746086 100 0.0013748428193594 1 1 0 0 -98 2 1 -5.53250045434432 -0.000464241395064013 0 -0.000499999978796844 -0.000383083065969181 0.999999801623673 100 0.00137515811491085 1 1 0 0 -99 2 1 -4.68134642814112 -0.000464241351015249 0 -0.000423076910142619 -0.000383083065903594 0.999999837126633 100 0.000984625501700975 1 1 0 0 -100 2 1 -3.83019245701304 -0.000464241314197533 0 -0.00034615383898498 -0.000383083065848361 0.999999866712433 100 0.000659181674222964 1 1 0 0 -101 2 1 -2.97903853094642 -0.000464241284836853 0 -0.000269230765779093 -0.000383083065804563 0.999999890381074 100 0.000398826623154491 1 1 0 0 -102 2 1 -2.12788463992759 -0.000464241262709164 0 -0.000192307690980124 -0.000383083065771589 0.999999908132554 100 0.000203560344175457 1 1 0 0 -103 2 1 -1.2767307739429 -0.000464241248063213 0 -0.000115384615043241 -0.000383083065749606 0.999999919966874 100 7.33828269403602e-05 1 1 0 0 -104 2 1 -0.42557692297869 -0.00046424124077632 0 -3.84615384236079e-05 -0.00038308306573881 0.999999925884035 100 8.29406769753405e-06 1 1 0 0 -105 2 1 0.42557692297869 -0.00046424124077632 0 3.84615384236079e-05 -0.00038308306573881 0.999999925884035 100 8.29406769753405e-06 1 1 0 0 -106 2 1 1.2767307739429 -0.000464241248063213 0 0.000115384615043241 -0.000383083065749606 0.999999919966874 100 7.33828269403602e-05 1 1 0 0 -107 2 1 2.12788463992759 -0.000464241262709164 0 0.000192307690980124 -0.000383083065771589 0.999999908132554 100 0.000203560344175457 1 1 0 0 -108 2 1 2.97903853094642 -0.000464241284836853 0 0.000269230765779093 -0.000383083065804563 0.999999890381074 100 0.000398826623154491 1 1 0 0 -109 2 1 3.83019245701304 -0.000464241314197533 0 0.00034615383898498 -0.000383083065848361 0.999999866712433 100 0.000659181674222964 1 1 0 0 -110 2 1 4.68134642814112 -0.000464241351015249 0 0.000423076910142619 -0.000383083065903594 0.999999837126633 100 0.000984625501700975 1 1 0 0 -111 2 1 5.53250045434432 -0.000464241395064013 0 0.000499999978796844 -0.000383083065969181 0.999999801623673 100 0.00137515811491085 1 1 0 0 -112 2 1 -5.53250042385774 -0.00511046932053305 0 -0.000499999975838265 -0.00115021181495586 0.999999213506093 100 0.00137927371872593 1 1 0 0 -113 2 1 -4.68134640234479 -0.00511046892265155 0 -0.000423076907639205 -0.00115021181472363 0.999999249009074 100 0.000988741109267721 1 1 0 0 -114 2 1 -3.83019243590695 -0.00511046859109188 0 -0.000346153836936732 -0.00115021181453004 0.999999278594891 100 0.000663297286337183 1 1 0 0 -115 2 1 -2.97903851453057 -0.00511046832588269 0 -0.000269230764186011 -0.00115021181437511 0.999999302263545 100 0.000402942238110882 1 1 0 0 -116 2 1 -2.12788462820198 -0.00511046812691429 0 -0.000192307689842209 -0.00115021181425912 0.999999320015036 100 0.000207675960155029 1 1 0 0 -117 2 1 -1.27673076690754 -0.00511046799435189 0 -0.000115384614360492 -0.00115021181418185 0.999999331849363 100 7.74984447389215e-05 1 1 0 0 -118 2 1 -0.425576920633569 -0.00511046792812486 0 -3.84615381960248e-05 -0.00115021181414346 0.999999337766527 100 1.24096875424584e-05 1 1 0 0 -119 2 1 0.425576920633569 -0.00511046792812486 0 3.84615381960248e-05 -0.00115021181414346 0.999999337766527 100 1.24096875424584e-05 1 1 0 0 -120 2 1 1.27673076690754 -0.00511046799435189 0 0.000115384614360492 -0.00115021181418185 0.999999331849363 100 7.74984447389215e-05 1 1 0 0 -121 2 1 2.12788462820198 -0.00511046812691429 0 0.000192307689842209 -0.00115021181425912 0.999999320015036 100 0.000207675960155029 1 1 0 0 -122 2 1 2.97903851453057 -0.00511046832588269 0 0.000269230764186011 -0.00115021181437511 0.999999302263545 100 0.000402942238110882 1 1 0 0 -123 2 1 3.83019243590695 -0.00511046859109188 0 0.000346153836936732 -0.00115021181453004 0.999999278594891 100 0.000663297286337183 1 1 0 0 -124 2 1 4.68134640234479 -0.00511046892265155 0 0.000423076907639205 -0.00115021181472363 0.999999249009074 100 0.000988741109267721 1 1 0 0 -125 2 1 5.53250042385774 -0.00511046932053305 0 0.000499999975838265 -0.00115021181495586 0.999999213506093 100 0.00137927371872593 1 1 0 0 -126 2 1 -5.53250036654841 -0.0147343094711112 0 -0.000499999969921105 -0.00191863005442808 0.999998034427441 100 0.00139483258635664 1 1 0 0 -127 2 1 -4.68134635385228 -0.0147343083632423 0 -0.000423076902632378 -0.00191863005398288 0.999998069930463 100 0.00100429998281015 1 1 0 0 -128 2 1 -3.83019239623127 -0.014734307440005 0 -0.000346153832840237 -0.00191863005361231 0.999998099516315 100 0.000678856164199715 1 1 0 0 -129 2 1 -2.97903848367171 -0.0147343067014014 0 -0.000269230760999848 -0.00191863005331569 0.999998123184997 100 0.000418501122794623 1 1 0 0 -130 2 1 -2.12788460615994 -0.0147343061475014 0 -0.000192307687566378 -0.00191863005309301 0.999998140936508 100 0.000223234847794629 1 1 0 0 -131 2 1 -1.27673075368231 -0.0147343057781588 0 -0.000115384612994993 -0.00191863005294465 0.999998152770849 100 9.3057333174329e-05 1 1 0 0 -132 2 1 -0.42557691622516 -0.0147343055935059 0 -3.84615377408587e-05 -0.00191863005287038 0.99999815868802 100 2.79685791610973e-05 1 1 0 0 -133 2 1 0.42557691622516 -0.0147343055935059 0 3.84615377408587e-05 -0.00191863005287038 0.99999815868802 100 2.79685791610973e-05 1 1 0 0 -134 2 1 1.27673075368231 -0.0147343057781588 0 0.000115384612994993 -0.00191863005294465 0.999998152770849 100 9.3057333174329e-05 1 1 0 0 -135 2 1 2.12788460615994 -0.0147343061475014 0 0.000192307687566378 -0.00191863005309301 0.999998140936508 100 0.000223234847794629 1 1 0 0 -136 2 1 2.97903848367171 -0.0147343067014014 0 0.000269230760999848 -0.00191863005331569 0.999998123184997 100 0.000418501122794623 1 1 0 0 -137 2 1 3.83019239623127 -0.014734307440005 0 0.000346153832840237 -0.00191863005361231 0.999998099516315 100 0.000678856164199715 1 1 0 0 -138 2 1 4.68134635385228 -0.0147343083632423 0 0.000423076902632378 -0.00191863005398288 0.999998069930463 100 0.00100429998281015 1 1 0 0 -139 2 1 5.53250036654841 -0.0147343094711112 0 0.000499999969921105 -0.00191863005442808 0.999998034427441 100 0.00139483258635664 1 1 0 0 -140 2 1 -5.53250028627621 -0.0293607251074723 0 -0.000499999961045366 -0.00268834504769486 0.999996261393483 100 0.00142955447074655 1 1 0 0 -141 2 1 -4.68134628592966 -0.0293607229305368 0 -0.000423076895122137 -0.0026883450469895 0.999996296896568 100 0.00103902187731819 1 1 0 0 -142 2 1 -3.83019234065822 -0.029360721116408 0 -0.000346153826695494 -0.00268834504640192 0.999996326482472 100 0.000713578068712195 1 1 0 0 -143 2 1 -2.97903844044822 -0.0293607196650902 0 -0.000269230756220604 -0.00268834504593157 0.999996350151196 100 0.000453223030376648 1 1 0 0 -144 2 1 -2.12788457528602 -0.0293607185766573 0 -0.000192307684152632 -0.00268834504557908 0.999996367902739 100 0.000257956760492561 1 1 0 0 -145 2 1 -1.27673073515796 -0.0293607178510529 0 -0.000115384610946746 -0.00268834504534407 0.999996379737101 100 0.000127779249964988 1 1 0 0 -146 2 1 -0.425576910050378 -0.0293607174881134 0 -3.84615370581095e-05 -0.00268834504522647 0.999996385654282 100 6.26904949285745e-05 1 1 0 0 -147 2 1 0.425576910050378 -0.0293607174881134 0 3.84615370581095e-05 -0.00268834504522647 0.999996385654282 100 6.26904949285745e-05 1 1 0 0 -148 2 1 1.27673073515796 -0.0293607178510529 0 0.000115384610946746 -0.00268834504534407 0.999996379737101 100 0.000127779249964988 1 1 0 0 -149 2 1 2.12788457528602 -0.0293607185766573 0 0.000192307684152633 -0.00268834504557908 0.999996367902739 100 0.000257956760492561 1 1 0 0 -150 2 1 2.97903844044822 -0.0293607196650902 0 0.000269230756220604 -0.00268834504593157 0.999996350151196 100 0.000453223030376648 1 1 0 0 -151 2 1 3.83019234065822 -0.029360721116408 0 0.000346153826695494 -0.00268834504640192 0.999996326482472 100 0.000713578068712195 1 1 0 0 -152 2 1 4.68134628592966 -0.0293607229305368 0 0.000423076895122137 -0.0026883450469895 0.999996296896568 100 0.00103902187731819 1 1 0 0 -153 2 1 5.53250028627621 -0.0293607251074723 0 0.000499999961045366 -0.00268834504769486 0.999996261393483 100 0.00142955447074655 1 1 0 0 -154 2 1 -5.53250018693998 -0.0490149349890556 0 -0.000499999949211047 -0.00345936412980533 0.999993891381276 100 0.00149123706739829 1 1 0 0 -155 2 1 -4.68134620187593 -0.0490149313813615 0 -0.000423076885108482 -0.00345936412879236 0.999993926884445 100 0.00110070448351962 1 1 0 0 -156 2 1 -3.83019227188699 -0.0490149283750205 0 -0.000346153818502504 -0.00345936412794839 0.99999395647042 100 0.00077526068048428 1 1 0 0 -157 2 1 -2.9790383869595 -0.0490149259698023 0 -0.000269230749848278 -0.00345936412727268 0.9999939801392 100 0.000514905650788933 1 1 0 0 -158 2 1 -2.12788453707979 -0.0490149241660247 0 -0.000192307679600971 -0.00345936412676645 0.999993997890785 100 0.000319639384429138 1 1 0 0 -159 2 1 -1.27673071223422 -0.0490149229634138 0 -0.000115384608215749 -0.00345936412642867 0.999994009725175 100 0.000189461875947927 1 1 0 0 -160 2 1 -0.425576902409131 -0.0490149223622134 0 -3.84615361477773e-05 -0.0034593641262598 0.99999401564237 100 0.000124373125231614 1 1 0 0 -161 2 1 0.425576902409131 -0.0490149223622134 0 3.84615361477773e-05 -0.0034593641262598 0.99999401564237 100 0.000124373125231614 1 1 0 0 -162 2 1 1.27673071223422 -0.0490149229634138 0 0.000115384608215749 -0.00345936412642867 0.999994009725175 100 0.000189461875947927 1 1 0 0 -163 2 1 2.12788453707979 -0.0490149241660247 0 0.000192307679600971 -0.00345936412676645 0.999993997890785 100 0.000319639384429138 1 1 0 0 -164 2 1 2.9790383869595 -0.0490149259698023 0 0.000269230749848278 -0.00345936412727268 0.9999939801392 100 0.000514905650788933 1 1 0 0 -165 2 1 3.83019227188699 -0.0490149283750205 0 0.000346153818502504 -0.00345936412794839 0.99999395647042 100 0.00077526068048428 1 1 0 0 -166 2 1 4.68134620187593 -0.0490149313813615 0 0.000423076885108482 -0.00345936412879236 0.999993926884445 100 0.00110070448351962 1 1 0 0 -167 2 1 5.53250018693998 -0.0490149349890556 0 0.000499999949211047 -0.00345936412980533 0.999993891381276 100 0.00149123706739829 1 1 0 0 -168 2 1 -5.5325000724781 -0.0737224169291375 0 -0.000499999934418149 -0.00423169470854645 0.999990921338768 100 0.00158775714294279 1 1 0 0 -169 2 1 -4.68134610502358 -0.0737224115262025 0 -0.000423076872591414 -0.00423169470717732 0.999990956842043 100 0.00119722456747695 1 1 0 0 -170 2 1 -3.83019219264417 -0.0737224070237774 0 -0.000346153808261266 -0.00423169470603624 0.999990986428106 100 0.00087178077342287 1 1 0 0 -171 2 1 -2.97903832532619 -0.0737224034218604 0 -0.000269230741882871 -0.00423169470512372 0.999991010096956 100 0.000611425750321359 1 1 0 0 -172 2 1 -2.127884493056 -0.0737224007204249 0 -0.000192307673911395 -0.00423169470443877 0.999991027848594 100 0.000416159486576362 1 1 0 0 -173 2 1 -1.27673068581995 -0.0737223989194673 0 -0.000115384604802003 -0.0042316947039831 0.999991039683019 100 0.000285981983779493 1 1 0 0 -174 2 1 -0.425576893604374 -0.0737223980189654 0 -3.8461535009862e-05 -0.00423169470375453 0.999991045600232 100 0.000220893232835806 1 1 0 0 -175 2 1 0.425576893604374 -0.0737223980189654 0 3.8461535009862e-05 -0.00423169470375453 0.999991045600232 100 0.000220893232835806 1 1 0 0 -176 2 1 1.27673068581995 -0.0737223989194673 0 0.000115384604802003 -0.0042316947039831 0.999991039683019 100 0.000285981983779493 1 1 0 0 -177 2 1 2.12788449305601 -0.0737224007204249 0 0.000192307673911395 -0.00423169470443877 0.999991027848594 100 0.000416159486576362 1 1 0 0 -178 2 1 2.97903832532619 -0.0737224034218604 0 0.000269230741882871 -0.00423169470512372 0.999991010096956 100 0.000611425750321359 1 1 0 0 -179 2 1 3.83019219264417 -0.0737224070237774 0 0.000346153808261266 -0.00423169470603624 0.999990986428106 100 0.00087178077342287 1 1 0 0 -180 2 1 4.68134610502358 -0.0737224115262025 0 0.000423076872591414 -0.00423169470717732 0.999990956842043 100 0.00119722456747695 1 1 0 0 -181 2 1 5.5325000724781 -0.0737224169291375 0 0.000499999934418149 -0.00423169470854645 0.999990921338768 100 0.00158775714294279 1 1 0 0 -182 2 1 -5.53249994686909 -0.103508911413697 0 -0.000499999916666671 -0.00500534426544874 0.9999873481844 100 0.00172707170213471 1 1 0 0 -183 2 1 -4.68134599873904 -0.10350890384825 0 -0.000423076857570933 -0.0050053442636748 0.999987383687802 100 0.00133653913599119 1 1 0 0 -184 2 1 -3.83019210568409 -0.10350889754379 0 -0.000346153795971782 -0.0050053442621964 0.99998741327397 100 0.00101109534762145 1 1 0 0 -185 2 1 -2.97903825769058 -0.103508892500116 0 -0.000269230732324383 -0.00500534426101357 0.999987436942906 100 0.000750740329294786 1 1 0 0 -186 2 1 -2.12788444474486 -0.1035088887174 0 -0.000192307667083903 -0.00500534426012655 0.999987454694607 100 0.000555474068505646 1 1 0 0 -187 2 1 -1.27673065683326 -0.103508886195575 0 -0.000115384600705508 -0.00500534425953567 0.999987466529075 100 0.000425296568664635 1 1 0 0 -188 2 1 -0.425576883942145 -0.103508884934715 0 -3.84615336443636e-05 -0.00500534425923979 0.999987472446309 100 0.00036020781908519 1 1 0 0 -189 2 1 0.425576883942145 -0.103508884934715 0 3.84615336443636e-05 -0.00500534425923979 0.999987472446309 100 0.00036020781908519 1 1 0 0 -190 2 1 1.27673065683326 -0.103508886195575 0 0.000115384600705508 -0.00500534425953567 0.999987466529075 100 0.000425296568664635 1 1 0 0 -191 2 1 2.12788444474486 -0.1035088887174 0 0.000192307667083903 -0.00500534426012655 0.999987454694607 100 0.000555474068505646 1 1 0 0 -192 2 1 2.97903825769058 -0.103508892500116 0 0.000269230732324383 -0.00500534426101357 0.999987436942906 100 0.000750740329294786 1 1 0 0 -193 2 1 3.83019210568409 -0.10350889754379 0 0.000346153795971782 -0.0050053442621964 0.99998741327397 100 0.00101109534762145 1 1 0 0 -194 2 1 4.68134599873904 -0.10350890384825 0 0.000423076857570933 -0.0050053442636748 0.999987383687802 100 0.00133653913599119 1 1 0 0 -195 2 1 5.53249994686909 -0.103508911413697 0 0.000499999916666671 -0.00500534426544874 0.9999873481844 100 0.00172707170213471 1 1 0 0 -196 2 1 -5.53249960041105 -0.105268943332393 0 -0.000499999916666671 0.00495130793916307 0.999987617198221 100 0.00103415551279795 1 1 0 0 -197 2 1 -4.68134570558228 -0.105268936006727 0 -0.000423076857570933 0.00495130793932835 0.999987652701603 100 0.000643623044538799 1 1 0 0 -198 2 1 -3.83019186582858 -0.105268929902011 0 -0.000346153795971782 0.00495130793946597 0.999987682287756 100 0.00031817933813727 1 1 0 0 -199 2 1 -2.97903807113631 -0.105268925018327 0 -0.000269230732324383 0.00495130793957607 0.999987705956678 100 5.78243840436699e-05 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -5.53249960041105 -0.105268943332393 0 -0.000499999916666671 0.00495130793916307 0.999987617198221 100 0.00103415551279795 1 1 0 0 +1 2 1 -4.68134570558228 -0.105268936006727 0 -0.000423076857570933 0.00495130793932835 0.999987652701603 100 0.000643623044538799 1 1 0 0 +2 2 1 -3.83019186582858 -0.105268929902011 0 -0.000346153795971782 0.00495130793946597 0.999987682287756 100 0.00031817933813727 1 1 0 0 +3 2 1 -2.97903807113631 -0.105268925018327 0 -0.000269230732324383 0.00495130793957607 0.999987705956678 100 5.78243840436699e-05 1 1 0 0 +4 2 1 -2.12788431149182 -0.105268921355521 0 -0.000192307667083903 0.00495130793965892 0.99998772370837 100 -0.000137441822857909 1 1 0 0 +5 2 1 -1.27673057688144 -0.105268918913546 0 -0.000115384600705508 0.00495130793971349 0.999987735542831 100 -0.000267619293254029 1 1 0 0 +6 2 1 -0.425576857291539 -0.105268917692666 0 -3.84615336443636e-05 0.00495130793974133 0.999987741460062 100 -0.000332708026689943 1 1 0 0 +7 2 1 0.425576857291539 -0.105268917692666 0 3.84615336443636e-05 0.00495130793974133 0.999987741460062 100 -0.000332708026689943 1 1 0 0 +8 2 1 1.27673057688144 -0.105268918913546 0 0.000115384600705508 0.00495130793971349 0.999987735542831 100 -0.000267619293254029 1 1 0 0 +9 2 1 2.12788431149182 -0.105268921355521 0 0.000192307667083903 0.00495130793965892 0.99998772370837 100 -0.000137441822857909 1 1 0 0 +10 2 1 2.97903807113631 -0.105268925018327 0 0.000269230732324383 0.00495130793957607 0.999987705956678 100 5.78243840436699e-05 1 1 0 0 +11 2 1 3.83019186582858 -0.105268929902011 0 0.000346153795971782 0.00495130793946597 0.999987682287756 100 0.00031817933813727 1 1 0 0 +12 2 1 4.68134570558228 -0.105268936006727 0 0.000423076857570933 0.00495130793932835 0.999987652701603 100 0.000643623044538799 1 1 0 0 +13 2 1 5.53249960041105 -0.105268943332393 0 0.000499999916666671 0.00495130793916307 0.999987617198221 100 0.00103415551279795 1 1 0 0 +14 2 1 -5.53249986260282 -0.0757501133801464 0 -0.000499999934418149 0.00419300807627904 0.999991084301924 100 0.00116800652608617 1 1 0 0 +15 2 1 -4.68134592743683 -0.0757501081224827 0 -0.000423076872591414 0.0041930080762978 0.999991119805187 100 0.000777474012238599 1 1 0 0 +16 2 1 -3.83019204734593 -0.0757501037411465 0 -0.000346153808261266 0.00419300807631379 0.99999114939124 100 0.00045203026809304 1 1 0 0 +17 2 1 -2.97903821231646 -0.075750100235993 0 -0.000269230741882871 0.00419300807632642 0.999991173060082 100 0.000191675282053438 1 1 0 0 +18 2 1 -2.12788441233477 -0.0757500976071972 0 -0.000192307673911395 0.00419300807633624 0.999991190811714 100 -3.59094883606303e-06 1 1 0 0 +19 2 1 -1.27673063738721 -0.075750095854648 0 -0.000115384604802003 0.00419300807634215 0.999991202646136 100 -0.000133768432760917 1 1 0 0 +20 2 1 -0.425576877460129 -0.0757500949782752 0 -3.8461535009862e-05 0.00419300807634562 0.999991208563346 100 -0.000198857172790667 1 1 0 0 +21 2 1 0.425576877460129 -0.0757500949782752 0 3.8461535009862e-05 0.00419300807634562 0.999991208563346 100 -0.000198857172790667 1 1 0 0 +22 2 1 1.27673063738721 -0.075750095854648 0 0.000115384604802003 0.00419300807634215 0.999991202646136 100 -0.000133768432760917 1 1 0 0 +23 2 1 2.12788441233478 -0.0757500976071972 0 0.000192307673911395 0.00419300807633624 0.999991190811714 100 -3.59094883606303e-06 1 1 0 0 +24 2 1 2.97903821231646 -0.075750100235993 0 0.000269230741882871 0.00419300807632642 0.999991173060082 100 0.000191675282053438 1 1 0 0 +25 2 1 3.83019204734593 -0.0757501037411465 0 0.000346153808261266 0.00419300807631379 0.99999114939124 100 0.00045203026809304 1 1 0 0 +26 2 1 4.68134592743683 -0.0757501081224827 0 0.000423076872591414 0.0041930080762978 0.999991119805187 100 0.000777474012238599 1 1 0 0 +27 2 1 5.53249986260282 -0.0757501133801464 0 0.000499999934418149 0.00419300807627904 0.999991084301924 100 0.00116800652608617 1 1 0 0 +28 2 1 -5.53250007199774 -0.0510410209630425 0 -0.000499999949211047 0.00343346763726596 0.999993980631901 100 0.00126135257630722 1 1 0 0 +29 2 1 -4.68134610461713 -0.0510410174348364 0 -0.000423076885108482 0.00343346763718202 0.999994016135063 100 0.000870820025284047 1 1 0 0 +30 2 1 -3.83019219231162 -0.0510410144947535 0 -0.000346153818502504 0.00343346763711208 0.999994045721033 100 0.000545376248851426 1 1 0 0 +31 2 1 -2.97903832506754 -0.0510410121427105 0 -0.000269230749848278 0.00343346763705629 0.999994069389808 100 0.000285021240642891 1 1 0 0 +32 2 1 -2.12788449287126 -0.0510410103786203 0 -0.000192307679600971 0.0034334676370141 0.99999408714139 100 8.97549917908691e-05 1 1 0 0 +33 2 1 -1.2767306857091 -0.0510410092025424 0 -0.000115384608215749 0.00343346763698635 0.999994098975778 100 -4.04225057764052e-05 1 1 0 0 +34 2 1 -0.425576893567425 -0.051041008614519 0 -3.84615361477773e-05 0.00343346763697225 0.999994104892972 100 -0.000105511252399992 1 1 0 0 +35 2 1 0.425576893567425 -0.051041008614519 0 3.84615361477773e-05 0.00343346763697225 0.999994104892972 100 -0.000105511252399992 1 1 0 0 +36 2 1 1.2767306857091 -0.0510410092025424 0 0.000115384608215749 0.00343346763698635 0.999994098975778 100 -4.04225057764052e-05 1 1 0 0 +37 2 1 2.12788449287126 -0.0510410103786203 0 0.000192307679600971 0.0034334676370141 0.99999408714139 100 8.97549917908691e-05 1 1 0 0 +38 2 1 2.97903832506754 -0.0510410121427105 0 0.000269230749848278 0.00343346763705629 0.999994069389808 100 0.000285021240642891 1 1 0 0 +39 2 1 3.83019219231162 -0.0510410144947535 0 0.000346153818502504 0.00343346763711208 0.999994045721033 100 0.000545376248851426 1 1 0 0 +40 2 1 4.68134610461713 -0.0510410174348364 0 0.000423076885108482 0.00343346763718202 0.999994016135063 100 0.000870820025284047 1 1 0 0 +41 2 1 5.53250007199774 -0.0510410209630425 0 0.000499999949211047 0.00343346763726596 0.999993980631901 100 0.00126135257630722 1 1 0 0 +42 2 1 -5.53250023219812 -0.0311649353066716 0 -0.000499999961045366 0.00267267983458408 0.999996303384438 100 0.00132139828815525 1 1 0 0 +43 2 1 -4.68134624017128 -0.0311649331670987 0 -0.000423076895122137 0.00267267983444108 0.99999633888752 100 0.00093086570768719 1 1 0 0 +44 2 1 -3.83019230321955 -0.0311649313842643 0 -0.000346153826695494 0.00267267983432162 0.999996368473422 100 0.000605421911245685 1 1 0 0 +45 2 1 -2.97903841132926 -0.031164929957916 0 -0.000269230756220604 0.0026726798342262 0.999996392142143 100 0.000345066883596701 1 1 0 0 +46 2 1 -2.12788455448677 -0.0311649288881135 0 -0.000192307684152632 0.00267267983415459 0.999996409893685 100 0.000149800621898066 1 1 0 0 +47 2 1 -1.27673072267841 -0.0311649281749369 0 -0.000115384610946746 0.00267267983410688 0.999996421728046 100 1.9623115235845e-05 1 1 0 0 +48 2 1 -0.425576905890526 -0.0311649278183368 0 -3.84615370581095e-05 0.00267267983408295 0.999996427645226 100 -4.5465635707842e-05 1 1 0 0 +49 2 1 0.425576905890526 -0.0311649278183368 0 3.84615370581095e-05 0.00267267983408295 0.999996427645226 100 -4.5465635707842e-05 1 1 0 0 +50 2 1 1.27673072267841 -0.0311649281749369 0 0.000115384610946746 0.00267267983410688 0.999996421728046 100 1.9623115235845e-05 1 1 0 0 +51 2 1 2.12788455448677 -0.0311649288881135 0 0.000192307684152633 0.00267267983415459 0.999996409893685 100 0.000149800621898066 1 1 0 0 +52 2 1 2.97903841132926 -0.031164929957916 0 0.000269230756220604 0.0026726798342262 0.999996392142143 100 0.000345066883596701 1 1 0 0 +53 2 1 3.83019230321955 -0.0311649313842643 0 0.000346153826695494 0.00267267983432162 0.999996368473422 100 0.000605421911245685 1 1 0 0 +54 2 1 4.68134624017128 -0.0311649331670987 0 0.000423076895122137 0.00267267983444108 0.99999633888752 100 0.00093086570768719 1 1 0 0 +55 2 1 5.53250023219812 -0.0311649353066716 0 0.000499999961045366 0.00267267983458408 0.999996303384438 100 0.00132139828815525 1 1 0 0 +56 2 1 -5.5325003468415 -0.0161453579272319 0 -0.000499999969921105 0.0019106378154426 0.999998049729682 100 0.00135541876113621 1 1 0 0 +57 2 1 -4.68134633717721 -0.0161453568329859 0 -0.000423076902632378 0.00191063781528439 0.999998085232703 100 0.000964886163501433 1 1 0 0 +58 2 1 -3.83019238258803 -0.0161453559210882 0 -0.000346153832840237 0.00191063781515205 0.999998114818555 100 0.000639442352394326 1 1 0 0 +59 2 1 -2.9790384730603 -0.0161453551916182 0 -0.000269230760999848 0.00191063781504638 0.999998138487236 100 0.000379087313149284 1 1 0 0 +60 2 1 -2.12788459858036 -0.0161453546444503 0 -0.000192307687566378 0.00191063781496736 0.999998156238747 100 0.000183821037921916 1 1 0 0 +61 2 1 -1.27673074913456 -0.0161453542797934 0 -0.000115384612994993 0.00191063781491413 0.999998168073087 100 5.36435271669689e-05 1 1 0 0 +62 2 1 -0.425576914709245 -0.0161453540973222 0 -3.84615377408587e-05 0.0019106378148879 0.999998173990258 100 -1.14452271873233e-05 1 1 0 0 +63 2 1 0.425576914709245 -0.0161453540973222 0 3.84615377408587e-05 0.0019106378148879 0.999998173990258 100 -1.14452271873233e-05 1 1 0 0 +64 2 1 1.27673074913456 -0.0161453542797934 0 0.000115384612994993 0.00191063781491413 0.999998168073087 100 5.36435271669689e-05 1 1 0 0 +65 2 1 2.12788459858036 -0.0161453546444503 0 0.000192307687566378 0.00191063781496736 0.999998156238747 100 0.000183821037921916 1 1 0 0 +66 2 1 2.9790384730603 -0.0161453551916182 0 0.000269230760999848 0.00191063781504638 0.999998138487236 100 0.000379087313149284 1 1 0 0 +67 2 1 3.83019238258803 -0.0161453559210882 0 0.000346153832840237 0.00191063781515205 0.999998114818555 100 0.000639442352394326 1 1 0 0 +68 2 1 4.68134633717721 -0.0161453568329859 0 0.000423076902632378 0.00191063781528439 0.999998085232703 100 0.000964886163501433 1 1 0 0 +69 2 1 5.5325003468415 -0.0161453579272319 0 0.000499999969921105 0.0019106378154426 0.999998049729682 100 0.00135541876113621 1 1 0 0 +70 2 1 -5.53250041960117 -0.0060060257764416 0 -0.000499999975838265 0.00114733466092054 0.999999216811293 100 0.00137076057922059 1 1 0 0 +71 2 1 -4.68134639874308 -0.00600602538160988 0 -0.000423076907639205 0.00114733466079128 0.999999252314273 100 0.000980227969762382 1 1 0 0 +72 2 1 -3.8301924329601 -0.00600602505245562 0 -0.000346153836936732 0.00114733466068415 0.999999281900091 100 0.000654784147968712 1 1 0 0 +73 2 1 -2.97903851223857 -0.00600602478925083 0 -0.000269230764186011 0.0011473346605983 0.999999305568745 100 0.000394429099856097 1 1 0 0 +74 2 1 -2.12788462656484 -0.00600602459173882 0 -0.000192307689842209 0.00114733466053377 0.999999323320235 100 0.000199162821672871 1 1 0 0 +75 2 1 -1.27673076592525 -0.00600602446017184 0 -0.000115384614360492 0.00114733466049061 0.999999335154563 100 6.89853086441872e-05 1 1 0 0 +76 2 1 -0.425576920306141 -0.006006024394281 0 -3.84615381960248e-05 0.0011473346604691 0.999999341071726 100 3.89655042454251e-06 1 1 0 0 +77 2 1 0.425576920306141 -0.006006024394281 0 3.84615381960248e-05 0.0011473346604691 0.999999341071726 100 3.89655042454251e-06 1 1 0 0 +78 2 1 1.27673076592525 -0.00600602446017184 0 0.000115384614360492 0.00114733466049061 0.999999335154563 100 6.89853086441872e-05 1 1 0 0 +79 2 1 2.12788462656484 -0.00600602459173882 0 0.000192307689842209 0.00114733466053377 0.999999323320235 100 0.000199162821672871 1 1 0 0 +80 2 1 2.97903851223857 -0.00600602478925083 0 0.000269230764186011 0.0011473346605983 0.999999305568745 100 0.000394429099856097 1 1 0 0 +81 2 1 3.8301924329601 -0.00600602505245562 0 0.000346153836936732 0.00114733466068415 0.999999281900091 100 0.000654784147968712 1 1 0 0 +82 2 1 4.68134639874308 -0.00600602538160988 0 0.000423076907639205 0.00114733466079128 0.999999252314273 100 0.000980227969762382 1 1 0 0 +83 2 1 5.53250041960117 -0.0060060257764416 0 0.000499999975838265 0.00114733466092054 0.999999216811293 100 0.00137076057922059 1 1 0 0 +84 2 1 -5.53250045418667 -0.000770914440220427 0 -0.000499999978796844 0.000382763385076368 0.999999801746086 100 0.0013748428193594 1 1 0 0 +85 2 1 -4.68134642800773 -0.000770914396260702 0 -0.000423076910142619 0.000382763385021939 0.999999837249046 100 0.000984310205012662 1 1 0 0 +86 2 1 -3.8301924569039 -0.000770914359652819 0 -0.00034615383898498 0.000382763384976725 0.999999866834846 100 0.000658866378557832 1 1 0 0 +87 2 1 -2.97903853086153 -0.000770914330340433 0 -0.000269230765779093 0.000382763384940393 0.999999890503487 100 0.00039851132783042 1 1 0 0 +88 2 1 -2.12788463986695 -0.000770914308304504 0 -0.000192307690980124 0.000382763384913193 0.999999908254967 100 0.000203245046122902 1 1 0 0 +89 2 1 -1.27673077390652 -0.000770914293606317 0 -0.000115384615043241 0.000382763384895068 0.999999920089288 100 7.30675288878047e-05 1 1 0 0 +90 2 1 -0.425576922966563 -0.00077091428634446 0 -3.84615384236079e-05 0.000382763384886076 0.999999926006448 100 7.97877305558359e-06 1 1 0 0 +91 2 1 0.425576922966563 -0.00077091428634446 0 3.84615384236079e-05 0.000382763384886076 0.999999926006448 100 7.97877305558359e-06 1 1 0 0 +92 2 1 1.27673077390652 -0.000770914293606317 0 0.000115384615043241 0.000382763384895068 0.999999920089288 100 7.30675288878047e-05 1 1 0 0 +93 2 1 2.12788463986695 -0.000770914308304504 0 0.000192307690980124 0.000382763384913193 0.999999908254967 100 0.000203245046122902 1 1 0 0 +94 2 1 2.97903853086153 -0.000770914330340433 0 0.000269230765779093 0.000382763384940393 0.999999890503487 100 0.00039851132783042 1 1 0 0 +95 2 1 3.8301924569039 -0.000770914359652819 0 0.00034615383898498 0.000382763384976725 0.999999866834846 100 0.000658866378557832 1 1 0 0 +96 2 1 4.68134642800773 -0.000770914396260702 0 0.000423076910142619 0.000382763385021939 0.999999837249046 100 0.000984310205012662 1 1 0 0 +97 2 1 5.53250045418667 -0.000770914440220427 0 0.000499999978796844 0.000382763385076368 0.999999801746086 100 0.0013748428193594 1 1 0 0 +98 2 1 -5.53250045434432 -0.000464241395064013 0 -0.000499999978796844 -0.000383083065969181 0.999999801623673 100 0.00137515811491085 1 1 0 0 +99 2 1 -4.68134642814112 -0.000464241351015249 0 -0.000423076910142619 -0.000383083065903594 0.999999837126633 100 0.000984625501700975 1 1 0 0 +100 2 1 -3.83019245701304 -0.000464241314197533 0 -0.00034615383898498 -0.000383083065848361 0.999999866712433 100 0.000659181674222964 1 1 0 0 +101 2 1 -2.97903853094642 -0.000464241284836853 0 -0.000269230765779093 -0.000383083065804563 0.999999890381074 100 0.000398826623154491 1 1 0 0 +102 2 1 -2.12788463992759 -0.000464241262709164 0 -0.000192307690980124 -0.000383083065771589 0.999999908132554 100 0.000203560344175457 1 1 0 0 +103 2 1 -1.2767307739429 -0.000464241248063213 0 -0.000115384615043241 -0.000383083065749606 0.999999919966874 100 7.33828269403602e-05 1 1 0 0 +104 2 1 -0.42557692297869 -0.00046424124077632 0 -3.84615384236079e-05 -0.00038308306573881 0.999999925884035 100 8.29406769753405e-06 1 1 0 0 +105 2 1 0.42557692297869 -0.00046424124077632 0 3.84615384236079e-05 -0.00038308306573881 0.999999925884035 100 8.29406769753405e-06 1 1 0 0 +106 2 1 1.2767307739429 -0.000464241248063213 0 0.000115384615043241 -0.000383083065749606 0.999999919966874 100 7.33828269403602e-05 1 1 0 0 +107 2 1 2.12788463992759 -0.000464241262709164 0 0.000192307690980124 -0.000383083065771589 0.999999908132554 100 0.000203560344175457 1 1 0 0 +108 2 1 2.97903853094642 -0.000464241284836853 0 0.000269230765779093 -0.000383083065804563 0.999999890381074 100 0.000398826623154491 1 1 0 0 +109 2 1 3.83019245701304 -0.000464241314197533 0 0.00034615383898498 -0.000383083065848361 0.999999866712433 100 0.000659181674222964 1 1 0 0 +110 2 1 4.68134642814112 -0.000464241351015249 0 0.000423076910142619 -0.000383083065903594 0.999999837126633 100 0.000984625501700975 1 1 0 0 +111 2 1 5.53250045434432 -0.000464241395064013 0 0.000499999978796844 -0.000383083065969181 0.999999801623673 100 0.00137515811491085 1 1 0 0 +112 2 1 -5.53250042385774 -0.00511046932053305 0 -0.000499999975838265 -0.00115021181495586 0.999999213506093 100 0.00137927371872593 1 1 0 0 +113 2 1 -4.68134640234479 -0.00511046892265155 0 -0.000423076907639205 -0.00115021181472363 0.999999249009074 100 0.000988741109267721 1 1 0 0 +114 2 1 -3.83019243590695 -0.00511046859109188 0 -0.000346153836936732 -0.00115021181453004 0.999999278594891 100 0.000663297286337183 1 1 0 0 +115 2 1 -2.97903851453057 -0.00511046832588269 0 -0.000269230764186011 -0.00115021181437511 0.999999302263545 100 0.000402942238110882 1 1 0 0 +116 2 1 -2.12788462820198 -0.00511046812691429 0 -0.000192307689842209 -0.00115021181425912 0.999999320015036 100 0.000207675960155029 1 1 0 0 +117 2 1 -1.27673076690754 -0.00511046799435189 0 -0.000115384614360492 -0.00115021181418185 0.999999331849363 100 7.74984447389215e-05 1 1 0 0 +118 2 1 -0.425576920633569 -0.00511046792812486 0 -3.84615381960248e-05 -0.00115021181414346 0.999999337766527 100 1.24096875424584e-05 1 1 0 0 +119 2 1 0.425576920633569 -0.00511046792812486 0 3.84615381960248e-05 -0.00115021181414346 0.999999337766527 100 1.24096875424584e-05 1 1 0 0 +120 2 1 1.27673076690754 -0.00511046799435189 0 0.000115384614360492 -0.00115021181418185 0.999999331849363 100 7.74984447389215e-05 1 1 0 0 +121 2 1 2.12788462820198 -0.00511046812691429 0 0.000192307689842209 -0.00115021181425912 0.999999320015036 100 0.000207675960155029 1 1 0 0 +122 2 1 2.97903851453057 -0.00511046832588269 0 0.000269230764186011 -0.00115021181437511 0.999999302263545 100 0.000402942238110882 1 1 0 0 +123 2 1 3.83019243590695 -0.00511046859109188 0 0.000346153836936732 -0.00115021181453004 0.999999278594891 100 0.000663297286337183 1 1 0 0 +124 2 1 4.68134640234479 -0.00511046892265155 0 0.000423076907639205 -0.00115021181472363 0.999999249009074 100 0.000988741109267721 1 1 0 0 +125 2 1 5.53250042385774 -0.00511046932053305 0 0.000499999975838265 -0.00115021181495586 0.999999213506093 100 0.00137927371872593 1 1 0 0 +126 2 1 -5.53250036654841 -0.0147343094711112 0 -0.000499999969921105 -0.00191863005442808 0.999998034427441 100 0.00139483258635664 1 1 0 0 +127 2 1 -4.68134635385228 -0.0147343083632423 0 -0.000423076902632378 -0.00191863005398288 0.999998069930463 100 0.00100429998281015 1 1 0 0 +128 2 1 -3.83019239623127 -0.014734307440005 0 -0.000346153832840237 -0.00191863005361231 0.999998099516315 100 0.000678856164199715 1 1 0 0 +129 2 1 -2.97903848367171 -0.0147343067014014 0 -0.000269230760999848 -0.00191863005331569 0.999998123184997 100 0.000418501122794623 1 1 0 0 +130 2 1 -2.12788460615994 -0.0147343061475014 0 -0.000192307687566378 -0.00191863005309301 0.999998140936508 100 0.000223234847794629 1 1 0 0 +131 2 1 -1.27673075368231 -0.0147343057781588 0 -0.000115384612994993 -0.00191863005294465 0.999998152770849 100 9.3057333174329e-05 1 1 0 0 +132 2 1 -0.42557691622516 -0.0147343055935059 0 -3.84615377408587e-05 -0.00191863005287038 0.99999815868802 100 2.79685791610973e-05 1 1 0 0 +133 2 1 0.42557691622516 -0.0147343055935059 0 3.84615377408587e-05 -0.00191863005287038 0.99999815868802 100 2.79685791610973e-05 1 1 0 0 +134 2 1 1.27673075368231 -0.0147343057781588 0 0.000115384612994993 -0.00191863005294465 0.999998152770849 100 9.3057333174329e-05 1 1 0 0 +135 2 1 2.12788460615994 -0.0147343061475014 0 0.000192307687566378 -0.00191863005309301 0.999998140936508 100 0.000223234847794629 1 1 0 0 +136 2 1 2.97903848367171 -0.0147343067014014 0 0.000269230760999848 -0.00191863005331569 0.999998123184997 100 0.000418501122794623 1 1 0 0 +137 2 1 3.83019239623127 -0.014734307440005 0 0.000346153832840237 -0.00191863005361231 0.999998099516315 100 0.000678856164199715 1 1 0 0 +138 2 1 4.68134635385228 -0.0147343083632423 0 0.000423076902632378 -0.00191863005398288 0.999998069930463 100 0.00100429998281015 1 1 0 0 +139 2 1 5.53250036654841 -0.0147343094711112 0 0.000499999969921105 -0.00191863005442808 0.999998034427441 100 0.00139483258635664 1 1 0 0 +140 2 1 -5.53250028627621 -0.0293607251074723 0 -0.000499999961045366 -0.00268834504769486 0.999996261393483 100 0.00142955447074655 1 1 0 0 +141 2 1 -4.68134628592966 -0.0293607229305368 0 -0.000423076895122137 -0.0026883450469895 0.999996296896568 100 0.00103902187731819 1 1 0 0 +142 2 1 -3.83019234065822 -0.029360721116408 0 -0.000346153826695494 -0.00268834504640192 0.999996326482472 100 0.000713578068712195 1 1 0 0 +143 2 1 -2.97903844044822 -0.0293607196650902 0 -0.000269230756220604 -0.00268834504593157 0.999996350151196 100 0.000453223030376648 1 1 0 0 +144 2 1 -2.12788457528602 -0.0293607185766573 0 -0.000192307684152632 -0.00268834504557908 0.999996367902739 100 0.000257956760492561 1 1 0 0 +145 2 1 -1.27673073515796 -0.0293607178510529 0 -0.000115384610946746 -0.00268834504534407 0.999996379737101 100 0.000127779249964988 1 1 0 0 +146 2 1 -0.425576910050378 -0.0293607174881134 0 -3.84615370581095e-05 -0.00268834504522647 0.999996385654282 100 6.26904949285745e-05 1 1 0 0 +147 2 1 0.425576910050378 -0.0293607174881134 0 3.84615370581095e-05 -0.00268834504522647 0.999996385654282 100 6.26904949285745e-05 1 1 0 0 +148 2 1 1.27673073515796 -0.0293607178510529 0 0.000115384610946746 -0.00268834504534407 0.999996379737101 100 0.000127779249964988 1 1 0 0 +149 2 1 2.12788457528602 -0.0293607185766573 0 0.000192307684152633 -0.00268834504557908 0.999996367902739 100 0.000257956760492561 1 1 0 0 +150 2 1 2.97903844044822 -0.0293607196650902 0 0.000269230756220604 -0.00268834504593157 0.999996350151196 100 0.000453223030376648 1 1 0 0 +151 2 1 3.83019234065822 -0.029360721116408 0 0.000346153826695494 -0.00268834504640192 0.999996326482472 100 0.000713578068712195 1 1 0 0 +152 2 1 4.68134628592966 -0.0293607229305368 0 0.000423076895122137 -0.0026883450469895 0.999996296896568 100 0.00103902187731819 1 1 0 0 +153 2 1 5.53250028627621 -0.0293607251074723 0 0.000499999961045366 -0.00268834504769486 0.999996261393483 100 0.00142955447074655 1 1 0 0 +154 2 1 -5.53250018693998 -0.0490149349890556 0 -0.000499999949211047 -0.00345936412980533 0.999993891381276 100 0.00149123706739829 1 1 0 0 +155 2 1 -4.68134620187593 -0.0490149313813615 0 -0.000423076885108482 -0.00345936412879236 0.999993926884445 100 0.00110070448351962 1 1 0 0 +156 2 1 -3.83019227188699 -0.0490149283750205 0 -0.000346153818502504 -0.00345936412794839 0.99999395647042 100 0.00077526068048428 1 1 0 0 +157 2 1 -2.9790383869595 -0.0490149259698023 0 -0.000269230749848278 -0.00345936412727268 0.9999939801392 100 0.000514905650788933 1 1 0 0 +158 2 1 -2.12788453707979 -0.0490149241660247 0 -0.000192307679600971 -0.00345936412676645 0.999993997890785 100 0.000319639384429138 1 1 0 0 +159 2 1 -1.27673071223422 -0.0490149229634138 0 -0.000115384608215749 -0.00345936412642867 0.999994009725175 100 0.000189461875947927 1 1 0 0 +160 2 1 -0.425576902409131 -0.0490149223622134 0 -3.84615361477773e-05 -0.0034593641262598 0.99999401564237 100 0.000124373125231614 1 1 0 0 +161 2 1 0.425576902409131 -0.0490149223622134 0 3.84615361477773e-05 -0.0034593641262598 0.99999401564237 100 0.000124373125231614 1 1 0 0 +162 2 1 1.27673071223422 -0.0490149229634138 0 0.000115384608215749 -0.00345936412642867 0.999994009725175 100 0.000189461875947927 1 1 0 0 +163 2 1 2.12788453707979 -0.0490149241660247 0 0.000192307679600971 -0.00345936412676645 0.999993997890785 100 0.000319639384429138 1 1 0 0 +164 2 1 2.9790383869595 -0.0490149259698023 0 0.000269230749848278 -0.00345936412727268 0.9999939801392 100 0.000514905650788933 1 1 0 0 +165 2 1 3.83019227188699 -0.0490149283750205 0 0.000346153818502504 -0.00345936412794839 0.99999395647042 100 0.00077526068048428 1 1 0 0 +166 2 1 4.68134620187593 -0.0490149313813615 0 0.000423076885108482 -0.00345936412879236 0.999993926884445 100 0.00110070448351962 1 1 0 0 +167 2 1 5.53250018693998 -0.0490149349890556 0 0.000499999949211047 -0.00345936412980533 0.999993891381276 100 0.00149123706739829 1 1 0 0 +168 2 1 -5.5325000724781 -0.0737224169291375 0 -0.000499999934418149 -0.00423169470854645 0.999990921338768 100 0.00158775714294279 1 1 0 0 +169 2 1 -4.68134610502358 -0.0737224115262025 0 -0.000423076872591414 -0.00423169470717732 0.999990956842043 100 0.00119722456747695 1 1 0 0 +170 2 1 -3.83019219264417 -0.0737224070237774 0 -0.000346153808261266 -0.00423169470603624 0.999990986428106 100 0.00087178077342287 1 1 0 0 +171 2 1 -2.97903832532619 -0.0737224034218604 0 -0.000269230741882871 -0.00423169470512372 0.999991010096956 100 0.000611425750321359 1 1 0 0 +172 2 1 -2.127884493056 -0.0737224007204249 0 -0.000192307673911395 -0.00423169470443877 0.999991027848594 100 0.000416159486576362 1 1 0 0 +173 2 1 -1.27673068581995 -0.0737223989194673 0 -0.000115384604802003 -0.0042316947039831 0.999991039683019 100 0.000285981983779493 1 1 0 0 +174 2 1 -0.425576893604374 -0.0737223980189654 0 -3.8461535009862e-05 -0.00423169470375453 0.999991045600232 100 0.000220893232835806 1 1 0 0 +175 2 1 0.425576893604374 -0.0737223980189654 0 3.8461535009862e-05 -0.00423169470375453 0.999991045600232 100 0.000220893232835806 1 1 0 0 +176 2 1 1.27673068581995 -0.0737223989194673 0 0.000115384604802003 -0.0042316947039831 0.999991039683019 100 0.000285981983779493 1 1 0 0 +177 2 1 2.12788449305601 -0.0737224007204249 0 0.000192307673911395 -0.00423169470443877 0.999991027848594 100 0.000416159486576362 1 1 0 0 +178 2 1 2.97903832532619 -0.0737224034218604 0 0.000269230741882871 -0.00423169470512372 0.999991010096956 100 0.000611425750321359 1 1 0 0 +179 2 1 3.83019219264417 -0.0737224070237774 0 0.000346153808261266 -0.00423169470603624 0.999990986428106 100 0.00087178077342287 1 1 0 0 +180 2 1 4.68134610502358 -0.0737224115262025 0 0.000423076872591414 -0.00423169470717732 0.999990956842043 100 0.00119722456747695 1 1 0 0 +181 2 1 5.5325000724781 -0.0737224169291375 0 0.000499999934418149 -0.00423169470854645 0.999990921338768 100 0.00158775714294279 1 1 0 0 +182 2 1 -5.53249994686909 -0.103508911413697 0 -0.000499999916666671 -0.00500534426544874 0.9999873481844 100 0.00172707170213471 1 1 0 0 +183 2 1 -4.68134599873904 -0.10350890384825 0 -0.000423076857570933 -0.0050053442636748 0.999987383687802 100 0.00133653913599119 1 1 0 0 +184 2 1 -3.83019210568409 -0.10350889754379 0 -0.000346153795971782 -0.0050053442621964 0.99998741327397 100 0.00101109534762145 1 1 0 0 +185 2 1 -2.97903825769058 -0.103508892500116 0 -0.000269230732324383 -0.00500534426101357 0.999987436942906 100 0.000750740329294786 1 1 0 0 +186 2 1 -2.12788444474486 -0.1035088887174 0 -0.000192307667083903 -0.00500534426012655 0.999987454694607 100 0.000555474068505646 1 1 0 0 +187 2 1 -1.27673065683326 -0.103508886195575 0 -0.000115384600705508 -0.00500534425953567 0.999987466529075 100 0.000425296568664635 1 1 0 0 +188 2 1 -0.425576883942145 -0.103508884934715 0 -3.84615336443636e-05 -0.00500534425923979 0.999987472446309 100 0.00036020781908519 1 1 0 0 +189 2 1 0.425576883942145 -0.103508884934715 0 3.84615336443636e-05 -0.00500534425923979 0.999987472446309 100 0.00036020781908519 1 1 0 0 +190 2 1 1.27673065683326 -0.103508886195575 0 0.000115384600705508 -0.00500534425953567 0.999987466529075 100 0.000425296568664635 1 1 0 0 +191 2 1 2.12788444474486 -0.1035088887174 0 0.000192307667083903 -0.00500534426012655 0.999987454694607 100 0.000555474068505646 1 1 0 0 +192 2 1 2.97903825769058 -0.103508892500116 0 0.000269230732324383 -0.00500534426101357 0.999987436942906 100 0.000750740329294786 1 1 0 0 +193 2 1 3.83019210568409 -0.10350889754379 0 0.000346153795971782 -0.0050053442621964 0.99998741327397 100 0.00101109534762145 1 1 0 0 +194 2 1 4.68134599873904 -0.10350890384825 0 0.000423076857570933 -0.0050053442636748 0.999987383687802 100 0.00133653913599119 1 1 0 0 +195 2 1 5.53249994686909 -0.103508911413697 0 0.000499999916666671 -0.00500534426544874 0.9999873481844 100 0.00172707170213471 1 1 0 0 +196 2 1 -5.53249960041105 -0.105268943332393 0 -0.000499999916666671 0.00495130793916307 0.999987617198221 100 0.00103415551279795 1 1 0 0 +197 2 1 -4.68134570558228 -0.105268936006727 0 -0.000423076857570933 0.00495130793932835 0.999987652701603 100 0.000643623044538799 1 1 0 0 +198 2 1 -3.83019186582858 -0.105268929902011 0 -0.000346153795971782 0.00495130793946597 0.999987682287756 100 0.00031817933813727 1 1 0 0 +199 2 1 -2.97903807113631 -0.105268925018327 0 -0.000269230732324383 0.00495130793957607 0.999987705956678 100 5.78243840436699e-05 1 1 0 0 diff --git a/Tests/input/CylinderDefault.rml b/Intern/RayCore/tests/input/CylinderDefault.rml similarity index 100% rename from Tests/input/CylinderDefault.rml rename to Intern/RayCore/tests/input/CylinderDefault.rml diff --git a/Tests/input/Ellipsoid.rml b/Intern/RayCore/tests/input/Ellipsoid.rml similarity index 100% rename from Tests/input/Ellipsoid.rml rename to Intern/RayCore/tests/input/Ellipsoid.rml diff --git a/Tests/input/Ellipsoid_DGIA.csv b/Intern/RayCore/tests/input/Ellipsoid_DGIA.csv similarity index 99% rename from Tests/input/Ellipsoid_DGIA.csv rename to Intern/RayCore/tests/input/Ellipsoid_DGIA.csv index 3a2f3a861..fead4433e 100644 --- a/Tests/input/Ellipsoid_DGIA.csv +++ b/Intern/RayCore/tests/input/Ellipsoid_DGIA.csv @@ -1,202 +1,202 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 0.0588204839140358 0.164902268329903 0 0.0052187818919214 0.00516383704542311 0.999973049188094 100 0.000581497904477146 1 1 0 0 -1 2 1 0.0497781459979283 0.165292200169207 0 0.00441622536327759 0.00518769198446845 0.999976792133405 100 0.000539954720807145 1 1 0 0 -2 2 1 0.0407323250591229 0.165617201210491 0 0.00361350236940675 0.0052075738481307 0.999979911685852 100 0.000505326316670107 1 1 0 0 -3 2 1 0.0316836538036038 0.165877239910446 0 0.00281064314820036 0.00522348113795407 0.999982407610202 100 0.000477617640740391 1 1 0 0 -4 2 1 0.0226327652797986 0.166072291027958 0 0.00200767795465373 0.00523541265483379 0.999984279718219 100 0.000456832666486662 1 1 0 0 -5 2 1 0.0135802928025608 0.166202335627421 0 0.00120463705706987 0.0052433674992452 0.999985527868693 100 0.000442974361590132 1 1 0 0 -6 2 1 0.00452686987710893 0.16626736108402 0 0.000401550733259772 0.00524734507140945 0.999986151967471 100 0.000436044714092532 1 1 0 0 -7 2 1 -0.00452686987710893 0.16626736108402 0 -0.000401550733259772 0.00524734507140945 0.999986151967471 100 0.000436044714092532 1 1 0 0 -8 2 1 -0.0135802928025608 0.166202335627421 0 -0.00120463705706987 0.0052433674992452 0.999985527868693 100 0.000442974361590132 1 1 0 0 -9 2 1 -0.0226327652797988 0.166072291027958 0 -0.00200767795465373 0.00523541265483379 0.999984279718219 100 0.000456832666486662 1 1 0 0 -10 2 1 -0.0316836538036038 0.165877239910446 0 -0.00281064314820036 0.00522348113795407 0.999982407610202 100 0.000477617640740391 1 1 0 0 -11 2 1 -0.0407323250591229 0.165617201210491 0 -0.00361350236940675 0.0052075738481307 0.999979911685852 100 0.000505326316670107 1 1 0 0 -12 2 1 -0.0497781459979283 0.165292200169207 0 -0.00441622536327759 0.00518769198446845 0.999976792133405 100 0.000539954720807145 1 1 0 0 -13 2 1 -0.0588204839140358 0.164902268329903 0 -0.0052187818919214 0.00516383704542311 0.999973049188094 100 0.000581497904477146 1 1 0 0 -14 2 1 0.0581298403902517 0.139154813234492 0 0.00519278105207586 0.00434616908666907 0.999977072656777 100 0.000455477441391849 1 1 0 0 -15 2 1 0.0491936872589029 0.139540935760618 0 0.00439422136346556 0.00436984518948264 0.999980797451446 100 0.000414324821463197 1 1 0 0 -16 2 1 0.0402540851282254 0.139862761675573 0 0.00359549685375215 0.00438957798892786 0.999983901874153 100 0.000380021972546274 1 1 0 0 -17 2 1 0.0313116605264603 0.140120259817003 0 0.00279663746231618 0.00440536600510144 0.999986385691959 100 0.000352573802160805 1 1 0 0 -18 2 1 0.0223670403192981 0.140313405248476 0 0.0019976731453897 0.00441720805374701 0.999988248718461 100 0.000331984236595417 1 1 0 0 -19 2 1 0.0134208516349745 0.14044217926336 0 0.00119863387231611 0.00442510324647782 0.999989490813828 100 0.000318256222499258 1 1 0 0 -20 2 1 0.00447372178931049 0.140506569389577 0 0.000399549621806487 0.00442905099094498 0.999990111884823 100 0.000311391722902954 1 1 0 0 -21 2 1 -0.00447372178931049 0.140506569389577 0 -0.000399549621806487 0.00442905099094498 0.999990111884823 100 0.000311391722902954 1 1 0 0 -22 2 1 -0.0134208516349745 0.14044217926336 0 -0.00119863387231611 0.00442510324647782 0.999989490813828 100 0.000318256222499258 1 1 0 0 -23 2 1 -0.0223670403192981 0.140313405248476 0 -0.0019976731453897 0.00441720805374701 0.999988248718461 100 0.000331984236595417 1 1 0 0 -24 2 1 -0.0313116605264603 0.140120259817003 0 -0.00279663746231618 0.00440536600510144 0.999986385691959 100 0.000352573802160805 1 1 0 0 -25 2 1 -0.0402540851282254 0.139862761675573 0 -0.00359549685375215 0.00438957798892786 0.999983901874153 100 0.000380021972546274 1 1 0 0 -26 2 1 -0.0491936872589029 0.139540935760618 0 -0.00439422136346556 0.00436984518948264 0.999980797451446 100 0.000414324821463197 1 1 0 0 -27 2 1 -0.0581298403902517 0.139154813234492 0 -0.00519278105207586 0.00434616908666907 0.999977072656777 100 0.000455477441391849 1 1 0 0 -28 2 1 0.0574433693000254 0.113473664615876 0 0.00516697067379636 0.00353251502622171 0.999980411683972 100 0.000350758865806711 1 1 0 0 -29 2 1 0.0486127598769164 0.113856015129839 0 0.00437237856364983 0.00355601405321587 0.999984118408763 100 0.000309994998815455 1 1 0 0 -30 2 1 0.0397787350598393 0.114174697012797 0 0.00357762325642718 0.00357559925595502 0.999987207769078 100 0.000276016196266937 1 1 0 0 -31 2 1 0.030941915275148 0.114429679478016 0 0.00278273439664485 0.00359126917281599 0.999989679534248 100 0.000248827319978773 1 1 0 0 -32 2 1 0.0221029212817418 0.114620937889232 0 0.00198774164542274 0.00360302263417106 0.999991533519684 100 0.000228432255426014 1 1 0 0 -33 2 1 0.013262374097248 0.114748453765486 0 0.00119267467679908 0.00361085876260969 0.999992769586917 100 0.000214833925952007 1 1 0 0 -34 2 1 0.0044208949241476 0.114812214784332 0 0.00039756317404191 0.00361477697310009 0.999993387643617 100 0.000208034275487989 1 1 0 0 -35 2 1 -0.0044208949241476 0.114812214784332 0 -0.00039756317404191 0.00361477697310009 0.999993387643617 100 0.000208034275487989 1 1 0 0 -36 2 1 -0.013262374097248 0.114748453765486 0 -0.00119267467679908 0.00361085876260969 0.999992769586917 100 0.000214833925952007 1 1 0 0 -37 2 1 -0.0221029212817416 0.114620937889232 0 -0.00198774164542274 0.00360302263417106 0.999991533519684 100 0.000228432255426014 1 1 0 0 -38 2 1 -0.030941915275148 0.114429679478016 0 -0.00278273439664485 0.00359126917281599 0.999989679534248 100 0.000248827319978773 1 1 0 0 -39 2 1 -0.0397787350598393 0.114174697012797 0 -0.00357762325642718 0.00357559925595502 0.999987207769078 100 0.000276016196266937 1 1 0 0 -40 2 1 -0.0486127598769155 0.113856015129839 0 -0.00437237856364983 0.00355601405321587 0.999984118408763 100 0.000309994998815455 1 1 0 0 -41 2 1 -0.0574433693000254 0.113473664615876 0 -0.00516697067379636 0.00353251502622171 0.999980411683972 100 0.000350758865806711 1 1 0 0 -42 2 1 0.0567610289336109 0.0878581690766764 0 0.00514134892082677 0.00272284614682 0.99998307617686 100 0.000267128954533291 1 1 0 0 -43 2 1 0.0480353285467192 0.0882367844183727 0 0.00435069540949058 0.0027461698370233 0.999986764912757 100 0.000226752031267097 1 1 0 0 -44 2 1 0.0393062459593931 0.0885523529790966 0 0.00355988030530052 0.00276560889273958 0.999989839278213 100 0.000193095763620477 1 1 0 0 -45 2 1 0.0305743955708477 0.0888048443422504 0 0.0027689329615027 0.00278116187035532 0.999992299044801 100 0.000166164970892169 1 1 0 0 -46 2 1 0.0218403921080061 0.0889942341676688 0 0.00197788274770293 0.00279282761465927 0.99999414402973 100 0.000145963503314306 1 1 0 0 -47 2 1 0.013104850552776 0.0891205041966217 0 0.00118675904623563 0.00280060525905479 0.999995374095875 100 0.000132494254330595 1 1 0 0 -48 2 1 0.00436838606923151 0.0891836422548997 0 0.000395591248529454 0.00280449422572104 0.999995989151808 100 0.000125759148545512 1 1 0 0 -49 2 1 -0.00436838606923151 0.0891836422548997 0 -0.000395591248529454 0.00280449422572104 0.999995989151808 100 0.000125759148545512 1 1 0 0 -50 2 1 -0.013104850552776 0.0891205041966217 0 -0.00118675904623563 0.00280060525905479 0.999995374095875 100 0.000132494254330595 1 1 0 0 -51 2 1 -0.0218403921080064 0.0889942341676688 0 -0.00197788274770293 0.00279282761465927 0.99999414402973 100 0.000145963503314306 1 1 0 0 -52 2 1 -0.0305743955708477 0.0888048443422504 0 -0.0027689329615027 0.00278116187035532 0.999992299044801 100 0.000166164970892169 1 1 0 0 -53 2 1 -0.0393062459593931 0.0885523529790966 0 -0.00355988030530052 0.00276560889273958 0.999989839278213 100 0.000193095763620477 1 1 0 0 -54 2 1 -0.0480353285467192 0.0882367844183727 0 -0.00435069540949058 0.0027461698370233 0.999986764912757 100 0.000226752031267097 1 1 0 0 -55 2 1 -0.0567610289336109 0.0878581690766764 0 -0.00514134892082677 0.00272284614682 0.99998307617686 100 0.000267128954533291 1 1 0 0 -56 2 1 0.056082778106032 0.06230768000668 0 0.00511591397875991 0.00191713399627352 0.999985075899337 100 0.000204377630325325 1 1 0 0 -57 2 1 0.0474613584072898 0.0626825965608069 0 0.0043291703651454 0.0019402840676383 0.999988746727526 100 0.000164385831112668 1 1 0 0 -58 2 1 0.0388365892959275 0.0629950821302254 0 0.00354226674338176 0.00195957840844174 0.999991806165821 100 0.000131050587356185 1 1 0 0 -59 2 1 0.0302090792176357 0.0632451066620834 0 0.00275523217898652 0.00197501559281904 0.999994253988016 100 0.000104376667991346 1 1 0 0 -60 2 1 0.0215794369410911 0.0634326461088732 0 0.00196809575359724 0.00198659447976107 0.999996090013095 100 8.43678897126665e-05 1 1 0 0 -61 2 1 0.0129482714862514 0.0635576824303588 0 0.00118088656139362 0.00199431421332757 0.999997314105267 100 7.10271143589125e-05 1 1 0 0 -62 2 1 0.00431619205260791 0.0636202035982836 0 0.000393633705516352 0.00199817422280268 0.99999792617399 100 6.43562480036053e-05 1 1 0 0 -63 2 1 -0.00431619205260791 0.0636202035982836 0 -0.000393633705516352 0.00199817422280268 0.99999792617399 100 6.43562480036053e-05 1 1 0 0 -64 2 1 -0.0129482714862514 0.0635576824303588 0 -0.00118088656139362 0.00199431421332757 0.999997314105267 100 7.10271143589125e-05 1 1 0 0 -65 2 1 -0.0215794369410911 0.0634326461088732 0 -0.00196809575359724 0.00198659447976107 0.999996090013095 100 8.43678897126665e-05 1 1 0 0 -66 2 1 -0.0302090792176357 0.0632451066620834 0 -0.00275523217898652 0.00197501559281904 0.999994253988016 100 0.000104376667991346 1 1 0 0 -67 2 1 -0.0388365892959275 0.0629950821302254 0 -0.00354226674338176 0.00195957840844174 0.999991806165821 100 0.000131050587356185 1 1 0 0 -68 2 1 -0.0474613584072889 0.0626825965608069 0 -0.0043291703651454 0.0019402840676383 0.999988746727526 100 0.000164385831112668 1 1 0 0 -69 2 1 -0.056082778106032 0.06230768000668 0 -0.00511591397875991 0.00191713399627352 0.999985075899337 100 0.000204377630325325 1 1 0 0 -70 2 1 0.0554085761491203 0.0368215574939483 0 0.00509066405472957 0.00111535038451482 0.9999864204743 100 0.000162297883889551 1 1 0 0 -71 2 1 0.0468908150351295 0.0371928111976119 0 0.0043078019130085 0.00113832853421958 0.999990073476146 100 0.000122689398153852 1 1 0 0 -72 2 1 0.0383697368965836 0.037502243732473 0 0.00352478132860798 0.00115747957490264 0.99999311805513 100 8.9673663069334e-05 1 1 0 0 -73 2 1 0.0298459442982111 0.0377498254053918 0 0.00274163108280743 0.00117280209818593 0.999995553987239 100 6.32554055073342e-05 1 1 0 0 -74 2 1 0.0213200401230564 0.0379355324561552 0 0.00195837997277075 0.00118429497705713 0.999997381093216 100 4.34384063510151e-05 1 1 0 0 -75 2 1 0.0127926275018195 0.0380593470606296 0 0.00117505680802067 0.00119195736607458 0.999998599238587 100 3.02254974258176e-05 1 1 0 0 -76 2 1 0.00426430974214376 0.0381212573340206 0 0.000391690406909906 0.00119578870152481 0.99999920833369 100 2.36185710491554e-05 1 1 0 0 -77 2 1 -0.00426430974214376 0.0381212573340206 0 -0.000391690406909906 0.00119578870152481 0.99999920833369 100 2.36185710491554e-05 1 1 0 0 -78 2 1 -0.0127926275018195 0.0380593470606296 0 -0.00117505680802067 0.00119195736607458 0.999998599238587 100 3.02254974258176e-05 1 1 0 0 -79 2 1 -0.021320040123056 0.0379355324561552 0 -0.00195837997277075 0.00118429497705713 0.999997381093216 100 4.34384063510151e-05 1 1 0 0 -80 2 1 -0.0298459442982111 0.0377498254053918 0 -0.00274163108280743 0.00117280209818593 0.999995553987239 100 6.32554055073342e-05 1 1 0 0 -81 2 1 -0.0383697368965836 0.037502243732473 0 -0.00352478132860798 0.00115747957490264 0.99999311805513 100 8.9673663069334e-05 1 1 0 0 -82 2 1 -0.0468908150351295 0.0371928111976119 0 -0.0043078019130085 0.00113832853421958 0.999990073476146 100 0.000122689398153852 1 1 0 0 -83 2 1 -0.0554085761491203 0.0368215574939483 0 -0.00509066405472957 0.00111535038451482 0.9999864204743 100 0.000162297883889551 1 1 0 0 -84 2 1 0.0547383829036798 0.0113991682363909 0 0.00506559737710748 0.000317467380689274 0.999987119385883 100 0.000140685749897784 1 1 0 0 -85 2 1 0.0463236644376117 0.0117667945851269 0 0.00428658855345416 0.000340275285438507 0.999990754642914 100 0.0001014587572854 1 1 0 0 -86 2 1 0.0379056609411905 0.0120732036745498 0 0.00350742283363365 0.00035928442372174 0.999993784430568 100 6.87610215663881e-05 1 1 0 0 -87 2 1 0.0294849691696668 0.012318366166389 0 0.00272812871812746 0.00037449340439516 0.999996208527006 100 4.25972150424059e-05 1 1 0 0 -88 2 1 0.0210621861920046 0.0125022585831819 0 0.00194873472306994 0.000385901114235587 0.999998026754708 100 2.29710840358166e-05 1 1 0 0 -89 2 1 0.0126379093212707 0.0126248633134054 0 0.00116926937677409 0.000393506718149972 0.999999238980504 100 9.88543411040155e-06 1 1 0 0 -90 2 1 0.00421273604492367 0.0126861686145063 0 0.000389761216254121 0.000397309659323219 0.999999845115603 100 3.34214439590141e-06 1 1 0 0 -91 2 1 -0.00421273604492367 0.0126861686145063 0 -0.000389761216254121 0.000397309659323219 0.999999845115603 100 3.34214439590141e-06 1 1 0 0 -92 2 1 -0.0126379093212707 0.0126248633134054 0 -0.00116926937677409 0.000393506718149972 0.999999238980504 100 9.88543411040155e-06 1 1 0 0 -93 2 1 -0.021062186192004 0.0125022585831819 0 -0.00194873472306994 0.000385901114235587 0.999998026754708 100 2.29710840358166e-05 1 1 0 0 -94 2 1 -0.0294849691696668 0.012318366166389 0 -0.00272812871812746 0.00037449340439516 0.999996208527006 100 4.25972150424059e-05 1 1 0 0 -95 2 1 -0.0379056609411905 0.0120732036745498 0 -0.00350742283363365 0.00035928442372174 0.999993784430568 100 6.87610215663881e-05 1 1 0 0 -96 2 1 -0.0463236644376117 0.0117667945851269 0 -0.00428658855345416 0.000340275285438507 0.999990754642914 100 0.0001014587572854 1 1 0 0 -97 2 1 -0.0547383829036798 0.0113991682363909 0 -0.00506559737710748 0.000317467380689274 0.999987119385883 100 0.000140685749897784 1 1 0 0 -98 2 1 0.0540721587118416 -0.0139601145436792 0 0.00504071219520539 -0.000476542689713644 0.999987181981665 100 0.000139340234454721 1 1 0 0 -99 2 1 0.0457598730465065 -0.0135960804888701 0 0.00426552880458435 -0.000453903373399178 0.999990799575549 100 0.000100492924161699 1 1 0 0 -100 2 1 0.0374443339569499 -0.0132926656176671 0 0.00349019004562407 -0.000435034756620822 0.999993814639974 100 6.81116649730029e-05 1 1 0 0 -101 2 1 0.0291261324593557 -0.0130498989195219 0 0.00271472414139875 -0.000419938213542193 0.999996226955249 100 4.22010994043376e-05 1 1 0 0 -102 2 1 0.0208058598791305 -0.0128678035924511 0 0.00193915933040776 -0.000408614843793786 0.999998036345572 100 2.276492728015e-05 1 1 0 0 -103 2 1 0.012484107782269 -0.0127463970386736 0 0.00116352386315193 -0.000401065472273476 0.999999242679067 100 9.80593551958009e-06 1 1 0 0 -104 2 1 0.00416146790666055 -0.0126856908604254 0 0.000387845998706726 -0.000397290648996684 0.999999845867799 100 3.32597414853808e-06 1 1 0 0 -105 2 1 -0.00416146790666055 -0.0126856908604254 0 -0.000387845998706726 -0.000397290648996684 0.999999845867799 100 3.32597414853808e-06 1 1 0 0 -106 2 1 -0.012484107782269 -0.0127463970386736 0 -0.00116352386315193 -0.000401065472273476 0.999999242679067 100 9.80593551958009e-06 1 1 0 0 -107 2 1 -0.0208058598791303 -0.0128678035924511 0 -0.00193915933040776 -0.000408614843793786 0.999998036345572 100 2.276492728015e-05 1 1 0 0 -108 2 1 -0.0291261324593557 -0.0130498989195219 0 -0.00271472414139875 -0.000419938213542193 0.999996226955249 100 4.22010994043376e-05 1 1 0 0 -109 2 1 -0.0374443339569499 -0.0132926656176671 0 -0.00349019004562407 -0.000435034756620822 0.999993814639974 100 6.81116649730029e-05 1 1 0 0 -110 2 1 -0.0457598730465065 -0.0135960804888701 0 -0.00426552880458435 -0.000453903373399178 0.999990799575549 100 0.000100492924161699 1 1 0 0 -111 2 1 -0.0540721587118416 -0.0139601145436792 0 -0.00504071219520539 -0.000476542689713644 0.999987181981665 100 0.000139340234454721 1 1 0 0 -112 2 1 0.0534098644094803 -0.0392569111849106 0 0.00501600677898164 -0.00126670724770028 0.999986617474825 100 0.000158063288381527 1 1 0 0 -113 2 1 0.0451994077115803 -0.0388964347914409 0 0.00424462120198039 -0.00124423488319364 0.999990217487355 100 0.000119593836643617 1 1 0 0 -114 2 1 0.0369857288131845 -0.038595985268586 0 0.00347308176605202 -0.00122550542361344 0.999993217896753 100 8.75275467251413e-05 1 1 0 0 -115 2 1 0.0287694130608203 -0.0383555912622677 0 0.00270141642020537 -0.00121052022638674 0.999995618485454 100 6.18690045257608e-05 1 1 0 0 -116 2 1 0.0205510461058054 -0.0381752756949068 0 0.0019296531286506 -0.00119928037775097 0.999997419079359 100 4.2621884745131e-05 1 1 0 0 -117 2 1 0.012331213836605 -0.0380550557623174 0 0.00115781986742513 -0.0011917866925556 0.999998619547864 100 2.97889403100271e-05 1 1 0 0 -118 2 1 0.0041105023111111 -0.0379949429295847 0 0.000385944621016547 -0.00118803971411741 0.999999219803889 100 2.33720078313127e-05 1 1 0 0 -119 2 1 -0.0041105023111111 -0.0379949429295847 0 -0.000385944621016547 -0.00118803971411741 0.999999219803889 100 2.33720078313127e-05 1 1 0 0 -120 2 1 -0.012331213836605 -0.0380550557623174 0 -0.00115781986742513 -0.0011917866925556 0.999998619547864 100 2.97889403100271e-05 1 1 0 0 -121 2 1 -0.0205510461058054 -0.0381752756949068 0 -0.0019296531286506 -0.00119928037775097 0.999997419079359 100 4.2621884745131e-05 1 1 0 0 -122 2 1 -0.0287694130608203 -0.0383555912622677 0 -0.00270141642020537 -0.00121052022638674 0.999995618485454 100 6.18690045257608e-05 1 1 0 0 -123 2 1 -0.0369857288131845 -0.038595985268586 0 -0.00347308176605202 -0.00122550542361344 0.999993217896753 100 8.75275467251413e-05 1 1 0 0 -124 2 1 -0.0451994077115794 -0.0388964347914409 0 -0.00424462120198039 -0.00124423488319364 0.999990217487355 100 0.000119593836643617 1 1 0 0 -125 2 1 -0.0534098644094803 -0.0392569111849106 0 -0.00501600677898164 -0.00126670724770028 0.999986617474825 100 0.000158063288381527 1 1 0 0 -126 2 1 0.0527514613188442 -0.0644918356697017 0 0.00499147941875277 -0.00205305346356888 0.999985434946274 100 0.000196659730477222 1 1 0 0 -127 2 1 0.0446422356943277 -0.064134882727015 0 0.00422386429845866 -0.0020307464338557 0.999989017459347 100 0.000158566328650522 1 1 0 0 -128 2 1 0.0365298187162271 -0.0638373700348391 0 0.00345609681049781 -0.00201215478351618 0.999992003282008 100 0.000126813489487176 1 1 0 0 -129 2 1 0.0284147901297938 -0.063599325899923 0 0.0026882046331077 -0.00199727985348463 0.999994392198795 100 0.00010140576023332 1 1 0 0 -130 2 1 0.0202977299807248 -0.0634207729742124 0 0.0019202154595071 -0.0019861227167996 0.999996184037291 100 8.23467817099299e-05 1 1 0 0 -131 2 1 0.0121792185484779 -0.0633017282484576 0 0.00115215699457077 -0.00197868417840757 0.999997378668156 100 6.96392768304577e-05 1 1 0 0 -132 2 1 0.00405983627950735 -0.063242203053008 0 0.000384056951501272 -0.00197496477502107 0.99999797600515 100 6.32850704960219e-05 1 1 0 0 -133 2 1 -0.00405983627950735 -0.063242203053008 0 -0.000384056951501272 -0.00197496477502107 0.99999797600515 100 6.32850704960219e-05 1 1 0 0 -134 2 1 -0.0121792185484779 -0.0633017282484576 0 -0.00115215699457077 -0.00197868417840757 0.999997378668156 100 6.96392768304577e-05 1 1 0 0 -135 2 1 -0.0202977299807248 -0.0634207729742124 0 -0.0019202154595071 -0.0019861227167996 0.999996184037291 100 8.23467817099299e-05 1 1 0 0 -136 2 1 -0.0284147901297938 -0.063599325899923 0 -0.0026882046331077 -0.00199727985348463 0.999994392198795 100 0.00010140576023332 1 1 0 0 -137 2 1 -0.0365298187162271 -0.0638373700348391 0 -0.00345609681049781 -0.00201215478351618 0.999992003282008 100 0.000126813489487176 1 1 0 0 -138 2 1 -0.0446422356943277 -0.064134882727015 0 -0.00422386429845866 -0.0020307464338557 0.999989017459347 100 0.000158566328650522 1 1 0 0 -139 2 1 -0.0527514613188442 -0.0644918356697017 0 -0.00499147941875277 -0.00205305346356888 0.999985434946274 100 0.000196659730477222 1 1 0 0 -140 2 1 0.052096911241251 -0.0896654957077767 0 0.00496712842490951 -0.00283560825967877 0.999983643346734 100 0.000254937232966768 1 1 0 0 -141 2 1 0.0440883246618089 -0.0893120324208287 0 0.00420325666383021 -0.00281346496707574 0.999987208442337 100 0.00021721806115238 1 1 0 0 -142 2 1 0.0360765772043599 -0.0890174283879994 0 0.00343923400845242 -0.00279500979413788 0.999990179746625 100 0.00018577715968604 1 1 0 0 -143 2 1 0.0280622430802819 -0.0887817115819067 0 0.00267508786948925 -0.00278024406554478 0.999992557046215 100 0.000160619033863441 1 1 0 0 -144 2 1 0.020045896797114 -0.0886049043865111 0 0.00191084567241874 -0.00276916884132439 0.999994340170356 100 0.0001417472852836 1 1 0 0 -145 2 1 0.0120281130928221 -0.0884870235928181 0 0.00114653485420646 -0.00276178491666573 0.999995528990957 100 0.000129164616055277 1 1 0 0 -146 2 1 0.00400946686999287 -0.0884280803967794 0 0.000382182860025547 -0.00275809282177325 0.999996123422611 100 0.000122872833571819 1 1 0 0 -147 2 1 -0.00400946686999287 -0.0884280803967794 0 -0.000382182860025547 -0.00275809282177325 0.999996123422611 100 0.000122872833571819 1 1 0 0 -148 2 1 -0.0120281130928221 -0.0884870235928181 0 -0.00114653485420646 -0.00276178491666573 0.999995528990957 100 0.000129164616055277 1 1 0 0 -149 2 1 -0.0200458967971138 -0.0886049043865111 0 -0.00191084567241874 -0.00276916884132439 0.999994340170356 100 0.0001417472852836 1 1 0 0 -150 2 1 -0.0280622430802819 -0.0887817115819067 0 -0.00267508786948925 -0.00278024406554478 0.999992557046215 100 0.000160619033863441 1 1 0 0 -151 2 1 -0.0360765772043599 -0.0890174283879994 0 -0.00343923400845242 -0.00279500979413788 0.999990179746625 100 0.00018577715968604 1 1 0 0 -152 2 1 -0.0440883246618098 -0.0893120324208287 0 -0.00420325666383021 -0.00281346496707574 0.999987208442337 100 0.00021721806115238 1 1 0 0 -153 2 1 -0.052096911241251 -0.0896654957077767 0 -0.00496712842490951 -0.00283560825967877 0.999983643346734 100 0.000254937232966768 1 1 0 0 -154 2 1 0.0514461764499501 -0.114778492815372 0 0.00494295212763757 -0.00361439831317367 0.999981251498796 100 0.000332706248514114 1 1 0 0 -155 2 1 0.0435376426805894 -0.11442848579921 0 0.00418279688466424 -0.00359241717905784 0.999984799258986 100 0.000295359493179603 1 1 0 0 -156 2 1 0.0356259781428703 -0.114136762595855 0 0.00342249220312393 -0.00357409716757229 0.999987756113322 100 0.000264229018057449 1 1 0 0 -157 2 1 0.0277117515807022 -0.113903350848998 0 0.00266206522940607 -0.0035594395873757 0.999990121850481 100 0.000239319280240124 1 1 0 0 -158 2 1 0.0197955320299561 -0.113728272678534 0 0.00190154312445213 -0.00354844548567562 0.999991896301356 100 0.000220633854723928 1 1 0 0 -159 2 1 0.0118778887536461 -0.113611544678363 0 0.00114095306052567 -0.00354111564804244 0.999993079339093 100 0.000208175415764345 1 1 0 0 -160 2 1 0.00395939117707439 -0.113553177911797 0 0.000380322217979446 -0.00353745059826632 0.999993670879109 100 0.000201945750632149 1 1 0 0 -161 2 1 -0.00395939117707439 -0.113553177911797 0 -0.000380322217979446 -0.00353745059826632 0.999993670879109 100 0.000201945750632149 1 1 0 0 -162 2 1 -0.0118778887536461 -0.113611544678363 0 -0.00114095306052567 -0.00354111564804244 0.999993079339093 100 0.000208175415764345 1 1 0 0 -163 2 1 -0.0197955320299563 -0.113728272678534 0 -0.00190154312445213 -0.00354844548567562 0.999991896301356 100 0.000220633854723928 1 1 0 0 -164 2 1 -0.0277117515807022 -0.113903350848998 0 -0.00266206522940607 -0.0035594395873757 0.999990121850481 100 0.000239319280240124 1 1 0 0 -165 2 1 -0.0356259781428703 -0.114136762595855 0 -0.00342249220312393 -0.00357409716757229 0.999987756113322 100 0.000264229018057449 1 1 0 0 -166 2 1 -0.0435376426805894 -0.11442848579921 0 -0.00418279688466424 -0.00359241717905784 0.999984799258986 100 0.000295359493179603 1 1 0 0 -167 2 1 -0.0514461764499501 -0.114778492815372 0 -0.00494295212763757 -0.00361439831317367 0.999981251498796 100 0.000332706248514114 1 1 0 0 -168 2 1 0.0507992196830758 -0.139831422396872 0 0.00491894887664269 -0.00438945005868119 0.999978268098928 100 0.000429779980322564 1 1 0 0 -169 2 1 0.042990158210797 -0.13948483866958 0 0.00416248356405538 -0.00436762952321779 0.999981798605818 100 0.000392803827253374 1 1 0 0 -170 2 1 0.0351779957191685 -0.139195968802643 0 0.00340587025124703 -0.00434944337289933 0.999984741078672 100 0.000361982261438243 1 1 0 0 -171 2 1 0.0273632955500922 -0.138964840114724 0 0.00264913582343841 -0.00433489290059519 0.9999870953082 100 0.000337319706886774 1 1 0 0 -172 2 1 0.0195466213332933 -0.138791474465966 0 0.00189230718019316 -0.00432397914087657 0.999988861126926 100 0.000318819693120531 1 1 0 0 -173 2 1 0.011728536922412 -0.138675888254828 0 0.00113541123223419 -0.00431670286983132 0.999990038409217 100 0.000306484878819901 1 1 0 0 -174 2 1 0.00390960633107712 -0.138618092415771 0 0.000378474898257276 -0.00431306460493036 0.999990627071307 100 0.000300317029086727 1 1 0 0 -175 2 1 -0.00390960633107712 -0.138618092415771 0 -0.000378474898257276 -0.00431306460493036 0.999990627071307 100 0.000300317029086727 1 1 0 0 -176 2 1 -0.011728536922412 -0.138675888254828 0 -0.00113541123223419 -0.00431670286983132 0.999990038409217 100 0.000306484878819901 1 1 0 0 -177 2 1 -0.0195466213332931 -0.138791474465966 0 -0.00189230718019316 -0.00432397914087657 0.999988861126926 100 0.000318819693120531 1 1 0 0 -178 2 1 -0.0273632955500922 -0.138964840114724 0 -0.00264913582343841 -0.00433489290059519 0.9999870953082 100 0.000337319706886774 1 1 0 0 -179 2 1 -0.0351779957191685 -0.139195968802643 0 -0.00340587025124703 -0.00434944337289933 0.999984741078672 100 0.000361982261438243 1 1 0 0 -180 2 1 -0.042990158210797 -0.13948483866958 0 -0.00416248356405538 -0.00436762952321779 0.999981798605818 100 0.000392803827253374 1 1 0 0 -181 2 1 -0.0507992196830758 -0.139831422396872 0 -0.00491894887664269 -0.00438945005868119 0.999978268098928 100 0.000429779980322564 1 1 0 0 -182 2 1 0.0501560041367792 -0.164824873820514 0 0.0048951170408803 -0.00516078969097056 0.99997470171946 100 0.000545974329497767 1 1 0 0 -183 2 1 0.0424458401002727 -0.164481680798966 0 0.0041423153213947 -0.00513912821284945 0.999978215055204 100 0.000509366963342472 1 1 0 0 -184 2 1 0.0347326044380121 -0.164195637106775 0 0.00338936702289542 -0.00512107463885769 0.999981143215075 100 0.000478852800142704 1 1 0 0 -185 2 1 0.027016855154395 -0.163966769742898 0 0.00263629877254489 -0.00510663024630115 0.999983485991799 100 0.000454436215022724 1 1 0 0 -186 2 1 0.0192991505375677 -0.163795100311151 0 0.0018831372116427 -0.00509579605729504 0.999985243219512 100 0.000436120710674004 1 1 0 0 -187 2 1 0.0115800490964333 -0.163680645018392 0 0.00112990899248757 -0.00508857283858444 0.999986414773789 100 0.000423908912807747 1 1 0 0 -188 2 1 0.00386010949761495 -0.163623414670378 0 0.00037664077523672 -0.00508496110140866 0.99998700057167 100 0.000417802578112969 1 1 0 0 -189 2 1 -0.00386010949761495 -0.163623414670378 0 -0.00037664077523672 -0.00508496110140866 0.99998700057167 100 0.000417802578112969 1 1 0 0 -190 2 1 -0.0115800490964333 -0.163680645018392 0 -0.00112990899248757 -0.00508857283858444 0.999986414773789 100 0.000423908912807747 1 1 0 0 -191 2 1 -0.0192991505375679 -0.163795100311151 0 -0.0018831372116427 -0.00509579605729504 0.999985243219512 100 0.000436120710674004 1 1 0 0 -192 2 1 -0.027016855154395 -0.163966769742898 0 -0.00263629877254489 -0.00510663024630115 0.999983485991799 100 0.000454436215022724 1 1 0 0 -193 2 1 -0.0347326044380121 -0.164195637106775 0 -0.00338936702289542 -0.00512107463885769 0.999981143215075 100 0.000478852800142704 1 1 0 0 -194 2 1 -0.0424458401002727 -0.164481680798966 0 -0.0041423153213947 -0.00513912821284945 0.999978215055204 100 0.000509366963342472 1 1 0 0 -195 2 1 -0.0501560041367792 -0.164824873820514 0 -0.0048951170408803 -0.00516078969097056 0.99997470171946 100 0.000545974329497767 1 1 0 0 -196 2 1 0.0588204839140358 0.164902268329903 0 0.0052187818919214 0.00516383704542311 0.999973049188094 100 0.000581497904477146 1 1 0 0 -197 2 1 0.0497781459979283 0.165292200169207 0 0.00441622536327759 0.00518769198446845 0.999976792133405 100 0.000539954720807145 1 1 0 0 -198 2 1 0.0407323250591229 0.165617201210491 0 0.00361350236940675 0.0052075738481307 0.999979911685852 100 0.000505326316670107 1 1 0 0 -199 2 1 0.0316836538036038 0.165877239910446 0 0.00281064314820036 0.00522348113795407 0.999982407610202 100 0.000477617640740391 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 0.0588204839140358 0.164902268329903 0 0.0052187818919214 0.00516383704542311 0.999973049188094 100 0.000581497904477146 1 1 0 0 +1 2 1 0.0497781459979283 0.165292200169207 0 0.00441622536327759 0.00518769198446845 0.999976792133405 100 0.000539954720807145 1 1 0 0 +2 2 1 0.0407323250591229 0.165617201210491 0 0.00361350236940675 0.0052075738481307 0.999979911685852 100 0.000505326316670107 1 1 0 0 +3 2 1 0.0316836538036038 0.165877239910446 0 0.00281064314820036 0.00522348113795407 0.999982407610202 100 0.000477617640740391 1 1 0 0 +4 2 1 0.0226327652797986 0.166072291027958 0 0.00200767795465373 0.00523541265483379 0.999984279718219 100 0.000456832666486662 1 1 0 0 +5 2 1 0.0135802928025608 0.166202335627421 0 0.00120463705706987 0.0052433674992452 0.999985527868693 100 0.000442974361590132 1 1 0 0 +6 2 1 0.00452686987710893 0.16626736108402 0 0.000401550733259772 0.00524734507140945 0.999986151967471 100 0.000436044714092532 1 1 0 0 +7 2 1 -0.00452686987710893 0.16626736108402 0 -0.000401550733259772 0.00524734507140945 0.999986151967471 100 0.000436044714092532 1 1 0 0 +8 2 1 -0.0135802928025608 0.166202335627421 0 -0.00120463705706987 0.0052433674992452 0.999985527868693 100 0.000442974361590132 1 1 0 0 +9 2 1 -0.0226327652797988 0.166072291027958 0 -0.00200767795465373 0.00523541265483379 0.999984279718219 100 0.000456832666486662 1 1 0 0 +10 2 1 -0.0316836538036038 0.165877239910446 0 -0.00281064314820036 0.00522348113795407 0.999982407610202 100 0.000477617640740391 1 1 0 0 +11 2 1 -0.0407323250591229 0.165617201210491 0 -0.00361350236940675 0.0052075738481307 0.999979911685852 100 0.000505326316670107 1 1 0 0 +12 2 1 -0.0497781459979283 0.165292200169207 0 -0.00441622536327759 0.00518769198446845 0.999976792133405 100 0.000539954720807145 1 1 0 0 +13 2 1 -0.0588204839140358 0.164902268329903 0 -0.0052187818919214 0.00516383704542311 0.999973049188094 100 0.000581497904477146 1 1 0 0 +14 2 1 0.0581298403902517 0.139154813234492 0 0.00519278105207586 0.00434616908666907 0.999977072656777 100 0.000455477441391849 1 1 0 0 +15 2 1 0.0491936872589029 0.139540935760618 0 0.00439422136346556 0.00436984518948264 0.999980797451446 100 0.000414324821463197 1 1 0 0 +16 2 1 0.0402540851282254 0.139862761675573 0 0.00359549685375215 0.00438957798892786 0.999983901874153 100 0.000380021972546274 1 1 0 0 +17 2 1 0.0313116605264603 0.140120259817003 0 0.00279663746231618 0.00440536600510144 0.999986385691959 100 0.000352573802160805 1 1 0 0 +18 2 1 0.0223670403192981 0.140313405248476 0 0.0019976731453897 0.00441720805374701 0.999988248718461 100 0.000331984236595417 1 1 0 0 +19 2 1 0.0134208516349745 0.14044217926336 0 0.00119863387231611 0.00442510324647782 0.999989490813828 100 0.000318256222499258 1 1 0 0 +20 2 1 0.00447372178931049 0.140506569389577 0 0.000399549621806487 0.00442905099094498 0.999990111884823 100 0.000311391722902954 1 1 0 0 +21 2 1 -0.00447372178931049 0.140506569389577 0 -0.000399549621806487 0.00442905099094498 0.999990111884823 100 0.000311391722902954 1 1 0 0 +22 2 1 -0.0134208516349745 0.14044217926336 0 -0.00119863387231611 0.00442510324647782 0.999989490813828 100 0.000318256222499258 1 1 0 0 +23 2 1 -0.0223670403192981 0.140313405248476 0 -0.0019976731453897 0.00441720805374701 0.999988248718461 100 0.000331984236595417 1 1 0 0 +24 2 1 -0.0313116605264603 0.140120259817003 0 -0.00279663746231618 0.00440536600510144 0.999986385691959 100 0.000352573802160805 1 1 0 0 +25 2 1 -0.0402540851282254 0.139862761675573 0 -0.00359549685375215 0.00438957798892786 0.999983901874153 100 0.000380021972546274 1 1 0 0 +26 2 1 -0.0491936872589029 0.139540935760618 0 -0.00439422136346556 0.00436984518948264 0.999980797451446 100 0.000414324821463197 1 1 0 0 +27 2 1 -0.0581298403902517 0.139154813234492 0 -0.00519278105207586 0.00434616908666907 0.999977072656777 100 0.000455477441391849 1 1 0 0 +28 2 1 0.0574433693000254 0.113473664615876 0 0.00516697067379636 0.00353251502622171 0.999980411683972 100 0.000350758865806711 1 1 0 0 +29 2 1 0.0486127598769164 0.113856015129839 0 0.00437237856364983 0.00355601405321587 0.999984118408763 100 0.000309994998815455 1 1 0 0 +30 2 1 0.0397787350598393 0.114174697012797 0 0.00357762325642718 0.00357559925595502 0.999987207769078 100 0.000276016196266937 1 1 0 0 +31 2 1 0.030941915275148 0.114429679478016 0 0.00278273439664485 0.00359126917281599 0.999989679534248 100 0.000248827319978773 1 1 0 0 +32 2 1 0.0221029212817418 0.114620937889232 0 0.00198774164542274 0.00360302263417106 0.999991533519684 100 0.000228432255426014 1 1 0 0 +33 2 1 0.013262374097248 0.114748453765486 0 0.00119267467679908 0.00361085876260969 0.999992769586917 100 0.000214833925952007 1 1 0 0 +34 2 1 0.0044208949241476 0.114812214784332 0 0.00039756317404191 0.00361477697310009 0.999993387643617 100 0.000208034275487989 1 1 0 0 +35 2 1 -0.0044208949241476 0.114812214784332 0 -0.00039756317404191 0.00361477697310009 0.999993387643617 100 0.000208034275487989 1 1 0 0 +36 2 1 -0.013262374097248 0.114748453765486 0 -0.00119267467679908 0.00361085876260969 0.999992769586917 100 0.000214833925952007 1 1 0 0 +37 2 1 -0.0221029212817416 0.114620937889232 0 -0.00198774164542274 0.00360302263417106 0.999991533519684 100 0.000228432255426014 1 1 0 0 +38 2 1 -0.030941915275148 0.114429679478016 0 -0.00278273439664485 0.00359126917281599 0.999989679534248 100 0.000248827319978773 1 1 0 0 +39 2 1 -0.0397787350598393 0.114174697012797 0 -0.00357762325642718 0.00357559925595502 0.999987207769078 100 0.000276016196266937 1 1 0 0 +40 2 1 -0.0486127598769155 0.113856015129839 0 -0.00437237856364983 0.00355601405321587 0.999984118408763 100 0.000309994998815455 1 1 0 0 +41 2 1 -0.0574433693000254 0.113473664615876 0 -0.00516697067379636 0.00353251502622171 0.999980411683972 100 0.000350758865806711 1 1 0 0 +42 2 1 0.0567610289336109 0.0878581690766764 0 0.00514134892082677 0.00272284614682 0.99998307617686 100 0.000267128954533291 1 1 0 0 +43 2 1 0.0480353285467192 0.0882367844183727 0 0.00435069540949058 0.0027461698370233 0.999986764912757 100 0.000226752031267097 1 1 0 0 +44 2 1 0.0393062459593931 0.0885523529790966 0 0.00355988030530052 0.00276560889273958 0.999989839278213 100 0.000193095763620477 1 1 0 0 +45 2 1 0.0305743955708477 0.0888048443422504 0 0.0027689329615027 0.00278116187035532 0.999992299044801 100 0.000166164970892169 1 1 0 0 +46 2 1 0.0218403921080061 0.0889942341676688 0 0.00197788274770293 0.00279282761465927 0.99999414402973 100 0.000145963503314306 1 1 0 0 +47 2 1 0.013104850552776 0.0891205041966217 0 0.00118675904623563 0.00280060525905479 0.999995374095875 100 0.000132494254330595 1 1 0 0 +48 2 1 0.00436838606923151 0.0891836422548997 0 0.000395591248529454 0.00280449422572104 0.999995989151808 100 0.000125759148545512 1 1 0 0 +49 2 1 -0.00436838606923151 0.0891836422548997 0 -0.000395591248529454 0.00280449422572104 0.999995989151808 100 0.000125759148545512 1 1 0 0 +50 2 1 -0.013104850552776 0.0891205041966217 0 -0.00118675904623563 0.00280060525905479 0.999995374095875 100 0.000132494254330595 1 1 0 0 +51 2 1 -0.0218403921080064 0.0889942341676688 0 -0.00197788274770293 0.00279282761465927 0.99999414402973 100 0.000145963503314306 1 1 0 0 +52 2 1 -0.0305743955708477 0.0888048443422504 0 -0.0027689329615027 0.00278116187035532 0.999992299044801 100 0.000166164970892169 1 1 0 0 +53 2 1 -0.0393062459593931 0.0885523529790966 0 -0.00355988030530052 0.00276560889273958 0.999989839278213 100 0.000193095763620477 1 1 0 0 +54 2 1 -0.0480353285467192 0.0882367844183727 0 -0.00435069540949058 0.0027461698370233 0.999986764912757 100 0.000226752031267097 1 1 0 0 +55 2 1 -0.0567610289336109 0.0878581690766764 0 -0.00514134892082677 0.00272284614682 0.99998307617686 100 0.000267128954533291 1 1 0 0 +56 2 1 0.056082778106032 0.06230768000668 0 0.00511591397875991 0.00191713399627352 0.999985075899337 100 0.000204377630325325 1 1 0 0 +57 2 1 0.0474613584072898 0.0626825965608069 0 0.0043291703651454 0.0019402840676383 0.999988746727526 100 0.000164385831112668 1 1 0 0 +58 2 1 0.0388365892959275 0.0629950821302254 0 0.00354226674338176 0.00195957840844174 0.999991806165821 100 0.000131050587356185 1 1 0 0 +59 2 1 0.0302090792176357 0.0632451066620834 0 0.00275523217898652 0.00197501559281904 0.999994253988016 100 0.000104376667991346 1 1 0 0 +60 2 1 0.0215794369410911 0.0634326461088732 0 0.00196809575359724 0.00198659447976107 0.999996090013095 100 8.43678897126665e-05 1 1 0 0 +61 2 1 0.0129482714862514 0.0635576824303588 0 0.00118088656139362 0.00199431421332757 0.999997314105267 100 7.10271143589125e-05 1 1 0 0 +62 2 1 0.00431619205260791 0.0636202035982836 0 0.000393633705516352 0.00199817422280268 0.99999792617399 100 6.43562480036053e-05 1 1 0 0 +63 2 1 -0.00431619205260791 0.0636202035982836 0 -0.000393633705516352 0.00199817422280268 0.99999792617399 100 6.43562480036053e-05 1 1 0 0 +64 2 1 -0.0129482714862514 0.0635576824303588 0 -0.00118088656139362 0.00199431421332757 0.999997314105267 100 7.10271143589125e-05 1 1 0 0 +65 2 1 -0.0215794369410911 0.0634326461088732 0 -0.00196809575359724 0.00198659447976107 0.999996090013095 100 8.43678897126665e-05 1 1 0 0 +66 2 1 -0.0302090792176357 0.0632451066620834 0 -0.00275523217898652 0.00197501559281904 0.999994253988016 100 0.000104376667991346 1 1 0 0 +67 2 1 -0.0388365892959275 0.0629950821302254 0 -0.00354226674338176 0.00195957840844174 0.999991806165821 100 0.000131050587356185 1 1 0 0 +68 2 1 -0.0474613584072889 0.0626825965608069 0 -0.0043291703651454 0.0019402840676383 0.999988746727526 100 0.000164385831112668 1 1 0 0 +69 2 1 -0.056082778106032 0.06230768000668 0 -0.00511591397875991 0.00191713399627352 0.999985075899337 100 0.000204377630325325 1 1 0 0 +70 2 1 0.0554085761491203 0.0368215574939483 0 0.00509066405472957 0.00111535038451482 0.9999864204743 100 0.000162297883889551 1 1 0 0 +71 2 1 0.0468908150351295 0.0371928111976119 0 0.0043078019130085 0.00113832853421958 0.999990073476146 100 0.000122689398153852 1 1 0 0 +72 2 1 0.0383697368965836 0.037502243732473 0 0.00352478132860798 0.00115747957490264 0.99999311805513 100 8.9673663069334e-05 1 1 0 0 +73 2 1 0.0298459442982111 0.0377498254053918 0 0.00274163108280743 0.00117280209818593 0.999995553987239 100 6.32554055073342e-05 1 1 0 0 +74 2 1 0.0213200401230564 0.0379355324561552 0 0.00195837997277075 0.00118429497705713 0.999997381093216 100 4.34384063510151e-05 1 1 0 0 +75 2 1 0.0127926275018195 0.0380593470606296 0 0.00117505680802067 0.00119195736607458 0.999998599238587 100 3.02254974258176e-05 1 1 0 0 +76 2 1 0.00426430974214376 0.0381212573340206 0 0.000391690406909906 0.00119578870152481 0.99999920833369 100 2.36185710491554e-05 1 1 0 0 +77 2 1 -0.00426430974214376 0.0381212573340206 0 -0.000391690406909906 0.00119578870152481 0.99999920833369 100 2.36185710491554e-05 1 1 0 0 +78 2 1 -0.0127926275018195 0.0380593470606296 0 -0.00117505680802067 0.00119195736607458 0.999998599238587 100 3.02254974258176e-05 1 1 0 0 +79 2 1 -0.021320040123056 0.0379355324561552 0 -0.00195837997277075 0.00118429497705713 0.999997381093216 100 4.34384063510151e-05 1 1 0 0 +80 2 1 -0.0298459442982111 0.0377498254053918 0 -0.00274163108280743 0.00117280209818593 0.999995553987239 100 6.32554055073342e-05 1 1 0 0 +81 2 1 -0.0383697368965836 0.037502243732473 0 -0.00352478132860798 0.00115747957490264 0.99999311805513 100 8.9673663069334e-05 1 1 0 0 +82 2 1 -0.0468908150351295 0.0371928111976119 0 -0.0043078019130085 0.00113832853421958 0.999990073476146 100 0.000122689398153852 1 1 0 0 +83 2 1 -0.0554085761491203 0.0368215574939483 0 -0.00509066405472957 0.00111535038451482 0.9999864204743 100 0.000162297883889551 1 1 0 0 +84 2 1 0.0547383829036798 0.0113991682363909 0 0.00506559737710748 0.000317467380689274 0.999987119385883 100 0.000140685749897784 1 1 0 0 +85 2 1 0.0463236644376117 0.0117667945851269 0 0.00428658855345416 0.000340275285438507 0.999990754642914 100 0.0001014587572854 1 1 0 0 +86 2 1 0.0379056609411905 0.0120732036745498 0 0.00350742283363365 0.00035928442372174 0.999993784430568 100 6.87610215663881e-05 1 1 0 0 +87 2 1 0.0294849691696668 0.012318366166389 0 0.00272812871812746 0.00037449340439516 0.999996208527006 100 4.25972150424059e-05 1 1 0 0 +88 2 1 0.0210621861920046 0.0125022585831819 0 0.00194873472306994 0.000385901114235587 0.999998026754708 100 2.29710840358166e-05 1 1 0 0 +89 2 1 0.0126379093212707 0.0126248633134054 0 0.00116926937677409 0.000393506718149972 0.999999238980504 100 9.88543411040155e-06 1 1 0 0 +90 2 1 0.00421273604492367 0.0126861686145063 0 0.000389761216254121 0.000397309659323219 0.999999845115603 100 3.34214439590141e-06 1 1 0 0 +91 2 1 -0.00421273604492367 0.0126861686145063 0 -0.000389761216254121 0.000397309659323219 0.999999845115603 100 3.34214439590141e-06 1 1 0 0 +92 2 1 -0.0126379093212707 0.0126248633134054 0 -0.00116926937677409 0.000393506718149972 0.999999238980504 100 9.88543411040155e-06 1 1 0 0 +93 2 1 -0.021062186192004 0.0125022585831819 0 -0.00194873472306994 0.000385901114235587 0.999998026754708 100 2.29710840358166e-05 1 1 0 0 +94 2 1 -0.0294849691696668 0.012318366166389 0 -0.00272812871812746 0.00037449340439516 0.999996208527006 100 4.25972150424059e-05 1 1 0 0 +95 2 1 -0.0379056609411905 0.0120732036745498 0 -0.00350742283363365 0.00035928442372174 0.999993784430568 100 6.87610215663881e-05 1 1 0 0 +96 2 1 -0.0463236644376117 0.0117667945851269 0 -0.00428658855345416 0.000340275285438507 0.999990754642914 100 0.0001014587572854 1 1 0 0 +97 2 1 -0.0547383829036798 0.0113991682363909 0 -0.00506559737710748 0.000317467380689274 0.999987119385883 100 0.000140685749897784 1 1 0 0 +98 2 1 0.0540721587118416 -0.0139601145436792 0 0.00504071219520539 -0.000476542689713644 0.999987181981665 100 0.000139340234454721 1 1 0 0 +99 2 1 0.0457598730465065 -0.0135960804888701 0 0.00426552880458435 -0.000453903373399178 0.999990799575549 100 0.000100492924161699 1 1 0 0 +100 2 1 0.0374443339569499 -0.0132926656176671 0 0.00349019004562407 -0.000435034756620822 0.999993814639974 100 6.81116649730029e-05 1 1 0 0 +101 2 1 0.0291261324593557 -0.0130498989195219 0 0.00271472414139875 -0.000419938213542193 0.999996226955249 100 4.22010994043376e-05 1 1 0 0 +102 2 1 0.0208058598791305 -0.0128678035924511 0 0.00193915933040776 -0.000408614843793786 0.999998036345572 100 2.276492728015e-05 1 1 0 0 +103 2 1 0.012484107782269 -0.0127463970386736 0 0.00116352386315193 -0.000401065472273476 0.999999242679067 100 9.80593551958009e-06 1 1 0 0 +104 2 1 0.00416146790666055 -0.0126856908604254 0 0.000387845998706726 -0.000397290648996684 0.999999845867799 100 3.32597414853808e-06 1 1 0 0 +105 2 1 -0.00416146790666055 -0.0126856908604254 0 -0.000387845998706726 -0.000397290648996684 0.999999845867799 100 3.32597414853808e-06 1 1 0 0 +106 2 1 -0.012484107782269 -0.0127463970386736 0 -0.00116352386315193 -0.000401065472273476 0.999999242679067 100 9.80593551958009e-06 1 1 0 0 +107 2 1 -0.0208058598791303 -0.0128678035924511 0 -0.00193915933040776 -0.000408614843793786 0.999998036345572 100 2.276492728015e-05 1 1 0 0 +108 2 1 -0.0291261324593557 -0.0130498989195219 0 -0.00271472414139875 -0.000419938213542193 0.999996226955249 100 4.22010994043376e-05 1 1 0 0 +109 2 1 -0.0374443339569499 -0.0132926656176671 0 -0.00349019004562407 -0.000435034756620822 0.999993814639974 100 6.81116649730029e-05 1 1 0 0 +110 2 1 -0.0457598730465065 -0.0135960804888701 0 -0.00426552880458435 -0.000453903373399178 0.999990799575549 100 0.000100492924161699 1 1 0 0 +111 2 1 -0.0540721587118416 -0.0139601145436792 0 -0.00504071219520539 -0.000476542689713644 0.999987181981665 100 0.000139340234454721 1 1 0 0 +112 2 1 0.0534098644094803 -0.0392569111849106 0 0.00501600677898164 -0.00126670724770028 0.999986617474825 100 0.000158063288381527 1 1 0 0 +113 2 1 0.0451994077115803 -0.0388964347914409 0 0.00424462120198039 -0.00124423488319364 0.999990217487355 100 0.000119593836643617 1 1 0 0 +114 2 1 0.0369857288131845 -0.038595985268586 0 0.00347308176605202 -0.00122550542361344 0.999993217896753 100 8.75275467251413e-05 1 1 0 0 +115 2 1 0.0287694130608203 -0.0383555912622677 0 0.00270141642020537 -0.00121052022638674 0.999995618485454 100 6.18690045257608e-05 1 1 0 0 +116 2 1 0.0205510461058054 -0.0381752756949068 0 0.0019296531286506 -0.00119928037775097 0.999997419079359 100 4.2621884745131e-05 1 1 0 0 +117 2 1 0.012331213836605 -0.0380550557623174 0 0.00115781986742513 -0.0011917866925556 0.999998619547864 100 2.97889403100271e-05 1 1 0 0 +118 2 1 0.0041105023111111 -0.0379949429295847 0 0.000385944621016547 -0.00118803971411741 0.999999219803889 100 2.33720078313127e-05 1 1 0 0 +119 2 1 -0.0041105023111111 -0.0379949429295847 0 -0.000385944621016547 -0.00118803971411741 0.999999219803889 100 2.33720078313127e-05 1 1 0 0 +120 2 1 -0.012331213836605 -0.0380550557623174 0 -0.00115781986742513 -0.0011917866925556 0.999998619547864 100 2.97889403100271e-05 1 1 0 0 +121 2 1 -0.0205510461058054 -0.0381752756949068 0 -0.0019296531286506 -0.00119928037775097 0.999997419079359 100 4.2621884745131e-05 1 1 0 0 +122 2 1 -0.0287694130608203 -0.0383555912622677 0 -0.00270141642020537 -0.00121052022638674 0.999995618485454 100 6.18690045257608e-05 1 1 0 0 +123 2 1 -0.0369857288131845 -0.038595985268586 0 -0.00347308176605202 -0.00122550542361344 0.999993217896753 100 8.75275467251413e-05 1 1 0 0 +124 2 1 -0.0451994077115794 -0.0388964347914409 0 -0.00424462120198039 -0.00124423488319364 0.999990217487355 100 0.000119593836643617 1 1 0 0 +125 2 1 -0.0534098644094803 -0.0392569111849106 0 -0.00501600677898164 -0.00126670724770028 0.999986617474825 100 0.000158063288381527 1 1 0 0 +126 2 1 0.0527514613188442 -0.0644918356697017 0 0.00499147941875277 -0.00205305346356888 0.999985434946274 100 0.000196659730477222 1 1 0 0 +127 2 1 0.0446422356943277 -0.064134882727015 0 0.00422386429845866 -0.0020307464338557 0.999989017459347 100 0.000158566328650522 1 1 0 0 +128 2 1 0.0365298187162271 -0.0638373700348391 0 0.00345609681049781 -0.00201215478351618 0.999992003282008 100 0.000126813489487176 1 1 0 0 +129 2 1 0.0284147901297938 -0.063599325899923 0 0.0026882046331077 -0.00199727985348463 0.999994392198795 100 0.00010140576023332 1 1 0 0 +130 2 1 0.0202977299807248 -0.0634207729742124 0 0.0019202154595071 -0.0019861227167996 0.999996184037291 100 8.23467817099299e-05 1 1 0 0 +131 2 1 0.0121792185484779 -0.0633017282484576 0 0.00115215699457077 -0.00197868417840757 0.999997378668156 100 6.96392768304577e-05 1 1 0 0 +132 2 1 0.00405983627950735 -0.063242203053008 0 0.000384056951501272 -0.00197496477502107 0.99999797600515 100 6.32850704960219e-05 1 1 0 0 +133 2 1 -0.00405983627950735 -0.063242203053008 0 -0.000384056951501272 -0.00197496477502107 0.99999797600515 100 6.32850704960219e-05 1 1 0 0 +134 2 1 -0.0121792185484779 -0.0633017282484576 0 -0.00115215699457077 -0.00197868417840757 0.999997378668156 100 6.96392768304577e-05 1 1 0 0 +135 2 1 -0.0202977299807248 -0.0634207729742124 0 -0.0019202154595071 -0.0019861227167996 0.999996184037291 100 8.23467817099299e-05 1 1 0 0 +136 2 1 -0.0284147901297938 -0.063599325899923 0 -0.0026882046331077 -0.00199727985348463 0.999994392198795 100 0.00010140576023332 1 1 0 0 +137 2 1 -0.0365298187162271 -0.0638373700348391 0 -0.00345609681049781 -0.00201215478351618 0.999992003282008 100 0.000126813489487176 1 1 0 0 +138 2 1 -0.0446422356943277 -0.064134882727015 0 -0.00422386429845866 -0.0020307464338557 0.999989017459347 100 0.000158566328650522 1 1 0 0 +139 2 1 -0.0527514613188442 -0.0644918356697017 0 -0.00499147941875277 -0.00205305346356888 0.999985434946274 100 0.000196659730477222 1 1 0 0 +140 2 1 0.052096911241251 -0.0896654957077767 0 0.00496712842490951 -0.00283560825967877 0.999983643346734 100 0.000254937232966768 1 1 0 0 +141 2 1 0.0440883246618089 -0.0893120324208287 0 0.00420325666383021 -0.00281346496707574 0.999987208442337 100 0.00021721806115238 1 1 0 0 +142 2 1 0.0360765772043599 -0.0890174283879994 0 0.00343923400845242 -0.00279500979413788 0.999990179746625 100 0.00018577715968604 1 1 0 0 +143 2 1 0.0280622430802819 -0.0887817115819067 0 0.00267508786948925 -0.00278024406554478 0.999992557046215 100 0.000160619033863441 1 1 0 0 +144 2 1 0.020045896797114 -0.0886049043865111 0 0.00191084567241874 -0.00276916884132439 0.999994340170356 100 0.0001417472852836 1 1 0 0 +145 2 1 0.0120281130928221 -0.0884870235928181 0 0.00114653485420646 -0.00276178491666573 0.999995528990957 100 0.000129164616055277 1 1 0 0 +146 2 1 0.00400946686999287 -0.0884280803967794 0 0.000382182860025547 -0.00275809282177325 0.999996123422611 100 0.000122872833571819 1 1 0 0 +147 2 1 -0.00400946686999287 -0.0884280803967794 0 -0.000382182860025547 -0.00275809282177325 0.999996123422611 100 0.000122872833571819 1 1 0 0 +148 2 1 -0.0120281130928221 -0.0884870235928181 0 -0.00114653485420646 -0.00276178491666573 0.999995528990957 100 0.000129164616055277 1 1 0 0 +149 2 1 -0.0200458967971138 -0.0886049043865111 0 -0.00191084567241874 -0.00276916884132439 0.999994340170356 100 0.0001417472852836 1 1 0 0 +150 2 1 -0.0280622430802819 -0.0887817115819067 0 -0.00267508786948925 -0.00278024406554478 0.999992557046215 100 0.000160619033863441 1 1 0 0 +151 2 1 -0.0360765772043599 -0.0890174283879994 0 -0.00343923400845242 -0.00279500979413788 0.999990179746625 100 0.00018577715968604 1 1 0 0 +152 2 1 -0.0440883246618098 -0.0893120324208287 0 -0.00420325666383021 -0.00281346496707574 0.999987208442337 100 0.00021721806115238 1 1 0 0 +153 2 1 -0.052096911241251 -0.0896654957077767 0 -0.00496712842490951 -0.00283560825967877 0.999983643346734 100 0.000254937232966768 1 1 0 0 +154 2 1 0.0514461764499501 -0.114778492815372 0 0.00494295212763757 -0.00361439831317367 0.999981251498796 100 0.000332706248514114 1 1 0 0 +155 2 1 0.0435376426805894 -0.11442848579921 0 0.00418279688466424 -0.00359241717905784 0.999984799258986 100 0.000295359493179603 1 1 0 0 +156 2 1 0.0356259781428703 -0.114136762595855 0 0.00342249220312393 -0.00357409716757229 0.999987756113322 100 0.000264229018057449 1 1 0 0 +157 2 1 0.0277117515807022 -0.113903350848998 0 0.00266206522940607 -0.0035594395873757 0.999990121850481 100 0.000239319280240124 1 1 0 0 +158 2 1 0.0197955320299561 -0.113728272678534 0 0.00190154312445213 -0.00354844548567562 0.999991896301356 100 0.000220633854723928 1 1 0 0 +159 2 1 0.0118778887536461 -0.113611544678363 0 0.00114095306052567 -0.00354111564804244 0.999993079339093 100 0.000208175415764345 1 1 0 0 +160 2 1 0.00395939117707439 -0.113553177911797 0 0.000380322217979446 -0.00353745059826632 0.999993670879109 100 0.000201945750632149 1 1 0 0 +161 2 1 -0.00395939117707439 -0.113553177911797 0 -0.000380322217979446 -0.00353745059826632 0.999993670879109 100 0.000201945750632149 1 1 0 0 +162 2 1 -0.0118778887536461 -0.113611544678363 0 -0.00114095306052567 -0.00354111564804244 0.999993079339093 100 0.000208175415764345 1 1 0 0 +163 2 1 -0.0197955320299563 -0.113728272678534 0 -0.00190154312445213 -0.00354844548567562 0.999991896301356 100 0.000220633854723928 1 1 0 0 +164 2 1 -0.0277117515807022 -0.113903350848998 0 -0.00266206522940607 -0.0035594395873757 0.999990121850481 100 0.000239319280240124 1 1 0 0 +165 2 1 -0.0356259781428703 -0.114136762595855 0 -0.00342249220312393 -0.00357409716757229 0.999987756113322 100 0.000264229018057449 1 1 0 0 +166 2 1 -0.0435376426805894 -0.11442848579921 0 -0.00418279688466424 -0.00359241717905784 0.999984799258986 100 0.000295359493179603 1 1 0 0 +167 2 1 -0.0514461764499501 -0.114778492815372 0 -0.00494295212763757 -0.00361439831317367 0.999981251498796 100 0.000332706248514114 1 1 0 0 +168 2 1 0.0507992196830758 -0.139831422396872 0 0.00491894887664269 -0.00438945005868119 0.999978268098928 100 0.000429779980322564 1 1 0 0 +169 2 1 0.042990158210797 -0.13948483866958 0 0.00416248356405538 -0.00436762952321779 0.999981798605818 100 0.000392803827253374 1 1 0 0 +170 2 1 0.0351779957191685 -0.139195968802643 0 0.00340587025124703 -0.00434944337289933 0.999984741078672 100 0.000361982261438243 1 1 0 0 +171 2 1 0.0273632955500922 -0.138964840114724 0 0.00264913582343841 -0.00433489290059519 0.9999870953082 100 0.000337319706886774 1 1 0 0 +172 2 1 0.0195466213332933 -0.138791474465966 0 0.00189230718019316 -0.00432397914087657 0.999988861126926 100 0.000318819693120531 1 1 0 0 +173 2 1 0.011728536922412 -0.138675888254828 0 0.00113541123223419 -0.00431670286983132 0.999990038409217 100 0.000306484878819901 1 1 0 0 +174 2 1 0.00390960633107712 -0.138618092415771 0 0.000378474898257276 -0.00431306460493036 0.999990627071307 100 0.000300317029086727 1 1 0 0 +175 2 1 -0.00390960633107712 -0.138618092415771 0 -0.000378474898257276 -0.00431306460493036 0.999990627071307 100 0.000300317029086727 1 1 0 0 +176 2 1 -0.011728536922412 -0.138675888254828 0 -0.00113541123223419 -0.00431670286983132 0.999990038409217 100 0.000306484878819901 1 1 0 0 +177 2 1 -0.0195466213332931 -0.138791474465966 0 -0.00189230718019316 -0.00432397914087657 0.999988861126926 100 0.000318819693120531 1 1 0 0 +178 2 1 -0.0273632955500922 -0.138964840114724 0 -0.00264913582343841 -0.00433489290059519 0.9999870953082 100 0.000337319706886774 1 1 0 0 +179 2 1 -0.0351779957191685 -0.139195968802643 0 -0.00340587025124703 -0.00434944337289933 0.999984741078672 100 0.000361982261438243 1 1 0 0 +180 2 1 -0.042990158210797 -0.13948483866958 0 -0.00416248356405538 -0.00436762952321779 0.999981798605818 100 0.000392803827253374 1 1 0 0 +181 2 1 -0.0507992196830758 -0.139831422396872 0 -0.00491894887664269 -0.00438945005868119 0.999978268098928 100 0.000429779980322564 1 1 0 0 +182 2 1 0.0501560041367792 -0.164824873820514 0 0.0048951170408803 -0.00516078969097056 0.99997470171946 100 0.000545974329497767 1 1 0 0 +183 2 1 0.0424458401002727 -0.164481680798966 0 0.0041423153213947 -0.00513912821284945 0.999978215055204 100 0.000509366963342472 1 1 0 0 +184 2 1 0.0347326044380121 -0.164195637106775 0 0.00338936702289542 -0.00512107463885769 0.999981143215075 100 0.000478852800142704 1 1 0 0 +185 2 1 0.027016855154395 -0.163966769742898 0 0.00263629877254489 -0.00510663024630115 0.999983485991799 100 0.000454436215022724 1 1 0 0 +186 2 1 0.0192991505375677 -0.163795100311151 0 0.0018831372116427 -0.00509579605729504 0.999985243219512 100 0.000436120710674004 1 1 0 0 +187 2 1 0.0115800490964333 -0.163680645018392 0 0.00112990899248757 -0.00508857283858444 0.999986414773789 100 0.000423908912807747 1 1 0 0 +188 2 1 0.00386010949761495 -0.163623414670378 0 0.00037664077523672 -0.00508496110140866 0.99998700057167 100 0.000417802578112969 1 1 0 0 +189 2 1 -0.00386010949761495 -0.163623414670378 0 -0.00037664077523672 -0.00508496110140866 0.99998700057167 100 0.000417802578112969 1 1 0 0 +190 2 1 -0.0115800490964333 -0.163680645018392 0 -0.00112990899248757 -0.00508857283858444 0.999986414773789 100 0.000423908912807747 1 1 0 0 +191 2 1 -0.0192991505375679 -0.163795100311151 0 -0.0018831372116427 -0.00509579605729504 0.999985243219512 100 0.000436120710674004 1 1 0 0 +192 2 1 -0.027016855154395 -0.163966769742898 0 -0.00263629877254489 -0.00510663024630115 0.999983485991799 100 0.000454436215022724 1 1 0 0 +193 2 1 -0.0347326044380121 -0.164195637106775 0 -0.00338936702289542 -0.00512107463885769 0.999981143215075 100 0.000478852800142704 1 1 0 0 +194 2 1 -0.0424458401002727 -0.164481680798966 0 -0.0041423153213947 -0.00513912821284945 0.999978215055204 100 0.000509366963342472 1 1 0 0 +195 2 1 -0.0501560041367792 -0.164824873820514 0 -0.0048951170408803 -0.00516078969097056 0.99997470171946 100 0.000545974329497767 1 1 0 0 +196 2 1 0.0588204839140358 0.164902268329903 0 0.0052187818919214 0.00516383704542311 0.999973049188094 100 0.000581497904477146 1 1 0 0 +197 2 1 0.0497781459979283 0.165292200169207 0 0.00441622536327759 0.00518769198446845 0.999976792133405 100 0.000539954720807145 1 1 0 0 +198 2 1 0.0407323250591229 0.165617201210491 0 0.00361350236940675 0.0052075738481307 0.999979911685852 100 0.000505326316670107 1 1 0 0 +199 2 1 0.0316836538036038 0.165877239910446 0 0.00281064314820036 0.00522348113795407 0.999982407610202 100 0.000477617640740391 1 1 0 0 diff --git a/Tests/input/Ellipsoid_DGIA.rml b/Intern/RayCore/tests/input/Ellipsoid_DGIA.rml similarity index 100% rename from Tests/input/Ellipsoid_DGIA.rml rename to Intern/RayCore/tests/input/Ellipsoid_DGIA.rml diff --git a/Tests/input/Ellipsoid_MB.csv b/Intern/RayCore/tests/input/Ellipsoid_MB.csv similarity index 98% rename from Tests/input/Ellipsoid_MB.csv rename to Intern/RayCore/tests/input/Ellipsoid_MB.csv index 4b1cc98de..f69b13e7e 100644 --- a/Tests/input/Ellipsoid_MB.csv +++ b/Intern/RayCore/tests/input/Ellipsoid_MB.csv @@ -1,202 +1,202 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -1 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -2 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -3 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -4 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -5 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -6 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -7 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -8 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -9 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -10 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -11 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -12 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -13 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -14 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -15 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -16 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -17 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -18 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -19 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -20 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -21 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -22 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -23 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -24 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -25 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -26 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -27 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -28 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -29 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -30 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -31 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -32 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -33 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -34 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -35 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -36 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -37 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -38 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -39 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -40 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -41 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -42 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -43 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -44 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -45 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -46 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -47 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -48 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -49 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -50 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -51 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -52 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -53 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -54 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -55 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -56 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -57 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -58 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -59 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -60 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -61 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -62 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -63 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -64 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -65 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -66 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -67 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -68 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -69 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -70 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -71 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -72 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -73 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -74 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -75 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -76 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -77 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -78 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -79 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -80 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -81 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -82 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -83 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -84 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -85 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -86 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -87 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -88 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -89 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -90 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -91 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -92 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -93 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -94 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -95 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -96 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -97 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -98 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -99 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -100 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -101 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -102 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -103 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -104 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -105 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -106 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -107 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -108 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -109 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -110 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -111 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -112 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -113 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -114 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -115 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -116 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -117 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -118 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -119 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -120 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -121 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -122 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -123 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -124 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -125 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -126 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -127 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -128 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -129 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -130 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -131 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -132 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -133 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -134 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -135 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -136 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -137 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -138 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -139 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -140 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -141 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -142 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -143 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -144 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -145 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -146 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -147 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -148 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -149 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -150 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -151 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -152 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -153 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -154 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -155 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -156 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -157 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -158 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -159 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -160 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -161 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -162 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -163 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -164 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -165 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -166 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -167 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -168 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -169 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -170 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -171 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -172 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -173 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -174 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -175 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -176 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -177 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -178 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -179 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -180 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -181 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -182 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -183 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -184 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -185 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -186 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -187 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -188 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -189 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -190 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -191 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -192 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -193 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -194 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -195 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -196 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -197 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -198 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 -199 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +1 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +2 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +3 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +4 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +5 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +6 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +7 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +8 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +9 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +10 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +11 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +12 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +13 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +14 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +15 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +16 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +17 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +18 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +19 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +20 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +21 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +22 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +23 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +24 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +25 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +26 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +27 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +28 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +29 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +30 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +31 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +32 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +33 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +34 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +35 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +36 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +37 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +38 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +39 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +40 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +41 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +42 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +43 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +44 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +45 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +46 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +47 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +48 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +49 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +50 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +51 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +52 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +53 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +54 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +55 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +56 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +57 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +58 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +59 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +60 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +61 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +62 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +63 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +64 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +65 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +66 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +67 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +68 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +69 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +70 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +71 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +72 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +73 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +74 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +75 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +76 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +77 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +78 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +79 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +80 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +81 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +82 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +83 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +84 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +85 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +86 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +87 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +88 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +89 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +90 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +91 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +92 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +93 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +94 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +95 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +96 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +97 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +98 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +99 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +100 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +101 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +102 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +103 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +104 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +105 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +106 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +107 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +108 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +109 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +110 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +111 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +112 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +113 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +114 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +115 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +116 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +117 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +118 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +119 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +120 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +121 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +122 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +123 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +124 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +125 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +126 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +127 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +128 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +129 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +130 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +131 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +132 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +133 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +134 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +135 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +136 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +137 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +138 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +139 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +140 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +141 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +142 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +143 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +144 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +145 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +146 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +147 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +148 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +149 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +150 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +151 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +152 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +153 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +154 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +155 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +156 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +157 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +158 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +159 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +160 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +161 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +162 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +163 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +164 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +165 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +166 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +167 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +168 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +169 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +170 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +171 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +172 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +173 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +174 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +175 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +176 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +177 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +178 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +179 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +180 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +181 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +182 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +183 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +184 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +185 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +186 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +187 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +188 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +189 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +190 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +191 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +192 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +193 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +194 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +195 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +196 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +197 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +198 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 +199 2 1 0 -1.65019085494786e-13 0 0 -1.11022302462516e-16 1 100 0 1 1 0 0 diff --git a/Tests/input/Ellipsoid_MB.rml b/Intern/RayCore/tests/input/Ellipsoid_MB.rml similarity index 100% rename from Tests/input/Ellipsoid_MB.rml rename to Intern/RayCore/tests/input/Ellipsoid_MB.rml diff --git a/Tests/input/Ellipsoid_PM.csv b/Intern/RayCore/tests/input/Ellipsoid_PM.csv similarity index 99% rename from Tests/input/Ellipsoid_PM.csv rename to Intern/RayCore/tests/input/Ellipsoid_PM.csv index 55cef9d99..1ea3027b0 100644 --- a/Tests/input/Ellipsoid_PM.csv +++ b/Intern/RayCore/tests/input/Ellipsoid_PM.csv @@ -1,202 +1,202 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -5.50000045833338 -5.50000114583346 0 -0.000499999916666671 -0.000499999979166638 0.999999750000021 100 0.00275000045746765 1 1 0 0 -1 2 1 -4.65384643151648 -5.50000095056707 0 -0.000423076857570933 -0.000499999979166665 0.999999785502974 100 0.00235946779537244 1 1 0 0 -2 2 1 -3.8076924597747 -5.50000078784532 0 -0.000346153795971782 -0.000499999979166665 0.999999815088768 100 0.00203402392708085 1 1 0 0 -3 2 1 -2.96153853309437 -5.50000065766779 0 -0.000269230732324383 -0.000499999979166665 0.999999838757404 100 0.00177366884497587 1 1 0 0 -4 2 1 -2.11538464146184 -5.50000056003492 0 -0.000192307667083903 -0.000499999979166665 0.999999856508881 100 0.0015784025370067 1 1 0 0 -5 2 1 -1.26923077486345 -5.50000049494579 0 -0.000115384600705508 -0.000499999979166638 0.999999868343198 100 0.00144822500408281 1 1 0 0 -6 2 1 -0.423076923285541 -5.5000004624016 0 -3.84615336443636e-05 -0.000499999979166665 0.999999874260358 100 0.00138313623756403 1 1 0 0 -7 2 1 0.423076923285541 -5.5000004624016 0 3.84615336443636e-05 -0.000499999979166665 0.999999874260358 100 0.00138313623756403 1 1 0 0 -8 2 1 1.26923077486345 -5.50000049494579 0 0.000115384600705508 -0.000499999979166638 0.999999868343198 100 0.00144822500408281 1 1 0 0 -9 2 1 2.11538464146184 -5.50000056003492 0 0.000192307667083903 -0.000499999979166665 0.999999856508881 100 0.0015784025370067 1 1 0 0 -10 2 1 2.96153853309437 -5.50000065766779 0 0.000269230732324383 -0.000499999979166665 0.999999838757404 100 0.00177366884497587 1 1 0 0 -11 2 1 3.8076924597747 -5.50000078784532 0 0.000346153795971782 -0.000499999979166665 0.999999815088768 100 0.00203402392708085 1 1 0 0 -12 2 1 4.65384643151648 -5.50000095056707 0 0.000423076857570933 -0.000499999979166665 0.999999785502974 100 0.00235946779537244 1 1 0 0 -13 2 1 5.50000045833338 -5.50000114583346 0 0.000499999916666671 -0.000499999979166638 0.999999750000021 100 0.00275000045746765 1 1 0 0 -14 2 1 -5.50000045833338 -4.65384701324731 0 -0.000499999934418149 -0.000423076910455539 0.999999785502974 100 0.00235946779616825 1 1 0 0 -15 2 1 -4.65384643151648 -4.65384684802193 0 -0.000423076872591414 -0.000423076910455539 0.999999821005928 100 0.00196893514669227 1 1 0 0 -16 2 1 -3.8076924597747 -4.6538467103343 0 -0.000346153808261266 -0.000423076910455539 0.999999850591723 100 0.00164349128874619 1 1 0 0 -17 2 1 -2.96153853309437 -4.65384660018397 0 -0.000269230741882871 -0.000423076910455539 0.99999987426036 100 0.00138313621653197 1 1 0 0 -18 2 1 -2.11538464146184 -4.65384651757164 0 -0.000192307673911395 -0.000423076910455567 0.999999892011837 100 0.00118786991492925 1 1 0 0 -19 2 1 -1.26923077486345 -4.65384646249608 0 -0.000115384604802003 -0.000423076910455511 0.999999903846156 100 0.00105769238791709 1 1 0 0 -20 2 1 -0.423076923285541 -4.65384643495881 0 -3.8461535009862e-05 -0.000423076910455539 0.999999909763315 100 0.000992603625491029 1 1 0 0 -21 2 1 0.423076923285541 -4.65384643495881 0 3.8461535009862e-05 -0.000423076910455539 0.999999909763315 100 0.000992603625491029 1 1 0 0 -22 2 1 1.26923077486345 -4.65384646249608 0 0.000115384604802003 -0.000423076910455511 0.999999903846156 100 0.00105769238791709 1 1 0 0 -23 2 1 2.11538464146184 -4.65384651757164 0 0.000192307673911395 -0.000423076910455567 0.999999892011837 100 0.00118786991492925 1 1 0 0 -24 2 1 2.96153853309437 -4.65384660018397 0 0.000269230741882871 -0.000423076910455539 0.99999987426036 100 0.00138313621653197 1 1 0 0 -25 2 1 3.8076924597747 -4.6538467103343 0 0.000346153808261266 -0.000423076910455539 0.999999850591723 100 0.00164349128874619 1 1 0 0 -26 2 1 4.65384643151648 -4.65384684802193 0 0.000423076872591414 -0.000423076910455539 0.999999821005928 100 0.00196893514669227 1 1 0 0 -27 2 1 5.50000045833338 -4.65384701324731 0 0.000499999934418149 -0.000423076910455539 0.999999785502974 100 0.00235946779616825 1 1 0 0 -28 2 1 -5.50000045833338 -3.80769293573624 0 -0.000499999949211047 -0.000346153839240998 0.999999815088768 100 0.00203402392799035 1 1 0 0 -29 2 1 -4.65384643151648 -3.80769280055175 0 -0.000423076885108482 -0.000346153839240998 0.999999850591723 100 0.00164349128806407 1 1 0 0 -30 2 1 -3.8076924597747 -3.80769268789812 0 -0.000346153818502504 -0.000346153839240998 0.99999988017752 100 0.00131804744194142 1 1 0 0 -31 2 1 -2.96153853309437 -3.80769259777538 0 -0.000269230749848278 -0.000346153839241026 0.999999903846157 100 0.00105769237575259 1 1 0 0 -32 2 1 -2.11538464146184 -3.80769253018322 0 -0.000192307679600971 -0.000346153839240998 0.999999921597635 100 0.000862426083017453 1 1 0 0 -33 2 1 -1.26923077486345 -3.80769248512172 0 -0.000115384608215749 -0.000346153839240998 0.999999933431954 100 0.000732248557596904 1 1 0 0 -34 2 1 -0.423076923285541 -3.80769246259108 0 -3.84615361477773e-05 -0.000346153839240998 0.999999939349113 100 0.000667159796194028 1 1 0 0 -35 2 1 0.423076923285541 -3.80769246259108 0 3.84615361477773e-05 -0.000346153839240998 0.999999939349113 100 0.000667159796194028 1 1 0 0 -36 2 1 1.26923077486345 -3.80769248512172 0 0.000115384608215749 -0.000346153839240998 0.999999933431954 100 0.000732248557596904 1 1 0 0 -37 2 1 2.11538464146184 -3.80769253018322 0 0.000192307679600971 -0.000346153839240998 0.999999921597635 100 0.000862426083017453 1 1 0 0 -38 2 1 2.96153853309437 -3.80769259777538 0 0.000269230749848278 -0.000346153839241026 0.999999903846157 100 0.00105769237575259 1 1 0 0 -39 2 1 3.8076924597747 -3.80769268789812 0 0.000346153818502504 -0.000346153839240998 0.99999988017752 100 0.00131804744194142 1 1 0 0 -40 2 1 4.65384643151648 -3.80769280055175 0 0.000423076885108482 -0.000346153839240998 0.999999850591723 100 0.00164349128806407 1 1 0 0 -41 2 1 5.50000045833338 -3.80769293573624 0 0.000499999949211047 -0.000346153839240998 0.999999815088768 100 0.00203402392799035 1 1 0 0 -42 2 1 -5.50000045833338 -2.96153890328673 0 -0.000499999961045366 -0.000269230765978234 0.999999838757404 100 0.00177366884429375 1 1 0 0 -43 2 1 -4.65384643151648 -2.96153879814344 0 -0.000423076895122137 -0.000269230765978234 0.99999987426036 100 0.00138313621528141 1 1 0 0 -44 2 1 -3.8076924597747 -2.96153871052392 0 -0.000346153826695494 -0.000269230765978234 0.999999903846157 100 0.00105769237688946 1 1 0 0 -45 2 1 -2.96153853309437 -2.96153864042862 0 -0.000269230756220604 -0.000269230765978234 0.999999927514794 100 0.000797337316726043 1 1 0 0 -46 2 1 -2.11538464146184 -2.96153858785664 0 -0.000192307684152632 -0.000269230765978234 0.999999945266273 100 0.000602071028197315 1 1 0 0 -47 2 1 -1.26923077486345 -2.96153855280888 0 -0.000115384610946746 -0.000269230765978234 0.999999957100592 100 0.000471893505732623 1 1 0 0 -48 2 1 -0.423076923285541 -2.96153853528511 0 -3.84615370581095e-05 -0.000269230765978234 0.999999963017752 100 0.000406804744898182 1 1 0 0 -49 2 1 0.423076923285541 -2.96153853528511 0 3.84615370581095e-05 -0.000269230765978234 0.999999963017752 100 0.000406804744898182 1 1 0 0 -50 2 1 1.26923077486345 -2.96153855280888 0 0.000115384610946746 -0.000269230765978234 0.999999957100592 100 0.000471893505732623 1 1 0 0 -51 2 1 2.11538464146184 -2.96153858785664 0 0.000192307684152633 -0.000269230765978234 0.999999945266273 100 0.000602071028197315 1 1 0 0 -52 2 1 2.96153853309437 -2.96153864042862 0 0.000269230756220604 -0.000269230765978234 0.999999927514794 100 0.000797337316726043 1 1 0 0 -53 2 1 3.8076924597747 -2.96153871052392 0 0.000346153826695494 -0.000269230765978234 0.999999903846157 100 0.00105769237688946 1 1 0 0 -54 2 1 4.65384643151648 -2.96153879814344 0 0.000423076895122137 -0.000269230765978234 0.99999987426036 100 0.00138313621528141 1 1 0 0 -55 2 1 5.50000045833338 -2.96153890328673 0 0.000499999961045366 -0.000269230765978234 0.999999838757404 100 0.00177366884429375 1 1 0 0 -56 2 1 -5.50000045833338 -2.11538490588531 0 -0.000499999969921105 -0.000192307691122384 0.999999856508881 100 0.00157840253712038 1 1 0 0 -57 2 1 -4.65384643151648 -2.11538483078287 0 -0.000423076902632378 -0.000192307691122384 0.999999892011837 100 0.00118786991743036 1 1 0 0 -58 2 1 -3.8076924597747 -2.11538476819706 0 -0.000346153832840237 -0.000192307691122329 0.999999921597635 100 0.00086242608279008 1 1 0 0 -59 2 1 -2.96153853309437 -2.11538471812894 0 -0.000269230760999848 -0.000192307691122356 0.999999945266273 100 0.000602071027515194 1 1 0 0 -60 2 1 -2.11538464146184 -2.11538468057794 0 -0.000192307687566378 -0.000192307691122356 0.999999963017752 100 0.000406804744102374 1 1 0 0 -61 2 1 -1.26923077486345 -2.11538465554342 0 -0.000115384612994993 -0.000192307691122356 0.999999974852071 100 0.000276627223342985 1 1 0 0 -62 2 1 -0.42307692328554 -2.11538464302649 0 -3.84615377408587e-05 -0.000192307691122356 0.999999980769231 100 0.000211538463872785 1 1 0 0 -63 2 1 0.42307692328554 -2.11538464302649 0 3.84615377408587e-05 -0.000192307691122356 0.999999980769231 100 0.000211538463872785 1 1 0 0 -64 2 1 1.26923077486345 -2.11538465554342 0 0.000115384612994993 -0.000192307691122356 0.999999974852071 100 0.000276627223342985 1 1 0 0 -65 2 1 2.11538464146184 -2.11538468057794 0 0.000192307687566378 -0.000192307691122356 0.999999963017752 100 0.000406804744102374 1 1 0 0 -66 2 1 2.96153853309437 -2.11538471812894 0 0.000269230760999848 -0.000192307691122356 0.999999945266273 100 0.000602071027515194 1 1 0 0 -67 2 1 3.8076924597747 -2.11538476819706 0 0.000346153832840237 -0.000192307691122329 0.999999921597635 100 0.00086242608279008 1 1 0 0 -68 2 1 4.65384643151648 -2.11538483078287 0 0.000423076902632378 -0.000192307691122384 0.999999892011837 100 0.00118786991743036 1 1 0 0 -69 2 1 5.50000045833338 -2.11538490588531 0 0.000499999969921105 -0.000192307691122384 0.999999856508881 100 0.00157840253712038 1 1 0 0 -70 2 1 -5.50000045833338 -1.26923093351733 0 -0.000499999975838265 -0.000115384615128583 0.999999868343198 100 0.001448225005106 1 1 0 0 -71 2 1 -4.65384643151648 -1.26923088845555 0 -0.000423076907639205 -0.000115384615128555 0.999999903846156 100 0.0010576923878034 1 1 0 0 -72 2 1 -3.8076924597747 -1.26923085090483 0 -0.000346153836936732 -0.000115384615128583 0.999999933431954 100 0.000732248558279025 1 1 0 0 -73 2 1 -2.96153853309437 -1.26923082086374 0 -0.000269230764186011 -0.000115384615128583 0.999999957100592 100 0.000471893505050502 1 1 0 0 -74 2 1 -2.11538464146184 -1.26923079833296 0 -0.000192307689842209 -0.000115384615128555 0.999999974852071 100 0.000276627223456671 1 1 0 0 -75 2 1 -1.26923077486345 -1.26923078331255 0 -0.000115384614360492 -0.000115384615128583 0.99999998668639 100 0.000146449704175211 1 1 0 0 -76 2 1 -0.423076923285541 -1.269230775802 0 -3.84615381960248e-05 -0.000115384615128583 0.99999999260355 100 8.13609474334953e-05 1 1 0 0 -77 2 1 0.423076923285541 -1.269230775802 0 3.84615381960248e-05 -0.000115384615128583 0.99999999260355 100 8.13609474334953e-05 1 1 0 0 -78 2 1 1.26923077486345 -1.26923078331255 0 0.000115384614360492 -0.000115384615128583 0.99999998668639 100 0.000146449704175211 1 1 0 0 -79 2 1 2.11538464146184 -1.26923079833296 0 0.000192307689842209 -0.000115384615128555 0.999999974852071 100 0.000276627223456671 1 1 0 0 -80 2 1 2.96153853309437 -1.26923082086374 0 0.000269230764186011 -0.000115384615128583 0.999999957100592 100 0.000471893505050502 1 1 0 0 -81 2 1 3.8076924597747 -1.26923085090483 0 0.000346153836936732 -0.000115384615128583 0.999999933431954 100 0.000732248558279025 1 1 0 0 -82 2 1 4.65384643151648 -1.26923088845555 0 0.000423076907639205 -0.000115384615128555 0.999999903846156 100 0.0010576923878034 1 1 0 0 -83 2 1 5.50000045833338 -1.26923093351733 0 0.000499999975838265 -0.000115384615128583 0.999999868343198 100 0.001448225005106 1 1 0 0 -84 2 1 -5.50000045833338 -0.423076976170333 0 -0.000499999978796844 -3.84615384520504e-05 0.999999874260358 100 0.00138313623961039 1 1 0 0 -85 2 1 -4.65384643151648 -0.423076961149571 0 -0.000423076910142619 -3.84615384520226e-05 0.999999909763315 100 0.000992603625491029 1 1 0 0 -86 2 1 -3.8076924597747 -0.423076948632619 0 -0.00034615383898498 -3.84615384520504e-05 0.999999939349113 100 0.000667159797103523 1 1 0 0 -87 2 1 -2.96153853309437 -0.423076938618945 0 -0.000269230765779093 -3.84615384520504e-05 0.999999963017752 100 0.000406804745580303 1 1 0 0 -88 2 1 -2.11538464146184 -0.42307693110855 0 -0.000192307690980124 -3.84615384520226e-05 0.999999980769231 100 0.000211538464441219 1 1 0 0 -89 2 1 -1.26923077486345 -0.423076926101714 0 -0.000115384615043241 -3.84615384520226e-05 0.99999999260355 100 8.13609466376874e-05 1 1 0 0 -90 2 1 -0.423076923285541 -0.423076923598435 0 -3.84615384236079e-05 -3.84615384520504e-05 0.99999999852071 100 1.62721880769823e-05 1 1 0 0 -91 2 1 0.423076923285541 -0.423076923598435 0 3.84615384236079e-05 -3.84615384520504e-05 0.99999999852071 100 1.62721880769823e-05 1 1 0 0 -92 2 1 1.26923077486345 -0.423076926101714 0 0.000115384615043241 -3.84615384520226e-05 0.99999999260355 100 8.13609466376874e-05 1 1 0 0 -93 2 1 2.11538464146184 -0.42307693110855 0 0.000192307690980124 -3.84615384520226e-05 0.999999980769231 100 0.000211538464441219 1 1 0 0 -94 2 1 2.96153853309437 -0.423076938618945 0 0.000269230765779093 -3.84615384520504e-05 0.999999963017752 100 0.000406804745580303 1 1 0 0 -95 2 1 3.8076924597747 -0.423076948632619 0 0.00034615383898498 -3.84615384520504e-05 0.999999939349113 100 0.000667159797103523 1 1 0 0 -96 2 1 4.65384643151648 -0.423076961149571 0 0.000423076910142619 -3.84615384520226e-05 0.999999909763315 100 0.000992603625491029 1 1 0 0 -97 2 1 5.50000045833338 -0.423076976170333 0 0.000499999978796844 -3.84615384520504e-05 0.999999874260358 100 0.00138313623961039 1 1 0 0 -98 2 1 -5.50000045833338 0.423076976170029 0 -0.000499999978796844 3.84615384520504e-05 0.999999874260358 100 0.00138313623972408 1 1 0 0 -99 2 1 -4.65384643151648 0.423076961149693 0 -0.000423076910142619 3.84615384520781e-05 0.999999909763315 100 0.000992603624581534 1 1 0 0 -100 2 1 -3.8076924597747 0.423076948632322 0 -0.00034615383898498 3.84615384520504e-05 0.999999939349113 100 0.00066715979755827 1 1 0 0 -101 2 1 -2.96153853309437 0.423076938618868 0 -0.000269230765779093 3.84615384520226e-05 0.999999963017752 100 0.000406804746944545 1 1 0 0 -102 2 1 -2.11538464146184 0.42307693110849 0 -0.000192307690980124 3.84615384520504e-05 0.999999980769231 100 0.000211538465009653 1 1 0 0 -103 2 1 -1.26923077486345 0.423076926101805 0 -0.000115384615043241 3.84615384520781e-05 0.99999999260355 100 8.1360947660869e-05 1 1 0 0 -104 2 1 -0.423076923285541 0.423076923598532 0 -3.84615384236079e-05 3.84615384520504e-05 0.99999999852071 100 1.62721879632954e-05 1 1 0 0 -105 2 1 0.423076923285541 0.423076923598532 0 3.84615384236079e-05 3.84615384520504e-05 0.99999999852071 100 1.62721879632954e-05 1 1 0 0 -106 2 1 1.26923077486345 0.423076926101805 0 0.000115384615043241 3.84615384520781e-05 0.99999999260355 100 8.1360947660869e-05 1 1 0 0 -107 2 1 2.11538464146184 0.42307693110849 0 0.000192307690980124 3.84615384520504e-05 0.999999980769231 100 0.000211538465009653 1 1 0 0 -108 2 1 2.96153853309437 0.423076938618868 0 0.000269230765779093 3.84615384520226e-05 0.999999963017752 100 0.000406804746944545 1 1 0 0 -109 2 1 3.8076924597747 0.423076948632322 0 0.00034615383898498 3.84615384520504e-05 0.999999939349113 100 0.00066715979755827 1 1 0 0 -110 2 1 4.65384643151648 0.423076961149693 0 0.000423076910142619 3.84615384520781e-05 0.999999909763315 100 0.000992603624581534 1 1 0 0 -111 2 1 5.50000045833338 0.423076976170029 0 0.000499999978796844 3.84615384520504e-05 0.999999874260358 100 0.00138313623972408 1 1 0 0 -112 2 1 -5.50000045833338 1.26923093351734 0 -0.000499999975838265 0.000115384615128583 0.999999868343199 100 0.00144822500396913 1 1 0 0 -113 2 1 -4.65384643151648 1.26923088845579 0 -0.000423076907639205 0.000115384615128583 0.999999903846156 100 0.00105769238825815 1 1 0 0 -114 2 1 -3.8076924597747 1.26923085090444 0 -0.000346153836936732 0.000115384615128555 0.999999933431954 100 0.000732248558279025 1 1 0 0 -115 2 1 -2.96153853309437 1.26923082086359 0 -0.000269230764186011 0.000115384615128583 0.999999957100592 100 0.00047189350550525 1 1 0 0 -116 2 1 -2.11538464146184 1.26923079833292 0 -0.000192307689842209 0.000115384615128583 0.999999974852071 100 0.000276627224252479 1 1 0 0 -117 2 1 -1.26923077486345 1.26923078331246 0 -0.000115384614360492 0.000115384615128555 0.99999998668639 100 0.000146449705084706 1 1 0 0 -118 2 1 -0.42307692328554 1.26923077580226 0 -3.84615381960248e-05 0.000115384615128583 0.99999999260355 100 8.13609473198085e-05 1 1 0 0 -119 2 1 0.42307692328554 1.26923077580226 0 3.84615381960248e-05 0.000115384615128583 0.99999999260355 100 8.13609473198085e-05 1 1 0 0 -120 2 1 1.26923077486345 1.26923078331246 0 0.000115384614360492 0.000115384615128555 0.99999998668639 100 0.000146449705084706 1 1 0 0 -121 2 1 2.11538464146184 1.26923079833292 0 0.000192307689842209 0.000115384615128583 0.999999974852071 100 0.000276627224252479 1 1 0 0 -122 2 1 2.96153853309437 1.26923082086359 0 0.000269230764186011 0.000115384615128583 0.999999957100592 100 0.00047189350550525 1 1 0 0 -123 2 1 3.8076924597747 1.26923085090444 0 0.000346153836936732 0.000115384615128555 0.999999933431954 100 0.000732248558279025 1 1 0 0 -124 2 1 4.65384643151648 1.26923088845579 0 0.000423076907639205 0.000115384615128583 0.999999903846156 100 0.00105769238825815 1 1 0 0 -125 2 1 5.50000045833338 1.26923093351734 0 0.000499999975838265 0.000115384615128583 0.999999868343199 100 0.00144822500396913 1 1 0 0 -126 2 1 -5.50000045833338 2.11538490588455 0 -0.000499999969921105 0.000192307691122356 0.999999856508881 100 0.00157840253746144 1 1 0 0 -127 2 1 -4.65384643151648 2.11538483078215 0 -0.000423076902632378 0.000192307691122329 0.999999892011837 100 0.00118786991617981 1 1 0 0 -128 2 1 -3.8076924597747 2.11538476819698 0 -0.000346153832840237 0.000192307691122356 0.999999921597635 100 0.000862426084040635 1 1 0 0 -129 2 1 -2.96153853309437 2.11538471812874 0 -0.000269230760999848 0.000192307691122356 0.999999945266273 100 0.000602071027969941 1 1 0 0 -130 2 1 -2.11538464146184 2.11538468057764 0 -0.000192307687566378 0.000192307691122329 0.999999963017752 100 0.000406804743192879 1 1 0 0 -131 2 1 -1.26923077486345 2.11538465554357 0 -0.000115384612994993 0.000192307691122384 0.999999974852071 100 0.000276627224025106 1 1 0 0 -132 2 1 -0.42307692328554 2.1153846430264 0 -3.84615377408587e-05 0.000192307691122384 0.999999980769231 100 0.000211538464782279 1 1 0 0 -133 2 1 0.42307692328554 2.1153846430264 0 3.84615377408587e-05 0.000192307691122384 0.999999980769231 100 0.000211538464782279 1 1 0 0 -134 2 1 1.26923077486345 2.11538465554357 0 0.000115384612994993 0.000192307691122384 0.999999974852071 100 0.000276627224025106 1 1 0 0 -135 2 1 2.11538464146184 2.11538468057764 0 0.000192307687566378 0.000192307691122329 0.999999963017752 100 0.000406804743192879 1 1 0 0 -136 2 1 2.96153853309437 2.11538471812874 0 0.000269230760999848 0.000192307691122356 0.999999945266273 100 0.000602071027969941 1 1 0 0 -137 2 1 3.8076924597747 2.11538476819698 0 0.000346153832840237 0.000192307691122356 0.999999921597635 100 0.000862426084040635 1 1 0 0 -138 2 1 4.65384643151648 2.11538483078215 0 0.000423076902632378 0.000192307691122329 0.999999892011837 100 0.00118786991617981 1 1 0 0 -139 2 1 5.50000045833338 2.11538490588455 0 0.000499999969921105 0.000192307691122356 0.999999856508881 100 0.00157840253746144 1 1 0 0 -140 2 1 -5.50000045833338 2.96153890328674 0 -0.000499999961045366 0.000269230765978234 0.999999838757404 100 0.00177366884406638 1 1 0 0 -141 2 1 -4.65384643151648 2.96153879814346 0 -0.000423076895122137 0.000269230765978234 0.99999987426036 100 0.00138313621653197 1 1 0 0 -142 2 1 -3.8076924597747 2.96153871052384 0 -0.000346153826695494 0.000269230765978234 0.999999903846157 100 0.00105769237677578 1 1 0 0 -143 2 1 -2.96153853309437 2.96153864042833 0 -0.000269230756220604 0.000269230765978234 0.999999927514794 100 0.000797337317749225 1 1 0 0 -144 2 1 -2.11538464146184 2.96153858785647 0 -0.000192307684152632 0.000269230765978234 0.999999945266273 100 0.00060207102694676 1 1 0 0 -145 2 1 -1.26923077486345 2.96153855280868 0 -0.000115384610946746 0.000269230765978207 0.999999957100592 100 0.000471893506301058 1 1 0 0 -146 2 1 -0.423076923285541 2.96153853528483 0 -3.84615370581095e-05 0.000269230765978234 0.999999963017752 100 0.000406804745125555 1 1 0 0 -147 2 1 0.423076923285541 2.96153853528483 0 3.84615370581095e-05 0.000269230765978234 0.999999963017752 100 0.000406804745125555 1 1 0 0 -148 2 1 1.26923077486345 2.96153855280868 0 0.000115384610946746 0.000269230765978207 0.999999957100592 100 0.000471893506301058 1 1 0 0 -149 2 1 2.11538464146184 2.96153858785647 0 0.000192307684152633 0.000269230765978234 0.999999945266273 100 0.00060207102694676 1 1 0 0 -150 2 1 2.96153853309437 2.96153864042833 0 0.000269230756220604 0.000269230765978234 0.999999927514794 100 0.000797337317749225 1 1 0 0 -151 2 1 3.8076924597747 2.96153871052384 0 0.000346153826695494 0.000269230765978234 0.999999903846157 100 0.00105769237677578 1 1 0 0 -152 2 1 4.65384643151648 2.96153879814346 0 0.000423076895122137 0.000269230765978234 0.99999987426036 100 0.00138313621653197 1 1 0 0 -153 2 1 5.50000045833338 2.96153890328674 0 0.000499999961045366 0.000269230765978234 0.999999838757404 100 0.00177366884406638 1 1 0 0 -154 2 1 -5.50000045833338 3.80769293573589 0 -0.000499999949211047 0.000346153839240998 0.999999815088768 100 0.00203402392548924 1 1 0 0 -155 2 1 -4.65384643151648 3.80769280055184 0 -0.000423076885108482 0.000346153839240998 0.999999850591723 100 0.00164349128931462 1 1 0 0 -156 2 1 -3.8076924597747 3.80769268789814 0 -0.000346153818502504 0.000346153839240998 0.99999988017752 100 0.00131804744148667 1 1 0 0 -157 2 1 -2.96153853309437 3.80769259777499 0 -0.000269230749848278 0.000346153839240998 0.999999903846157 100 0.00105769237666209 1 1 0 0 -158 2 1 -2.11538464146184 3.80769253018311 0 -0.000192307679600971 0.000346153839241026 0.999999921597635 100 0.000862426083585888 1 1 0 0 -159 2 1 -1.26923077486345 3.80769248512151 0 -0.000115384608215749 0.000346153839240998 0.999999933431954 100 0.000732248556460036 1 1 0 0 -160 2 1 -0.423076923285541 3.80769246259073 0 -3.84615361477773e-05 0.000346153839240998 0.999999939349113 100 0.00066715979755827 1 1 0 0 -161 2 1 0.423076923285541 3.80769246259073 0 3.84615361477773e-05 0.000346153839240998 0.999999939349113 100 0.00066715979755827 1 1 0 0 -162 2 1 1.26923077486345 3.80769248512151 0 0.000115384608215749 0.000346153839240998 0.999999933431954 100 0.000732248556460036 1 1 0 0 -163 2 1 2.11538464146184 3.80769253018311 0 0.000192307679600971 0.000346153839241026 0.999999921597635 100 0.000862426083585888 1 1 0 0 -164 2 1 2.96153853309437 3.80769259777499 0 0.000269230749848278 0.000346153839240998 0.999999903846157 100 0.00105769237666209 1 1 0 0 -165 2 1 3.8076924597747 3.80769268789814 0 0.000346153818502504 0.000346153839240998 0.99999988017752 100 0.00131804744148667 1 1 0 0 -166 2 1 4.65384643151648 3.80769280055184 0 0.000423076885108482 0.000346153839240998 0.999999850591723 100 0.00164349128931462 1 1 0 0 -167 2 1 5.50000045833338 3.80769293573589 0 0.000499999949211047 0.000346153839240998 0.999999815088768 100 0.00203402392548924 1 1 0 0 -168 2 1 -5.50000045833338 4.65384701324731 0 -0.000499999934418149 0.000423076910455567 0.999999785502974 100 0.00235946779559981 1 1 0 0 -169 2 1 -4.65384643151648 4.65384684802194 0 -0.000423076872591414 0.000423076910455539 0.999999821005928 100 0.00196893514441854 1 1 0 0 -170 2 1 -3.8076924597747 4.65384671033404 0 -0.000346153808261266 0.000423076910455539 0.999999850591723 100 0.00164349128965569 1 1 0 0 -171 2 1 -2.96153853309437 4.65384660018406 0 -0.000269230741882871 0.000423076910455567 0.99999987426036 100 0.00138313621505404 1 1 0 0 -172 2 1 -2.11538464146184 4.65384651757102 0 -0.000192307673911395 0.000423076910455539 0.999999892011837 100 0.00118786991629349 1 1 0 0 -173 2 1 -1.26923077486345 4.65384646249661 0 -0.000115384604802003 0.000423076910455567 0.999999903846156 100 0.00105769238928133 1 1 0 0 -174 2 1 -0.423076923285541 4.65384643495869 0 -3.8461535009862e-05 0.000423076910455539 0.999999909763315 100 0.000992603623785726 1 1 0 0 -175 2 1 0.423076923285541 4.65384643495869 0 3.8461535009862e-05 0.000423076910455539 0.999999909763315 100 0.000992603623785726 1 1 0 0 -176 2 1 1.26923077486345 4.65384646249661 0 0.000115384604802003 0.000423076910455567 0.999999903846156 100 0.00105769238928133 1 1 0 0 -177 2 1 2.11538464146184 4.65384651757102 0 0.000192307673911395 0.000423076910455539 0.999999892011837 100 0.00118786991629349 1 1 0 0 -178 2 1 2.96153853309437 4.65384660018406 0 0.000269230741882871 0.000423076910455567 0.99999987426036 100 0.00138313621505404 1 1 0 0 -179 2 1 3.8076924597747 4.65384671033404 0 0.000346153808261266 0.000423076910455539 0.999999850591723 100 0.00164349128965569 1 1 0 0 -180 2 1 4.65384643151648 4.65384684802194 0 0.000423076872591414 0.000423076910455539 0.999999821005928 100 0.00196893514441854 1 1 0 0 -181 2 1 5.50000045833338 4.65384701324731 0 0.000499999934418149 0.000423076910455567 0.999999785502974 100 0.00235946779559981 1 1 0 0 -182 2 1 -5.50000045833338 5.50000114583357 0 -0.000499999916666671 0.000499999979166693 0.999999750000021 100 0.00275000045849083 1 1 0 0 -183 2 1 -4.65384643151648 5.50000095056703 0 -0.000423076857570933 0.000499999979166665 0.999999785502974 100 0.00235946779412188 1 1 0 0 -184 2 1 -3.8076924597747 5.50000078784528 0 -0.000346153795971782 0.000499999979166665 0.999999815088768 100 0.00203402392685348 1 1 0 0 -185 2 1 -2.96153853309437 5.5000006576676 0 -0.000269230732324383 0.000499999979166665 0.999999838757404 100 0.00177366884508956 1 1 0 0 -186 2 1 -2.11538464146184 5.50000056003446 0 -0.000192307667083903 0.000499999979166665 0.999999856508881 100 0.00157840253791619 1 1 0 0 -187 2 1 -1.26923077486345 5.50000049494588 0 -0.000115384600705508 0.000499999979166693 0.999999868343199 100 0.00144822500442388 1 1 0 0 -188 2 1 -0.423076923285541 5.50000046240132 0 -3.84615336443636e-05 0.000499999979166665 0.999999874260358 100 0.00138313623824615 1 1 0 0 -189 2 1 0.423076923285541 5.50000046240132 0 3.84615336443636e-05 0.000499999979166665 0.999999874260358 100 0.00138313623824615 1 1 0 0 -190 2 1 1.26923077486345 5.50000049494588 0 0.000115384600705508 0.000499999979166693 0.999999868343199 100 0.00144822500442388 1 1 0 0 -191 2 1 2.11538464146184 5.50000056003446 0 0.000192307667083903 0.000499999979166665 0.999999856508881 100 0.00157840253791619 1 1 0 0 -192 2 1 2.96153853309437 5.5000006576676 0 0.000269230732324383 0.000499999979166665 0.999999838757404 100 0.00177366884508956 1 1 0 0 -193 2 1 3.8076924597747 5.50000078784528 0 0.000346153795971782 0.000499999979166665 0.999999815088768 100 0.00203402392685348 1 1 0 0 -194 2 1 4.65384643151648 5.50000095056703 0 0.000423076857570933 0.000499999979166665 0.999999785502974 100 0.00235946779412188 1 1 0 0 -195 2 1 5.50000045833338 5.50000114583357 0 0.000499999916666671 0.000499999979166693 0.999999750000021 100 0.00275000045849083 1 1 0 0 -196 2 1 -5.50000045833338 -5.50000114583346 0 -0.000499999916666671 -0.000499999979166638 0.999999750000021 100 0.00275000045746765 1 1 0 0 -197 2 1 -4.65384643151648 -5.50000095056707 0 -0.000423076857570933 -0.000499999979166665 0.999999785502974 100 0.00235946779537244 1 1 0 0 -198 2 1 -3.8076924597747 -5.50000078784532 0 -0.000346153795971782 -0.000499999979166665 0.999999815088768 100 0.00203402392708085 1 1 0 0 -199 2 1 -2.96153853309437 -5.50000065766779 0 -0.000269230732324383 -0.000499999979166665 0.999999838757404 100 0.00177366884497587 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -5.50000045833338 -5.50000114583346 0 -0.000499999916666671 -0.000499999979166638 0.999999750000021 100 0.00275000045746765 1 1 0 0 +1 2 1 -4.65384643151648 -5.50000095056707 0 -0.000423076857570933 -0.000499999979166665 0.999999785502974 100 0.00235946779537244 1 1 0 0 +2 2 1 -3.8076924597747 -5.50000078784532 0 -0.000346153795971782 -0.000499999979166665 0.999999815088768 100 0.00203402392708085 1 1 0 0 +3 2 1 -2.96153853309437 -5.50000065766779 0 -0.000269230732324383 -0.000499999979166665 0.999999838757404 100 0.00177366884497587 1 1 0 0 +4 2 1 -2.11538464146184 -5.50000056003492 0 -0.000192307667083903 -0.000499999979166665 0.999999856508881 100 0.0015784025370067 1 1 0 0 +5 2 1 -1.26923077486345 -5.50000049494579 0 -0.000115384600705508 -0.000499999979166638 0.999999868343198 100 0.00144822500408281 1 1 0 0 +6 2 1 -0.423076923285541 -5.5000004624016 0 -3.84615336443636e-05 -0.000499999979166665 0.999999874260358 100 0.00138313623756403 1 1 0 0 +7 2 1 0.423076923285541 -5.5000004624016 0 3.84615336443636e-05 -0.000499999979166665 0.999999874260358 100 0.00138313623756403 1 1 0 0 +8 2 1 1.26923077486345 -5.50000049494579 0 0.000115384600705508 -0.000499999979166638 0.999999868343198 100 0.00144822500408281 1 1 0 0 +9 2 1 2.11538464146184 -5.50000056003492 0 0.000192307667083903 -0.000499999979166665 0.999999856508881 100 0.0015784025370067 1 1 0 0 +10 2 1 2.96153853309437 -5.50000065766779 0 0.000269230732324383 -0.000499999979166665 0.999999838757404 100 0.00177366884497587 1 1 0 0 +11 2 1 3.8076924597747 -5.50000078784532 0 0.000346153795971782 -0.000499999979166665 0.999999815088768 100 0.00203402392708085 1 1 0 0 +12 2 1 4.65384643151648 -5.50000095056707 0 0.000423076857570933 -0.000499999979166665 0.999999785502974 100 0.00235946779537244 1 1 0 0 +13 2 1 5.50000045833338 -5.50000114583346 0 0.000499999916666671 -0.000499999979166638 0.999999750000021 100 0.00275000045746765 1 1 0 0 +14 2 1 -5.50000045833338 -4.65384701324731 0 -0.000499999934418149 -0.000423076910455539 0.999999785502974 100 0.00235946779616825 1 1 0 0 +15 2 1 -4.65384643151648 -4.65384684802193 0 -0.000423076872591414 -0.000423076910455539 0.999999821005928 100 0.00196893514669227 1 1 0 0 +16 2 1 -3.8076924597747 -4.6538467103343 0 -0.000346153808261266 -0.000423076910455539 0.999999850591723 100 0.00164349128874619 1 1 0 0 +17 2 1 -2.96153853309437 -4.65384660018397 0 -0.000269230741882871 -0.000423076910455539 0.99999987426036 100 0.00138313621653197 1 1 0 0 +18 2 1 -2.11538464146184 -4.65384651757164 0 -0.000192307673911395 -0.000423076910455567 0.999999892011837 100 0.00118786991492925 1 1 0 0 +19 2 1 -1.26923077486345 -4.65384646249608 0 -0.000115384604802003 -0.000423076910455511 0.999999903846156 100 0.00105769238791709 1 1 0 0 +20 2 1 -0.423076923285541 -4.65384643495881 0 -3.8461535009862e-05 -0.000423076910455539 0.999999909763315 100 0.000992603625491029 1 1 0 0 +21 2 1 0.423076923285541 -4.65384643495881 0 3.8461535009862e-05 -0.000423076910455539 0.999999909763315 100 0.000992603625491029 1 1 0 0 +22 2 1 1.26923077486345 -4.65384646249608 0 0.000115384604802003 -0.000423076910455511 0.999999903846156 100 0.00105769238791709 1 1 0 0 +23 2 1 2.11538464146184 -4.65384651757164 0 0.000192307673911395 -0.000423076910455567 0.999999892011837 100 0.00118786991492925 1 1 0 0 +24 2 1 2.96153853309437 -4.65384660018397 0 0.000269230741882871 -0.000423076910455539 0.99999987426036 100 0.00138313621653197 1 1 0 0 +25 2 1 3.8076924597747 -4.6538467103343 0 0.000346153808261266 -0.000423076910455539 0.999999850591723 100 0.00164349128874619 1 1 0 0 +26 2 1 4.65384643151648 -4.65384684802193 0 0.000423076872591414 -0.000423076910455539 0.999999821005928 100 0.00196893514669227 1 1 0 0 +27 2 1 5.50000045833338 -4.65384701324731 0 0.000499999934418149 -0.000423076910455539 0.999999785502974 100 0.00235946779616825 1 1 0 0 +28 2 1 -5.50000045833338 -3.80769293573624 0 -0.000499999949211047 -0.000346153839240998 0.999999815088768 100 0.00203402392799035 1 1 0 0 +29 2 1 -4.65384643151648 -3.80769280055175 0 -0.000423076885108482 -0.000346153839240998 0.999999850591723 100 0.00164349128806407 1 1 0 0 +30 2 1 -3.8076924597747 -3.80769268789812 0 -0.000346153818502504 -0.000346153839240998 0.99999988017752 100 0.00131804744194142 1 1 0 0 +31 2 1 -2.96153853309437 -3.80769259777538 0 -0.000269230749848278 -0.000346153839241026 0.999999903846157 100 0.00105769237575259 1 1 0 0 +32 2 1 -2.11538464146184 -3.80769253018322 0 -0.000192307679600971 -0.000346153839240998 0.999999921597635 100 0.000862426083017453 1 1 0 0 +33 2 1 -1.26923077486345 -3.80769248512172 0 -0.000115384608215749 -0.000346153839240998 0.999999933431954 100 0.000732248557596904 1 1 0 0 +34 2 1 -0.423076923285541 -3.80769246259108 0 -3.84615361477773e-05 -0.000346153839240998 0.999999939349113 100 0.000667159796194028 1 1 0 0 +35 2 1 0.423076923285541 -3.80769246259108 0 3.84615361477773e-05 -0.000346153839240998 0.999999939349113 100 0.000667159796194028 1 1 0 0 +36 2 1 1.26923077486345 -3.80769248512172 0 0.000115384608215749 -0.000346153839240998 0.999999933431954 100 0.000732248557596904 1 1 0 0 +37 2 1 2.11538464146184 -3.80769253018322 0 0.000192307679600971 -0.000346153839240998 0.999999921597635 100 0.000862426083017453 1 1 0 0 +38 2 1 2.96153853309437 -3.80769259777538 0 0.000269230749848278 -0.000346153839241026 0.999999903846157 100 0.00105769237575259 1 1 0 0 +39 2 1 3.8076924597747 -3.80769268789812 0 0.000346153818502504 -0.000346153839240998 0.99999988017752 100 0.00131804744194142 1 1 0 0 +40 2 1 4.65384643151648 -3.80769280055175 0 0.000423076885108482 -0.000346153839240998 0.999999850591723 100 0.00164349128806407 1 1 0 0 +41 2 1 5.50000045833338 -3.80769293573624 0 0.000499999949211047 -0.000346153839240998 0.999999815088768 100 0.00203402392799035 1 1 0 0 +42 2 1 -5.50000045833338 -2.96153890328673 0 -0.000499999961045366 -0.000269230765978234 0.999999838757404 100 0.00177366884429375 1 1 0 0 +43 2 1 -4.65384643151648 -2.96153879814344 0 -0.000423076895122137 -0.000269230765978234 0.99999987426036 100 0.00138313621528141 1 1 0 0 +44 2 1 -3.8076924597747 -2.96153871052392 0 -0.000346153826695494 -0.000269230765978234 0.999999903846157 100 0.00105769237688946 1 1 0 0 +45 2 1 -2.96153853309437 -2.96153864042862 0 -0.000269230756220604 -0.000269230765978234 0.999999927514794 100 0.000797337316726043 1 1 0 0 +46 2 1 -2.11538464146184 -2.96153858785664 0 -0.000192307684152632 -0.000269230765978234 0.999999945266273 100 0.000602071028197315 1 1 0 0 +47 2 1 -1.26923077486345 -2.96153855280888 0 -0.000115384610946746 -0.000269230765978234 0.999999957100592 100 0.000471893505732623 1 1 0 0 +48 2 1 -0.423076923285541 -2.96153853528511 0 -3.84615370581095e-05 -0.000269230765978234 0.999999963017752 100 0.000406804744898182 1 1 0 0 +49 2 1 0.423076923285541 -2.96153853528511 0 3.84615370581095e-05 -0.000269230765978234 0.999999963017752 100 0.000406804744898182 1 1 0 0 +50 2 1 1.26923077486345 -2.96153855280888 0 0.000115384610946746 -0.000269230765978234 0.999999957100592 100 0.000471893505732623 1 1 0 0 +51 2 1 2.11538464146184 -2.96153858785664 0 0.000192307684152633 -0.000269230765978234 0.999999945266273 100 0.000602071028197315 1 1 0 0 +52 2 1 2.96153853309437 -2.96153864042862 0 0.000269230756220604 -0.000269230765978234 0.999999927514794 100 0.000797337316726043 1 1 0 0 +53 2 1 3.8076924597747 -2.96153871052392 0 0.000346153826695494 -0.000269230765978234 0.999999903846157 100 0.00105769237688946 1 1 0 0 +54 2 1 4.65384643151648 -2.96153879814344 0 0.000423076895122137 -0.000269230765978234 0.99999987426036 100 0.00138313621528141 1 1 0 0 +55 2 1 5.50000045833338 -2.96153890328673 0 0.000499999961045366 -0.000269230765978234 0.999999838757404 100 0.00177366884429375 1 1 0 0 +56 2 1 -5.50000045833338 -2.11538490588531 0 -0.000499999969921105 -0.000192307691122384 0.999999856508881 100 0.00157840253712038 1 1 0 0 +57 2 1 -4.65384643151648 -2.11538483078287 0 -0.000423076902632378 -0.000192307691122384 0.999999892011837 100 0.00118786991743036 1 1 0 0 +58 2 1 -3.8076924597747 -2.11538476819706 0 -0.000346153832840237 -0.000192307691122329 0.999999921597635 100 0.00086242608279008 1 1 0 0 +59 2 1 -2.96153853309437 -2.11538471812894 0 -0.000269230760999848 -0.000192307691122356 0.999999945266273 100 0.000602071027515194 1 1 0 0 +60 2 1 -2.11538464146184 -2.11538468057794 0 -0.000192307687566378 -0.000192307691122356 0.999999963017752 100 0.000406804744102374 1 1 0 0 +61 2 1 -1.26923077486345 -2.11538465554342 0 -0.000115384612994993 -0.000192307691122356 0.999999974852071 100 0.000276627223342985 1 1 0 0 +62 2 1 -0.42307692328554 -2.11538464302649 0 -3.84615377408587e-05 -0.000192307691122356 0.999999980769231 100 0.000211538463872785 1 1 0 0 +63 2 1 0.42307692328554 -2.11538464302649 0 3.84615377408587e-05 -0.000192307691122356 0.999999980769231 100 0.000211538463872785 1 1 0 0 +64 2 1 1.26923077486345 -2.11538465554342 0 0.000115384612994993 -0.000192307691122356 0.999999974852071 100 0.000276627223342985 1 1 0 0 +65 2 1 2.11538464146184 -2.11538468057794 0 0.000192307687566378 -0.000192307691122356 0.999999963017752 100 0.000406804744102374 1 1 0 0 +66 2 1 2.96153853309437 -2.11538471812894 0 0.000269230760999848 -0.000192307691122356 0.999999945266273 100 0.000602071027515194 1 1 0 0 +67 2 1 3.8076924597747 -2.11538476819706 0 0.000346153832840237 -0.000192307691122329 0.999999921597635 100 0.00086242608279008 1 1 0 0 +68 2 1 4.65384643151648 -2.11538483078287 0 0.000423076902632378 -0.000192307691122384 0.999999892011837 100 0.00118786991743036 1 1 0 0 +69 2 1 5.50000045833338 -2.11538490588531 0 0.000499999969921105 -0.000192307691122384 0.999999856508881 100 0.00157840253712038 1 1 0 0 +70 2 1 -5.50000045833338 -1.26923093351733 0 -0.000499999975838265 -0.000115384615128583 0.999999868343198 100 0.001448225005106 1 1 0 0 +71 2 1 -4.65384643151648 -1.26923088845555 0 -0.000423076907639205 -0.000115384615128555 0.999999903846156 100 0.0010576923878034 1 1 0 0 +72 2 1 -3.8076924597747 -1.26923085090483 0 -0.000346153836936732 -0.000115384615128583 0.999999933431954 100 0.000732248558279025 1 1 0 0 +73 2 1 -2.96153853309437 -1.26923082086374 0 -0.000269230764186011 -0.000115384615128583 0.999999957100592 100 0.000471893505050502 1 1 0 0 +74 2 1 -2.11538464146184 -1.26923079833296 0 -0.000192307689842209 -0.000115384615128555 0.999999974852071 100 0.000276627223456671 1 1 0 0 +75 2 1 -1.26923077486345 -1.26923078331255 0 -0.000115384614360492 -0.000115384615128583 0.99999998668639 100 0.000146449704175211 1 1 0 0 +76 2 1 -0.423076923285541 -1.269230775802 0 -3.84615381960248e-05 -0.000115384615128583 0.99999999260355 100 8.13609474334953e-05 1 1 0 0 +77 2 1 0.423076923285541 -1.269230775802 0 3.84615381960248e-05 -0.000115384615128583 0.99999999260355 100 8.13609474334953e-05 1 1 0 0 +78 2 1 1.26923077486345 -1.26923078331255 0 0.000115384614360492 -0.000115384615128583 0.99999998668639 100 0.000146449704175211 1 1 0 0 +79 2 1 2.11538464146184 -1.26923079833296 0 0.000192307689842209 -0.000115384615128555 0.999999974852071 100 0.000276627223456671 1 1 0 0 +80 2 1 2.96153853309437 -1.26923082086374 0 0.000269230764186011 -0.000115384615128583 0.999999957100592 100 0.000471893505050502 1 1 0 0 +81 2 1 3.8076924597747 -1.26923085090483 0 0.000346153836936732 -0.000115384615128583 0.999999933431954 100 0.000732248558279025 1 1 0 0 +82 2 1 4.65384643151648 -1.26923088845555 0 0.000423076907639205 -0.000115384615128555 0.999999903846156 100 0.0010576923878034 1 1 0 0 +83 2 1 5.50000045833338 -1.26923093351733 0 0.000499999975838265 -0.000115384615128583 0.999999868343198 100 0.001448225005106 1 1 0 0 +84 2 1 -5.50000045833338 -0.423076976170333 0 -0.000499999978796844 -3.84615384520504e-05 0.999999874260358 100 0.00138313623961039 1 1 0 0 +85 2 1 -4.65384643151648 -0.423076961149571 0 -0.000423076910142619 -3.84615384520226e-05 0.999999909763315 100 0.000992603625491029 1 1 0 0 +86 2 1 -3.8076924597747 -0.423076948632619 0 -0.00034615383898498 -3.84615384520504e-05 0.999999939349113 100 0.000667159797103523 1 1 0 0 +87 2 1 -2.96153853309437 -0.423076938618945 0 -0.000269230765779093 -3.84615384520504e-05 0.999999963017752 100 0.000406804745580303 1 1 0 0 +88 2 1 -2.11538464146184 -0.42307693110855 0 -0.000192307690980124 -3.84615384520226e-05 0.999999980769231 100 0.000211538464441219 1 1 0 0 +89 2 1 -1.26923077486345 -0.423076926101714 0 -0.000115384615043241 -3.84615384520226e-05 0.99999999260355 100 8.13609466376874e-05 1 1 0 0 +90 2 1 -0.423076923285541 -0.423076923598435 0 -3.84615384236079e-05 -3.84615384520504e-05 0.99999999852071 100 1.62721880769823e-05 1 1 0 0 +91 2 1 0.423076923285541 -0.423076923598435 0 3.84615384236079e-05 -3.84615384520504e-05 0.99999999852071 100 1.62721880769823e-05 1 1 0 0 +92 2 1 1.26923077486345 -0.423076926101714 0 0.000115384615043241 -3.84615384520226e-05 0.99999999260355 100 8.13609466376874e-05 1 1 0 0 +93 2 1 2.11538464146184 -0.42307693110855 0 0.000192307690980124 -3.84615384520226e-05 0.999999980769231 100 0.000211538464441219 1 1 0 0 +94 2 1 2.96153853309437 -0.423076938618945 0 0.000269230765779093 -3.84615384520504e-05 0.999999963017752 100 0.000406804745580303 1 1 0 0 +95 2 1 3.8076924597747 -0.423076948632619 0 0.00034615383898498 -3.84615384520504e-05 0.999999939349113 100 0.000667159797103523 1 1 0 0 +96 2 1 4.65384643151648 -0.423076961149571 0 0.000423076910142619 -3.84615384520226e-05 0.999999909763315 100 0.000992603625491029 1 1 0 0 +97 2 1 5.50000045833338 -0.423076976170333 0 0.000499999978796844 -3.84615384520504e-05 0.999999874260358 100 0.00138313623961039 1 1 0 0 +98 2 1 -5.50000045833338 0.423076976170029 0 -0.000499999978796844 3.84615384520504e-05 0.999999874260358 100 0.00138313623972408 1 1 0 0 +99 2 1 -4.65384643151648 0.423076961149693 0 -0.000423076910142619 3.84615384520781e-05 0.999999909763315 100 0.000992603624581534 1 1 0 0 +100 2 1 -3.8076924597747 0.423076948632322 0 -0.00034615383898498 3.84615384520504e-05 0.999999939349113 100 0.00066715979755827 1 1 0 0 +101 2 1 -2.96153853309437 0.423076938618868 0 -0.000269230765779093 3.84615384520226e-05 0.999999963017752 100 0.000406804746944545 1 1 0 0 +102 2 1 -2.11538464146184 0.42307693110849 0 -0.000192307690980124 3.84615384520504e-05 0.999999980769231 100 0.000211538465009653 1 1 0 0 +103 2 1 -1.26923077486345 0.423076926101805 0 -0.000115384615043241 3.84615384520781e-05 0.99999999260355 100 8.1360947660869e-05 1 1 0 0 +104 2 1 -0.423076923285541 0.423076923598532 0 -3.84615384236079e-05 3.84615384520504e-05 0.99999999852071 100 1.62721879632954e-05 1 1 0 0 +105 2 1 0.423076923285541 0.423076923598532 0 3.84615384236079e-05 3.84615384520504e-05 0.99999999852071 100 1.62721879632954e-05 1 1 0 0 +106 2 1 1.26923077486345 0.423076926101805 0 0.000115384615043241 3.84615384520781e-05 0.99999999260355 100 8.1360947660869e-05 1 1 0 0 +107 2 1 2.11538464146184 0.42307693110849 0 0.000192307690980124 3.84615384520504e-05 0.999999980769231 100 0.000211538465009653 1 1 0 0 +108 2 1 2.96153853309437 0.423076938618868 0 0.000269230765779093 3.84615384520226e-05 0.999999963017752 100 0.000406804746944545 1 1 0 0 +109 2 1 3.8076924597747 0.423076948632322 0 0.00034615383898498 3.84615384520504e-05 0.999999939349113 100 0.00066715979755827 1 1 0 0 +110 2 1 4.65384643151648 0.423076961149693 0 0.000423076910142619 3.84615384520781e-05 0.999999909763315 100 0.000992603624581534 1 1 0 0 +111 2 1 5.50000045833338 0.423076976170029 0 0.000499999978796844 3.84615384520504e-05 0.999999874260358 100 0.00138313623972408 1 1 0 0 +112 2 1 -5.50000045833338 1.26923093351734 0 -0.000499999975838265 0.000115384615128583 0.999999868343199 100 0.00144822500396913 1 1 0 0 +113 2 1 -4.65384643151648 1.26923088845579 0 -0.000423076907639205 0.000115384615128583 0.999999903846156 100 0.00105769238825815 1 1 0 0 +114 2 1 -3.8076924597747 1.26923085090444 0 -0.000346153836936732 0.000115384615128555 0.999999933431954 100 0.000732248558279025 1 1 0 0 +115 2 1 -2.96153853309437 1.26923082086359 0 -0.000269230764186011 0.000115384615128583 0.999999957100592 100 0.00047189350550525 1 1 0 0 +116 2 1 -2.11538464146184 1.26923079833292 0 -0.000192307689842209 0.000115384615128583 0.999999974852071 100 0.000276627224252479 1 1 0 0 +117 2 1 -1.26923077486345 1.26923078331246 0 -0.000115384614360492 0.000115384615128555 0.99999998668639 100 0.000146449705084706 1 1 0 0 +118 2 1 -0.42307692328554 1.26923077580226 0 -3.84615381960248e-05 0.000115384615128583 0.99999999260355 100 8.13609473198085e-05 1 1 0 0 +119 2 1 0.42307692328554 1.26923077580226 0 3.84615381960248e-05 0.000115384615128583 0.99999999260355 100 8.13609473198085e-05 1 1 0 0 +120 2 1 1.26923077486345 1.26923078331246 0 0.000115384614360492 0.000115384615128555 0.99999998668639 100 0.000146449705084706 1 1 0 0 +121 2 1 2.11538464146184 1.26923079833292 0 0.000192307689842209 0.000115384615128583 0.999999974852071 100 0.000276627224252479 1 1 0 0 +122 2 1 2.96153853309437 1.26923082086359 0 0.000269230764186011 0.000115384615128583 0.999999957100592 100 0.00047189350550525 1 1 0 0 +123 2 1 3.8076924597747 1.26923085090444 0 0.000346153836936732 0.000115384615128555 0.999999933431954 100 0.000732248558279025 1 1 0 0 +124 2 1 4.65384643151648 1.26923088845579 0 0.000423076907639205 0.000115384615128583 0.999999903846156 100 0.00105769238825815 1 1 0 0 +125 2 1 5.50000045833338 1.26923093351734 0 0.000499999975838265 0.000115384615128583 0.999999868343199 100 0.00144822500396913 1 1 0 0 +126 2 1 -5.50000045833338 2.11538490588455 0 -0.000499999969921105 0.000192307691122356 0.999999856508881 100 0.00157840253746144 1 1 0 0 +127 2 1 -4.65384643151648 2.11538483078215 0 -0.000423076902632378 0.000192307691122329 0.999999892011837 100 0.00118786991617981 1 1 0 0 +128 2 1 -3.8076924597747 2.11538476819698 0 -0.000346153832840237 0.000192307691122356 0.999999921597635 100 0.000862426084040635 1 1 0 0 +129 2 1 -2.96153853309437 2.11538471812874 0 -0.000269230760999848 0.000192307691122356 0.999999945266273 100 0.000602071027969941 1 1 0 0 +130 2 1 -2.11538464146184 2.11538468057764 0 -0.000192307687566378 0.000192307691122329 0.999999963017752 100 0.000406804743192879 1 1 0 0 +131 2 1 -1.26923077486345 2.11538465554357 0 -0.000115384612994993 0.000192307691122384 0.999999974852071 100 0.000276627224025106 1 1 0 0 +132 2 1 -0.42307692328554 2.1153846430264 0 -3.84615377408587e-05 0.000192307691122384 0.999999980769231 100 0.000211538464782279 1 1 0 0 +133 2 1 0.42307692328554 2.1153846430264 0 3.84615377408587e-05 0.000192307691122384 0.999999980769231 100 0.000211538464782279 1 1 0 0 +134 2 1 1.26923077486345 2.11538465554357 0 0.000115384612994993 0.000192307691122384 0.999999974852071 100 0.000276627224025106 1 1 0 0 +135 2 1 2.11538464146184 2.11538468057764 0 0.000192307687566378 0.000192307691122329 0.999999963017752 100 0.000406804743192879 1 1 0 0 +136 2 1 2.96153853309437 2.11538471812874 0 0.000269230760999848 0.000192307691122356 0.999999945266273 100 0.000602071027969941 1 1 0 0 +137 2 1 3.8076924597747 2.11538476819698 0 0.000346153832840237 0.000192307691122356 0.999999921597635 100 0.000862426084040635 1 1 0 0 +138 2 1 4.65384643151648 2.11538483078215 0 0.000423076902632378 0.000192307691122329 0.999999892011837 100 0.00118786991617981 1 1 0 0 +139 2 1 5.50000045833338 2.11538490588455 0 0.000499999969921105 0.000192307691122356 0.999999856508881 100 0.00157840253746144 1 1 0 0 +140 2 1 -5.50000045833338 2.96153890328674 0 -0.000499999961045366 0.000269230765978234 0.999999838757404 100 0.00177366884406638 1 1 0 0 +141 2 1 -4.65384643151648 2.96153879814346 0 -0.000423076895122137 0.000269230765978234 0.99999987426036 100 0.00138313621653197 1 1 0 0 +142 2 1 -3.8076924597747 2.96153871052384 0 -0.000346153826695494 0.000269230765978234 0.999999903846157 100 0.00105769237677578 1 1 0 0 +143 2 1 -2.96153853309437 2.96153864042833 0 -0.000269230756220604 0.000269230765978234 0.999999927514794 100 0.000797337317749225 1 1 0 0 +144 2 1 -2.11538464146184 2.96153858785647 0 -0.000192307684152632 0.000269230765978234 0.999999945266273 100 0.00060207102694676 1 1 0 0 +145 2 1 -1.26923077486345 2.96153855280868 0 -0.000115384610946746 0.000269230765978207 0.999999957100592 100 0.000471893506301058 1 1 0 0 +146 2 1 -0.423076923285541 2.96153853528483 0 -3.84615370581095e-05 0.000269230765978234 0.999999963017752 100 0.000406804745125555 1 1 0 0 +147 2 1 0.423076923285541 2.96153853528483 0 3.84615370581095e-05 0.000269230765978234 0.999999963017752 100 0.000406804745125555 1 1 0 0 +148 2 1 1.26923077486345 2.96153855280868 0 0.000115384610946746 0.000269230765978207 0.999999957100592 100 0.000471893506301058 1 1 0 0 +149 2 1 2.11538464146184 2.96153858785647 0 0.000192307684152633 0.000269230765978234 0.999999945266273 100 0.00060207102694676 1 1 0 0 +150 2 1 2.96153853309437 2.96153864042833 0 0.000269230756220604 0.000269230765978234 0.999999927514794 100 0.000797337317749225 1 1 0 0 +151 2 1 3.8076924597747 2.96153871052384 0 0.000346153826695494 0.000269230765978234 0.999999903846157 100 0.00105769237677578 1 1 0 0 +152 2 1 4.65384643151648 2.96153879814346 0 0.000423076895122137 0.000269230765978234 0.99999987426036 100 0.00138313621653197 1 1 0 0 +153 2 1 5.50000045833338 2.96153890328674 0 0.000499999961045366 0.000269230765978234 0.999999838757404 100 0.00177366884406638 1 1 0 0 +154 2 1 -5.50000045833338 3.80769293573589 0 -0.000499999949211047 0.000346153839240998 0.999999815088768 100 0.00203402392548924 1 1 0 0 +155 2 1 -4.65384643151648 3.80769280055184 0 -0.000423076885108482 0.000346153839240998 0.999999850591723 100 0.00164349128931462 1 1 0 0 +156 2 1 -3.8076924597747 3.80769268789814 0 -0.000346153818502504 0.000346153839240998 0.99999988017752 100 0.00131804744148667 1 1 0 0 +157 2 1 -2.96153853309437 3.80769259777499 0 -0.000269230749848278 0.000346153839240998 0.999999903846157 100 0.00105769237666209 1 1 0 0 +158 2 1 -2.11538464146184 3.80769253018311 0 -0.000192307679600971 0.000346153839241026 0.999999921597635 100 0.000862426083585888 1 1 0 0 +159 2 1 -1.26923077486345 3.80769248512151 0 -0.000115384608215749 0.000346153839240998 0.999999933431954 100 0.000732248556460036 1 1 0 0 +160 2 1 -0.423076923285541 3.80769246259073 0 -3.84615361477773e-05 0.000346153839240998 0.999999939349113 100 0.00066715979755827 1 1 0 0 +161 2 1 0.423076923285541 3.80769246259073 0 3.84615361477773e-05 0.000346153839240998 0.999999939349113 100 0.00066715979755827 1 1 0 0 +162 2 1 1.26923077486345 3.80769248512151 0 0.000115384608215749 0.000346153839240998 0.999999933431954 100 0.000732248556460036 1 1 0 0 +163 2 1 2.11538464146184 3.80769253018311 0 0.000192307679600971 0.000346153839241026 0.999999921597635 100 0.000862426083585888 1 1 0 0 +164 2 1 2.96153853309437 3.80769259777499 0 0.000269230749848278 0.000346153839240998 0.999999903846157 100 0.00105769237666209 1 1 0 0 +165 2 1 3.8076924597747 3.80769268789814 0 0.000346153818502504 0.000346153839240998 0.99999988017752 100 0.00131804744148667 1 1 0 0 +166 2 1 4.65384643151648 3.80769280055184 0 0.000423076885108482 0.000346153839240998 0.999999850591723 100 0.00164349128931462 1 1 0 0 +167 2 1 5.50000045833338 3.80769293573589 0 0.000499999949211047 0.000346153839240998 0.999999815088768 100 0.00203402392548924 1 1 0 0 +168 2 1 -5.50000045833338 4.65384701324731 0 -0.000499999934418149 0.000423076910455567 0.999999785502974 100 0.00235946779559981 1 1 0 0 +169 2 1 -4.65384643151648 4.65384684802194 0 -0.000423076872591414 0.000423076910455539 0.999999821005928 100 0.00196893514441854 1 1 0 0 +170 2 1 -3.8076924597747 4.65384671033404 0 -0.000346153808261266 0.000423076910455539 0.999999850591723 100 0.00164349128965569 1 1 0 0 +171 2 1 -2.96153853309437 4.65384660018406 0 -0.000269230741882871 0.000423076910455567 0.99999987426036 100 0.00138313621505404 1 1 0 0 +172 2 1 -2.11538464146184 4.65384651757102 0 -0.000192307673911395 0.000423076910455539 0.999999892011837 100 0.00118786991629349 1 1 0 0 +173 2 1 -1.26923077486345 4.65384646249661 0 -0.000115384604802003 0.000423076910455567 0.999999903846156 100 0.00105769238928133 1 1 0 0 +174 2 1 -0.423076923285541 4.65384643495869 0 -3.8461535009862e-05 0.000423076910455539 0.999999909763315 100 0.000992603623785726 1 1 0 0 +175 2 1 0.423076923285541 4.65384643495869 0 3.8461535009862e-05 0.000423076910455539 0.999999909763315 100 0.000992603623785726 1 1 0 0 +176 2 1 1.26923077486345 4.65384646249661 0 0.000115384604802003 0.000423076910455567 0.999999903846156 100 0.00105769238928133 1 1 0 0 +177 2 1 2.11538464146184 4.65384651757102 0 0.000192307673911395 0.000423076910455539 0.999999892011837 100 0.00118786991629349 1 1 0 0 +178 2 1 2.96153853309437 4.65384660018406 0 0.000269230741882871 0.000423076910455567 0.99999987426036 100 0.00138313621505404 1 1 0 0 +179 2 1 3.8076924597747 4.65384671033404 0 0.000346153808261266 0.000423076910455539 0.999999850591723 100 0.00164349128965569 1 1 0 0 +180 2 1 4.65384643151648 4.65384684802194 0 0.000423076872591414 0.000423076910455539 0.999999821005928 100 0.00196893514441854 1 1 0 0 +181 2 1 5.50000045833338 4.65384701324731 0 0.000499999934418149 0.000423076910455567 0.999999785502974 100 0.00235946779559981 1 1 0 0 +182 2 1 -5.50000045833338 5.50000114583357 0 -0.000499999916666671 0.000499999979166693 0.999999750000021 100 0.00275000045849083 1 1 0 0 +183 2 1 -4.65384643151648 5.50000095056703 0 -0.000423076857570933 0.000499999979166665 0.999999785502974 100 0.00235946779412188 1 1 0 0 +184 2 1 -3.8076924597747 5.50000078784528 0 -0.000346153795971782 0.000499999979166665 0.999999815088768 100 0.00203402392685348 1 1 0 0 +185 2 1 -2.96153853309437 5.5000006576676 0 -0.000269230732324383 0.000499999979166665 0.999999838757404 100 0.00177366884508956 1 1 0 0 +186 2 1 -2.11538464146184 5.50000056003446 0 -0.000192307667083903 0.000499999979166665 0.999999856508881 100 0.00157840253791619 1 1 0 0 +187 2 1 -1.26923077486345 5.50000049494588 0 -0.000115384600705508 0.000499999979166693 0.999999868343199 100 0.00144822500442388 1 1 0 0 +188 2 1 -0.423076923285541 5.50000046240132 0 -3.84615336443636e-05 0.000499999979166665 0.999999874260358 100 0.00138313623824615 1 1 0 0 +189 2 1 0.423076923285541 5.50000046240132 0 3.84615336443636e-05 0.000499999979166665 0.999999874260358 100 0.00138313623824615 1 1 0 0 +190 2 1 1.26923077486345 5.50000049494588 0 0.000115384600705508 0.000499999979166693 0.999999868343199 100 0.00144822500442388 1 1 0 0 +191 2 1 2.11538464146184 5.50000056003446 0 0.000192307667083903 0.000499999979166665 0.999999856508881 100 0.00157840253791619 1 1 0 0 +192 2 1 2.96153853309437 5.5000006576676 0 0.000269230732324383 0.000499999979166665 0.999999838757404 100 0.00177366884508956 1 1 0 0 +193 2 1 3.8076924597747 5.50000078784528 0 0.000346153795971782 0.000499999979166665 0.999999815088768 100 0.00203402392685348 1 1 0 0 +194 2 1 4.65384643151648 5.50000095056703 0 0.000423076857570933 0.000499999979166665 0.999999785502974 100 0.00235946779412188 1 1 0 0 +195 2 1 5.50000045833338 5.50000114583357 0 0.000499999916666671 0.000499999979166693 0.999999750000021 100 0.00275000045849083 1 1 0 0 +196 2 1 -5.50000045833338 -5.50000114583346 0 -0.000499999916666671 -0.000499999979166638 0.999999750000021 100 0.00275000045746765 1 1 0 0 +197 2 1 -4.65384643151648 -5.50000095056707 0 -0.000423076857570933 -0.000499999979166665 0.999999785502974 100 0.00235946779537244 1 1 0 0 +198 2 1 -3.8076924597747 -5.50000078784532 0 -0.000346153795971782 -0.000499999979166665 0.999999815088768 100 0.00203402392708085 1 1 0 0 +199 2 1 -2.96153853309437 -5.50000065766779 0 -0.000269230732324383 -0.000499999979166665 0.999999838757404 100 0.00177366884497587 1 1 0 0 diff --git a/Tests/input/Ellipsoid_PM.rml b/Intern/RayCore/tests/input/Ellipsoid_PM.rml similarity index 100% rename from Tests/input/Ellipsoid_PM.rml rename to Intern/RayCore/tests/input/Ellipsoid_PM.rml diff --git a/Tests/input/MatrixSource.csv b/Intern/RayCore/tests/input/MatrixSource.csv similarity index 99% rename from Tests/input/MatrixSource.csv rename to Intern/RayCore/tests/input/MatrixSource.csv index 7d3d77cc4..98e2a7d1f 100644 --- a/Tests/input/MatrixSource.csv +++ b/Intern/RayCore/tests/input/MatrixSource.csv @@ -1,102 +1,102 @@ -sep= -Matrix Source_RN Matrix Source_RS Matrix Source_RO Matrix Source_OX Matrix Source_OY Matrix Source_OZ Matrix Source_DX Matrix Source_DY Matrix Source_DZ Matrix Source_EN Matrix Source_PL Matrix Source_S0 Matrix Source_S1 Matrix Source_S2 Matrix Source_S3 -0 2 0 -0.0325 -0.02 0 -0.000499999916666671 0.000499999979166667 0.999999750000021 100 0 1 1 0 0 -1 2 0 -0.0252777777777778 -0.02 0 -0.00038888883047554 0.000499999979166667 0.999999799382729 100 0 1 1 0 0 -2 2 0 -0.0180555555555556 -0.02 0 -0.000277777739483312 0.000499999979166667 0.999999836419761 100 0 1 1 0 0 -3 2 0 -0.0108333333333333 -0.02 0 -0.000166666645061729 0.000499999979166667 0.999999861111116 100 0 1 1 0 0 -4 2 0 -0.00361111111111111 -0.02 0 -5.55555485825333e-05 0.000499999979166667 0.999999873456793 100 0 1 1 0 0 -5 2 0 0.00361111111111111 -0.02 0 5.55555485825333e-05 0.000499999979166667 0.999999873456793 100 0 1 1 0 0 -6 2 0 0.0108333333333333 -0.02 0 0.000166666645061729 0.000499999979166667 0.999999861111116 100 0 1 1 0 0 -7 2 0 0.0180555555555556 -0.02 0 0.000277777739483312 0.000499999979166667 0.999999836419761 100 0 1 1 0 0 -8 2 0 0.0252777777777778 -0.02 0 0.00038888883047554 0.000499999979166667 0.999999799382729 100 0 1 1 0 0 -9 2 0 0.0325 -0.02 0 0.000499999916666671 0.000499999979166667 0.999999750000021 100 0 1 1 0 0 -10 2 0 -0.0325 -0.0155555555555556 0 -0.000499999941358027 0.000388888879086648 0.999999799382729 100 0 1 1 0 0 -11 2 0 -0.0252777777777778 -0.0155555555555556 0 -0.000388888849679928 0.000388888879086648 0.99999984876544 100 0 1 1 0 0 -12 2 0 -0.0180555555555556 -0.0155555555555556 0 -0.000277777753200732 0.000388888879086648 0.999999885802473 100 0 1 1 0 0 -13 2 0 -0.0108333333333333 -0.0155555555555556 0 -0.000166666653292181 0.000388888879086648 0.999999910493829 100 0 1 1 0 0 -14 2 0 -0.00361111111111111 -0.0155555555555556 0 -5.55555513260174e-05 0.000388888879086648 0.999999922839507 100 0 1 1 0 0 -15 2 0 0.00361111111111111 -0.0155555555555556 0 5.55555513260174e-05 0.000388888879086648 0.999999922839507 100 0 1 1 0 0 -16 2 0 0.0108333333333333 -0.0155555555555556 0 0.000166666653292181 0.000388888879086648 0.999999910493829 100 0 1 1 0 0 -17 2 0 0.0180555555555556 -0.0155555555555556 0 0.000277777753200732 0.000388888879086648 0.999999885802473 100 0 1 1 0 0 -18 2 0 0.0252777777777778 -0.0155555555555556 0 0.000388888849679928 0.000388888879086648 0.99999984876544 100 0 1 1 0 0 -19 2 0 0.0325 -0.0155555555555556 0 0.000499999941358027 0.000388888879086648 0.999999799382729 100 0 1 1 0 0 -20 2 0 -0.0325 -0.0111111111111111 0 -0.000499999959876544 0.000277777774205533 0.999999836419761 100 0 1 1 0 0 -21 2 0 -0.0252777777777778 -0.0111111111111111 0 -0.00038888886408322 0.000277777774205533 0.999999885802473 100 0 1 1 0 0 -22 2 0 -0.0180555555555556 -0.0111111111111111 0 -0.000277777763488798 0.000277777774205533 0.999999922839508 100 0 1 1 0 0 -23 2 0 -0.0108333333333333 -0.0111111111111111 0 -0.000166666659465021 0.000277777774205533 0.999999947530865 100 0 1 1 0 0 -24 2 0 -0.00361111111111111 -0.0111111111111111 0 -5.55555533836305e-05 0.000277777774205533 0.999999959876544 100 0 1 1 0 0 -25 2 0 0.00361111111111111 -0.0111111111111111 0 5.55555533836305e-05 0.000277777774205533 0.999999959876544 100 0 1 1 0 0 -26 2 0 0.0108333333333333 -0.0111111111111111 0 0.000166666659465021 0.000277777774205533 0.999999947530865 100 0 1 1 0 0 -27 2 0 0.0180555555555556 -0.0111111111111111 0 0.000277777763488798 0.000277777774205533 0.999999922839508 100 0 1 1 0 0 -28 2 0 0.0252777777777778 -0.0111111111111111 0 0.00038888886408322 0.000277777774205533 0.999999885802473 100 0 1 1 0 0 -29 2 0 0.0325 -0.0111111111111111 0 0.000499999959876544 0.000277777774205533 0.999999836419761 100 0 1 1 0 0 -30 2 0 -0.0325 -0.00666666666666667 0 -0.000499999972222223 0.000166666665895062 0.999999861111116 100 0 1 1 0 0 -31 2 0 -0.0252777777777778 -0.00666666666666667 0 -0.000388888873685414 0.000166666665895062 0.999999910493829 100 0 1 1 0 0 -32 2 0 -0.0180555555555556 -0.00666666666666667 0 -0.000277777770347508 0.000166666665895062 0.999999947530865 100 0 1 1 0 0 -33 2 0 -0.0108333333333333 -0.00666666666666667 0 -0.000166666663580247 0.000166666665895062 0.999999972222223 100 0 1 1 0 0 -34 2 0 -0.00361111111111111 -0.00666666666666667 0 -5.55555547553726e-05 0.000166666665895062 0.999999984567901 100 0 1 1 0 0 -35 2 0 0.00361111111111111 -0.00666666666666667 0 5.55555547553726e-05 0.000166666665895062 0.999999984567901 100 0 1 1 0 0 -36 2 0 0.0108333333333333 -0.00666666666666667 0 0.000166666663580247 0.000166666665895062 0.999999972222223 100 0 1 1 0 0 -37 2 0 0.0180555555555556 -0.00666666666666667 0 0.000277777770347508 0.000166666665895062 0.999999947530865 100 0 1 1 0 0 -38 2 0 0.0252777777777778 -0.00666666666666667 0 0.000388888873685414 0.000166666665895062 0.999999910493829 100 0 1 1 0 0 -39 2 0 0.0325 -0.00666666666666667 0 0.000499999972222223 0.000166666665895062 0.999999861111116 100 0 1 1 0 0 -40 2 0 -0.0325 -0.00222222222222222 0 -0.000499999978395062 5.55555555269776e-05 0.999999873456793 100 0 1 1 0 0 -41 2 0 -0.0252777777777778 -0.00222222222222222 0 -0.000388888878486511 5.55555555269776e-05 0.999999922839507 100 0 1 1 0 0 -42 2 0 -0.0180555555555556 -0.00222222222222222 0 -0.000277777773776863 5.55555555269776e-05 0.999999959876544 100 0 1 1 0 0 -43 2 0 -0.0108333333333333 -0.00222222222222222 0 -0.00016666666563786 5.55555555269776e-05 0.999999984567901 100 0 1 1 0 0 -44 2 0 -0.00361111111111111 -0.00222222222222222 0 -5.55555554412437e-05 5.55555555269776e-05 0.99999999691358 100 0 1 1 0 0 -45 2 0 0.00361111111111111 -0.00222222222222222 0 5.55555554412437e-05 5.55555555269776e-05 0.99999999691358 100 0 1 1 0 0 -46 2 0 0.0108333333333333 -0.00222222222222222 0 0.00016666666563786 5.55555555269776e-05 0.999999984567901 100 0 1 1 0 0 -47 2 0 0.0180555555555556 -0.00222222222222222 0 0.000277777773776863 5.55555555269776e-05 0.999999959876544 100 0 1 1 0 0 -48 2 0 0.0252777777777778 -0.00222222222222222 0 0.000388888878486511 5.55555555269776e-05 0.999999922839507 100 0 1 1 0 0 -49 2 0 0.0325 -0.00222222222222222 0 0.000499999978395062 5.55555555269776e-05 0.999999873456793 100 0 1 1 0 0 -50 2 0 -0.0325 0.00222222222222222 0 -0.000499999978395062 -5.55555555269776e-05 0.999999873456793 100 0 1 1 0 0 -51 2 0 -0.0252777777777778 0.00222222222222222 0 -0.000388888878486511 -5.55555555269776e-05 0.999999922839507 100 0 1 1 0 0 -52 2 0 -0.0180555555555556 0.00222222222222222 0 -0.000277777773776863 -5.55555555269776e-05 0.999999959876544 100 0 1 1 0 0 -53 2 0 -0.0108333333333333 0.00222222222222222 0 -0.00016666666563786 -5.55555555269776e-05 0.999999984567901 100 0 1 1 0 0 -54 2 0 -0.00361111111111111 0.00222222222222222 0 -5.55555554412437e-05 -5.55555555269776e-05 0.99999999691358 100 0 1 1 0 0 -55 2 0 0.00361111111111111 0.00222222222222222 0 5.55555554412437e-05 -5.55555555269776e-05 0.99999999691358 100 0 1 1 0 0 -56 2 0 0.0108333333333333 0.00222222222222222 0 0.00016666666563786 -5.55555555269776e-05 0.999999984567901 100 0 1 1 0 0 -57 2 0 0.0180555555555556 0.00222222222222222 0 0.000277777773776863 -5.55555555269776e-05 0.999999959876544 100 0 1 1 0 0 -58 2 0 0.0252777777777778 0.00222222222222222 0 0.000388888878486511 -5.55555555269776e-05 0.999999922839507 100 0 1 1 0 0 -59 2 0 0.0325 0.00222222222222222 0 0.000499999978395062 -5.55555555269776e-05 0.999999873456793 100 0 1 1 0 0 -60 2 0 -0.0325 0.00666666666666666 0 -0.000499999972222223 -0.000166666665895062 0.999999861111116 100 0 1 1 0 0 -61 2 0 -0.0252777777777778 0.00666666666666666 0 -0.000388888873685414 -0.000166666665895062 0.999999910493829 100 0 1 1 0 0 -62 2 0 -0.0180555555555556 0.00666666666666666 0 -0.000277777770347508 -0.000166666665895062 0.999999947530865 100 0 1 1 0 0 -63 2 0 -0.0108333333333333 0.00666666666666666 0 -0.000166666663580247 -0.000166666665895062 0.999999972222223 100 0 1 1 0 0 -64 2 0 -0.00361111111111111 0.00666666666666666 0 -5.55555547553726e-05 -0.000166666665895062 0.999999984567901 100 0 1 1 0 0 -65 2 0 0.00361111111111111 0.00666666666666666 0 5.55555547553726e-05 -0.000166666665895062 0.999999984567901 100 0 1 1 0 0 -66 2 0 0.0108333333333333 0.00666666666666666 0 0.000166666663580247 -0.000166666665895062 0.999999972222223 100 0 1 1 0 0 -67 2 0 0.0180555555555556 0.00666666666666666 0 0.000277777770347508 -0.000166666665895062 0.999999947530865 100 0 1 1 0 0 -68 2 0 0.0252777777777778 0.00666666666666666 0 0.000388888873685414 -0.000166666665895062 0.999999910493829 100 0 1 1 0 0 -69 2 0 0.0325 0.00666666666666666 0 0.000499999972222223 -0.000166666665895062 0.999999861111116 100 0 1 1 0 0 -70 2 0 -0.0325 0.0111111111111111 0 -0.000499999959876544 -0.000277777774205533 0.999999836419761 100 0 1 1 0 0 -71 2 0 -0.0252777777777778 0.0111111111111111 0 -0.00038888886408322 -0.000277777774205533 0.999999885802473 100 0 1 1 0 0 -72 2 0 -0.0180555555555556 0.0111111111111111 0 -0.000277777763488798 -0.000277777774205533 0.999999922839508 100 0 1 1 0 0 -73 2 0 -0.0108333333333333 0.0111111111111111 0 -0.000166666659465021 -0.000277777774205533 0.999999947530865 100 0 1 1 0 0 -74 2 0 -0.00361111111111111 0.0111111111111111 0 -5.55555533836305e-05 -0.000277777774205533 0.999999959876544 100 0 1 1 0 0 -75 2 0 0.00361111111111111 0.0111111111111111 0 5.55555533836305e-05 -0.000277777774205533 0.999999959876544 100 0 1 1 0 0 -76 2 0 0.0108333333333333 0.0111111111111111 0 0.000166666659465021 -0.000277777774205533 0.999999947530865 100 0 1 1 0 0 -77 2 0 0.0180555555555556 0.0111111111111111 0 0.000277777763488798 -0.000277777774205533 0.999999922839508 100 0 1 1 0 0 -78 2 0 0.0252777777777778 0.0111111111111111 0 0.00038888886408322 -0.000277777774205533 0.999999885802473 100 0 1 1 0 0 -79 2 0 0.0325 0.0111111111111111 0 0.000499999959876544 -0.000277777774205533 0.999999836419761 100 0 1 1 0 0 -80 2 0 -0.0325 0.0155555555555556 0 -0.000499999941358027 -0.000388888879086648 0.999999799382729 100 0 1 1 0 0 -81 2 0 -0.0252777777777778 0.0155555555555556 0 -0.000388888849679928 -0.000388888879086648 0.99999984876544 100 0 1 1 0 0 -82 2 0 -0.0180555555555556 0.0155555555555556 0 -0.000277777753200732 -0.000388888879086648 0.999999885802473 100 0 1 1 0 0 -83 2 0 -0.0108333333333333 0.0155555555555556 0 -0.000166666653292181 -0.000388888879086648 0.999999910493829 100 0 1 1 0 0 -84 2 0 -0.00361111111111111 0.0155555555555556 0 -5.55555513260174e-05 -0.000388888879086648 0.999999922839507 100 0 1 1 0 0 -85 2 0 0.00361111111111111 0.0155555555555556 0 5.55555513260174e-05 -0.000388888879086648 0.999999922839507 100 0 1 1 0 0 -86 2 0 0.0108333333333333 0.0155555555555556 0 0.000166666653292181 -0.000388888879086648 0.999999910493829 100 0 1 1 0 0 -87 2 0 0.0180555555555556 0.0155555555555556 0 0.000277777753200732 -0.000388888879086648 0.999999885802473 100 0 1 1 0 0 -88 2 0 0.0252777777777778 0.0155555555555556 0 0.000388888849679928 -0.000388888879086648 0.99999984876544 100 0 1 1 0 0 -89 2 0 0.0325 0.0155555555555556 0 0.000499999941358027 -0.000388888879086648 0.999999799382729 100 0 1 1 0 0 -90 2 0 -0.0325 0.02 0 -0.000499999916666671 -0.000499999979166667 0.999999750000021 100 0 1 1 0 0 -91 2 0 -0.0252777777777778 0.02 0 -0.00038888883047554 -0.000499999979166667 0.999999799382729 100 0 1 1 0 0 -92 2 0 -0.0180555555555556 0.02 0 -0.000277777739483312 -0.000499999979166667 0.999999836419761 100 0 1 1 0 0 -93 2 0 -0.0108333333333333 0.02 0 -0.000166666645061729 -0.000499999979166667 0.999999861111116 100 0 1 1 0 0 -94 2 0 -0.00361111111111111 0.02 0 -5.55555485825333e-05 -0.000499999979166667 0.999999873456793 100 0 1 1 0 0 -95 2 0 0.00361111111111111 0.02 0 5.55555485825333e-05 -0.000499999979166667 0.999999873456793 100 0 1 1 0 0 -96 2 0 0.0108333333333333 0.02 0 0.000166666645061729 -0.000499999979166667 0.999999861111116 100 0 1 1 0 0 -97 2 0 0.0180555555555556 0.02 0 0.000277777739483312 -0.000499999979166667 0.999999836419761 100 0 1 1 0 0 -98 2 0 0.0252777777777778 0.02 0 0.00038888883047554 -0.000499999979166667 0.999999799382729 100 0 1 1 0 0 -99 2 0 0.0325 0.02 0 0.000499999916666671 -0.000499999979166667 0.999999750000021 100 0 1 1 0 0 +sep= +Matrix Source_RN Matrix Source_RS Matrix Source_RO Matrix Source_OX Matrix Source_OY Matrix Source_OZ Matrix Source_DX Matrix Source_DY Matrix Source_DZ Matrix Source_EN Matrix Source_PL Matrix Source_S0 Matrix Source_S1 Matrix Source_S2 Matrix Source_S3 +0 2 0 -0.0325 -0.02 0 -0.000499999916666671 0.000499999979166667 0.999999750000021 100 0 1 1 0 0 +1 2 0 -0.0252777777777778 -0.02 0 -0.00038888883047554 0.000499999979166667 0.999999799382729 100 0 1 1 0 0 +2 2 0 -0.0180555555555556 -0.02 0 -0.000277777739483312 0.000499999979166667 0.999999836419761 100 0 1 1 0 0 +3 2 0 -0.0108333333333333 -0.02 0 -0.000166666645061729 0.000499999979166667 0.999999861111116 100 0 1 1 0 0 +4 2 0 -0.00361111111111111 -0.02 0 -5.55555485825333e-05 0.000499999979166667 0.999999873456793 100 0 1 1 0 0 +5 2 0 0.00361111111111111 -0.02 0 5.55555485825333e-05 0.000499999979166667 0.999999873456793 100 0 1 1 0 0 +6 2 0 0.0108333333333333 -0.02 0 0.000166666645061729 0.000499999979166667 0.999999861111116 100 0 1 1 0 0 +7 2 0 0.0180555555555556 -0.02 0 0.000277777739483312 0.000499999979166667 0.999999836419761 100 0 1 1 0 0 +8 2 0 0.0252777777777778 -0.02 0 0.00038888883047554 0.000499999979166667 0.999999799382729 100 0 1 1 0 0 +9 2 0 0.0325 -0.02 0 0.000499999916666671 0.000499999979166667 0.999999750000021 100 0 1 1 0 0 +10 2 0 -0.0325 -0.0155555555555556 0 -0.000499999941358027 0.000388888879086648 0.999999799382729 100 0 1 1 0 0 +11 2 0 -0.0252777777777778 -0.0155555555555556 0 -0.000388888849679928 0.000388888879086648 0.99999984876544 100 0 1 1 0 0 +12 2 0 -0.0180555555555556 -0.0155555555555556 0 -0.000277777753200732 0.000388888879086648 0.999999885802473 100 0 1 1 0 0 +13 2 0 -0.0108333333333333 -0.0155555555555556 0 -0.000166666653292181 0.000388888879086648 0.999999910493829 100 0 1 1 0 0 +14 2 0 -0.00361111111111111 -0.0155555555555556 0 -5.55555513260174e-05 0.000388888879086648 0.999999922839507 100 0 1 1 0 0 +15 2 0 0.00361111111111111 -0.0155555555555556 0 5.55555513260174e-05 0.000388888879086648 0.999999922839507 100 0 1 1 0 0 +16 2 0 0.0108333333333333 -0.0155555555555556 0 0.000166666653292181 0.000388888879086648 0.999999910493829 100 0 1 1 0 0 +17 2 0 0.0180555555555556 -0.0155555555555556 0 0.000277777753200732 0.000388888879086648 0.999999885802473 100 0 1 1 0 0 +18 2 0 0.0252777777777778 -0.0155555555555556 0 0.000388888849679928 0.000388888879086648 0.99999984876544 100 0 1 1 0 0 +19 2 0 0.0325 -0.0155555555555556 0 0.000499999941358027 0.000388888879086648 0.999999799382729 100 0 1 1 0 0 +20 2 0 -0.0325 -0.0111111111111111 0 -0.000499999959876544 0.000277777774205533 0.999999836419761 100 0 1 1 0 0 +21 2 0 -0.0252777777777778 -0.0111111111111111 0 -0.00038888886408322 0.000277777774205533 0.999999885802473 100 0 1 1 0 0 +22 2 0 -0.0180555555555556 -0.0111111111111111 0 -0.000277777763488798 0.000277777774205533 0.999999922839508 100 0 1 1 0 0 +23 2 0 -0.0108333333333333 -0.0111111111111111 0 -0.000166666659465021 0.000277777774205533 0.999999947530865 100 0 1 1 0 0 +24 2 0 -0.00361111111111111 -0.0111111111111111 0 -5.55555533836305e-05 0.000277777774205533 0.999999959876544 100 0 1 1 0 0 +25 2 0 0.00361111111111111 -0.0111111111111111 0 5.55555533836305e-05 0.000277777774205533 0.999999959876544 100 0 1 1 0 0 +26 2 0 0.0108333333333333 -0.0111111111111111 0 0.000166666659465021 0.000277777774205533 0.999999947530865 100 0 1 1 0 0 +27 2 0 0.0180555555555556 -0.0111111111111111 0 0.000277777763488798 0.000277777774205533 0.999999922839508 100 0 1 1 0 0 +28 2 0 0.0252777777777778 -0.0111111111111111 0 0.00038888886408322 0.000277777774205533 0.999999885802473 100 0 1 1 0 0 +29 2 0 0.0325 -0.0111111111111111 0 0.000499999959876544 0.000277777774205533 0.999999836419761 100 0 1 1 0 0 +30 2 0 -0.0325 -0.00666666666666667 0 -0.000499999972222223 0.000166666665895062 0.999999861111116 100 0 1 1 0 0 +31 2 0 -0.0252777777777778 -0.00666666666666667 0 -0.000388888873685414 0.000166666665895062 0.999999910493829 100 0 1 1 0 0 +32 2 0 -0.0180555555555556 -0.00666666666666667 0 -0.000277777770347508 0.000166666665895062 0.999999947530865 100 0 1 1 0 0 +33 2 0 -0.0108333333333333 -0.00666666666666667 0 -0.000166666663580247 0.000166666665895062 0.999999972222223 100 0 1 1 0 0 +34 2 0 -0.00361111111111111 -0.00666666666666667 0 -5.55555547553726e-05 0.000166666665895062 0.999999984567901 100 0 1 1 0 0 +35 2 0 0.00361111111111111 -0.00666666666666667 0 5.55555547553726e-05 0.000166666665895062 0.999999984567901 100 0 1 1 0 0 +36 2 0 0.0108333333333333 -0.00666666666666667 0 0.000166666663580247 0.000166666665895062 0.999999972222223 100 0 1 1 0 0 +37 2 0 0.0180555555555556 -0.00666666666666667 0 0.000277777770347508 0.000166666665895062 0.999999947530865 100 0 1 1 0 0 +38 2 0 0.0252777777777778 -0.00666666666666667 0 0.000388888873685414 0.000166666665895062 0.999999910493829 100 0 1 1 0 0 +39 2 0 0.0325 -0.00666666666666667 0 0.000499999972222223 0.000166666665895062 0.999999861111116 100 0 1 1 0 0 +40 2 0 -0.0325 -0.00222222222222222 0 -0.000499999978395062 5.55555555269776e-05 0.999999873456793 100 0 1 1 0 0 +41 2 0 -0.0252777777777778 -0.00222222222222222 0 -0.000388888878486511 5.55555555269776e-05 0.999999922839507 100 0 1 1 0 0 +42 2 0 -0.0180555555555556 -0.00222222222222222 0 -0.000277777773776863 5.55555555269776e-05 0.999999959876544 100 0 1 1 0 0 +43 2 0 -0.0108333333333333 -0.00222222222222222 0 -0.00016666666563786 5.55555555269776e-05 0.999999984567901 100 0 1 1 0 0 +44 2 0 -0.00361111111111111 -0.00222222222222222 0 -5.55555554412437e-05 5.55555555269776e-05 0.99999999691358 100 0 1 1 0 0 +45 2 0 0.00361111111111111 -0.00222222222222222 0 5.55555554412437e-05 5.55555555269776e-05 0.99999999691358 100 0 1 1 0 0 +46 2 0 0.0108333333333333 -0.00222222222222222 0 0.00016666666563786 5.55555555269776e-05 0.999999984567901 100 0 1 1 0 0 +47 2 0 0.0180555555555556 -0.00222222222222222 0 0.000277777773776863 5.55555555269776e-05 0.999999959876544 100 0 1 1 0 0 +48 2 0 0.0252777777777778 -0.00222222222222222 0 0.000388888878486511 5.55555555269776e-05 0.999999922839507 100 0 1 1 0 0 +49 2 0 0.0325 -0.00222222222222222 0 0.000499999978395062 5.55555555269776e-05 0.999999873456793 100 0 1 1 0 0 +50 2 0 -0.0325 0.00222222222222222 0 -0.000499999978395062 -5.55555555269776e-05 0.999999873456793 100 0 1 1 0 0 +51 2 0 -0.0252777777777778 0.00222222222222222 0 -0.000388888878486511 -5.55555555269776e-05 0.999999922839507 100 0 1 1 0 0 +52 2 0 -0.0180555555555556 0.00222222222222222 0 -0.000277777773776863 -5.55555555269776e-05 0.999999959876544 100 0 1 1 0 0 +53 2 0 -0.0108333333333333 0.00222222222222222 0 -0.00016666666563786 -5.55555555269776e-05 0.999999984567901 100 0 1 1 0 0 +54 2 0 -0.00361111111111111 0.00222222222222222 0 -5.55555554412437e-05 -5.55555555269776e-05 0.99999999691358 100 0 1 1 0 0 +55 2 0 0.00361111111111111 0.00222222222222222 0 5.55555554412437e-05 -5.55555555269776e-05 0.99999999691358 100 0 1 1 0 0 +56 2 0 0.0108333333333333 0.00222222222222222 0 0.00016666666563786 -5.55555555269776e-05 0.999999984567901 100 0 1 1 0 0 +57 2 0 0.0180555555555556 0.00222222222222222 0 0.000277777773776863 -5.55555555269776e-05 0.999999959876544 100 0 1 1 0 0 +58 2 0 0.0252777777777778 0.00222222222222222 0 0.000388888878486511 -5.55555555269776e-05 0.999999922839507 100 0 1 1 0 0 +59 2 0 0.0325 0.00222222222222222 0 0.000499999978395062 -5.55555555269776e-05 0.999999873456793 100 0 1 1 0 0 +60 2 0 -0.0325 0.00666666666666666 0 -0.000499999972222223 -0.000166666665895062 0.999999861111116 100 0 1 1 0 0 +61 2 0 -0.0252777777777778 0.00666666666666666 0 -0.000388888873685414 -0.000166666665895062 0.999999910493829 100 0 1 1 0 0 +62 2 0 -0.0180555555555556 0.00666666666666666 0 -0.000277777770347508 -0.000166666665895062 0.999999947530865 100 0 1 1 0 0 +63 2 0 -0.0108333333333333 0.00666666666666666 0 -0.000166666663580247 -0.000166666665895062 0.999999972222223 100 0 1 1 0 0 +64 2 0 -0.00361111111111111 0.00666666666666666 0 -5.55555547553726e-05 -0.000166666665895062 0.999999984567901 100 0 1 1 0 0 +65 2 0 0.00361111111111111 0.00666666666666666 0 5.55555547553726e-05 -0.000166666665895062 0.999999984567901 100 0 1 1 0 0 +66 2 0 0.0108333333333333 0.00666666666666666 0 0.000166666663580247 -0.000166666665895062 0.999999972222223 100 0 1 1 0 0 +67 2 0 0.0180555555555556 0.00666666666666666 0 0.000277777770347508 -0.000166666665895062 0.999999947530865 100 0 1 1 0 0 +68 2 0 0.0252777777777778 0.00666666666666666 0 0.000388888873685414 -0.000166666665895062 0.999999910493829 100 0 1 1 0 0 +69 2 0 0.0325 0.00666666666666666 0 0.000499999972222223 -0.000166666665895062 0.999999861111116 100 0 1 1 0 0 +70 2 0 -0.0325 0.0111111111111111 0 -0.000499999959876544 -0.000277777774205533 0.999999836419761 100 0 1 1 0 0 +71 2 0 -0.0252777777777778 0.0111111111111111 0 -0.00038888886408322 -0.000277777774205533 0.999999885802473 100 0 1 1 0 0 +72 2 0 -0.0180555555555556 0.0111111111111111 0 -0.000277777763488798 -0.000277777774205533 0.999999922839508 100 0 1 1 0 0 +73 2 0 -0.0108333333333333 0.0111111111111111 0 -0.000166666659465021 -0.000277777774205533 0.999999947530865 100 0 1 1 0 0 +74 2 0 -0.00361111111111111 0.0111111111111111 0 -5.55555533836305e-05 -0.000277777774205533 0.999999959876544 100 0 1 1 0 0 +75 2 0 0.00361111111111111 0.0111111111111111 0 5.55555533836305e-05 -0.000277777774205533 0.999999959876544 100 0 1 1 0 0 +76 2 0 0.0108333333333333 0.0111111111111111 0 0.000166666659465021 -0.000277777774205533 0.999999947530865 100 0 1 1 0 0 +77 2 0 0.0180555555555556 0.0111111111111111 0 0.000277777763488798 -0.000277777774205533 0.999999922839508 100 0 1 1 0 0 +78 2 0 0.0252777777777778 0.0111111111111111 0 0.00038888886408322 -0.000277777774205533 0.999999885802473 100 0 1 1 0 0 +79 2 0 0.0325 0.0111111111111111 0 0.000499999959876544 -0.000277777774205533 0.999999836419761 100 0 1 1 0 0 +80 2 0 -0.0325 0.0155555555555556 0 -0.000499999941358027 -0.000388888879086648 0.999999799382729 100 0 1 1 0 0 +81 2 0 -0.0252777777777778 0.0155555555555556 0 -0.000388888849679928 -0.000388888879086648 0.99999984876544 100 0 1 1 0 0 +82 2 0 -0.0180555555555556 0.0155555555555556 0 -0.000277777753200732 -0.000388888879086648 0.999999885802473 100 0 1 1 0 0 +83 2 0 -0.0108333333333333 0.0155555555555556 0 -0.000166666653292181 -0.000388888879086648 0.999999910493829 100 0 1 1 0 0 +84 2 0 -0.00361111111111111 0.0155555555555556 0 -5.55555513260174e-05 -0.000388888879086648 0.999999922839507 100 0 1 1 0 0 +85 2 0 0.00361111111111111 0.0155555555555556 0 5.55555513260174e-05 -0.000388888879086648 0.999999922839507 100 0 1 1 0 0 +86 2 0 0.0108333333333333 0.0155555555555556 0 0.000166666653292181 -0.000388888879086648 0.999999910493829 100 0 1 1 0 0 +87 2 0 0.0180555555555556 0.0155555555555556 0 0.000277777753200732 -0.000388888879086648 0.999999885802473 100 0 1 1 0 0 +88 2 0 0.0252777777777778 0.0155555555555556 0 0.000388888849679928 -0.000388888879086648 0.99999984876544 100 0 1 1 0 0 +89 2 0 0.0325 0.0155555555555556 0 0.000499999941358027 -0.000388888879086648 0.999999799382729 100 0 1 1 0 0 +90 2 0 -0.0325 0.02 0 -0.000499999916666671 -0.000499999979166667 0.999999750000021 100 0 1 1 0 0 +91 2 0 -0.0252777777777778 0.02 0 -0.00038888883047554 -0.000499999979166667 0.999999799382729 100 0 1 1 0 0 +92 2 0 -0.0180555555555556 0.02 0 -0.000277777739483312 -0.000499999979166667 0.999999836419761 100 0 1 1 0 0 +93 2 0 -0.0108333333333333 0.02 0 -0.000166666645061729 -0.000499999979166667 0.999999861111116 100 0 1 1 0 0 +94 2 0 -0.00361111111111111 0.02 0 -5.55555485825333e-05 -0.000499999979166667 0.999999873456793 100 0 1 1 0 0 +95 2 0 0.00361111111111111 0.02 0 5.55555485825333e-05 -0.000499999979166667 0.999999873456793 100 0 1 1 0 0 +96 2 0 0.0108333333333333 0.02 0 0.000166666645061729 -0.000499999979166667 0.999999861111116 100 0 1 1 0 0 +97 2 0 0.0180555555555556 0.02 0 0.000277777739483312 -0.000499999979166667 0.999999836419761 100 0 1 1 0 0 +98 2 0 0.0252777777777778 0.02 0 0.00038888883047554 -0.000499999979166667 0.999999799382729 100 0 1 1 0 0 +99 2 0 0.0325 0.02 0 0.000499999916666671 -0.000499999979166667 0.999999750000021 100 0 1 1 0 0 diff --git a/Tests/input/MatrixSource.rml b/Intern/RayCore/tests/input/MatrixSource.rml similarity index 100% rename from Tests/input/MatrixSource.rml rename to Intern/RayCore/tests/input/MatrixSource.rml diff --git a/Tests/input/MatrixSourceMoved.rml b/Intern/RayCore/tests/input/MatrixSourceMoved.rml similarity index 100% rename from Tests/input/MatrixSourceMoved.rml rename to Intern/RayCore/tests/input/MatrixSourceMoved.rml diff --git a/Tests/input/MatrixSourceSpreaded.rml b/Intern/RayCore/tests/input/MatrixSourceSpreaded.rml similarity index 100% rename from Tests/input/MatrixSourceSpreaded.rml rename to Intern/RayCore/tests/input/MatrixSourceSpreaded.rml diff --git a/Tests/input/MatrixSource_distr_seeded.correct.csv b/Intern/RayCore/tests/input/MatrixSource_distr_seeded.correct.csv similarity index 100% rename from Tests/input/MatrixSource_distr_seeded.correct.csv rename to Intern/RayCore/tests/input/MatrixSource_distr_seeded.correct.csv diff --git a/Tests/input/MatrixSource_distr_seeded.rml b/Intern/RayCore/tests/input/MatrixSource_distr_seeded.rml similarity index 100% rename from Tests/input/MatrixSource_distr_seeded.rml rename to Intern/RayCore/tests/input/MatrixSource_distr_seeded.rml diff --git a/Tests/input/MatrixSource_seeded.correct.csv b/Intern/RayCore/tests/input/MatrixSource_seeded.correct.csv similarity index 100% rename from Tests/input/MatrixSource_seeded.correct.csv rename to Intern/RayCore/tests/input/MatrixSource_seeded.correct.csv diff --git a/Tests/input/MatrixSource_seeded.rml b/Intern/RayCore/tests/input/MatrixSource_seeded.rml similarity index 100% rename from Tests/input/MatrixSource_seeded.rml rename to Intern/RayCore/tests/input/MatrixSource_seeded.rml diff --git a/Tests/input/PlaneGratingDevAzMisVLS.csv b/Intern/RayCore/tests/input/PlaneGratingDevAzMisVLS.csv similarity index 99% rename from Tests/input/PlaneGratingDevAzMisVLS.csv rename to Intern/RayCore/tests/input/PlaneGratingDevAzMisVLS.csv index 59bd7dc48..835e5cdea 100644 --- a/Tests/input/PlaneGratingDevAzMisVLS.csv +++ b/Intern/RayCore/tests/input/PlaneGratingDevAzMisVLS.csv @@ -1,69 +1,69 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -9 2 1 -170.300921271675 1234.43413671559 0 -0.108405120947187 0.774153396566001 0.623646412911796 100 598.113508530245 1 1 0 0 -10 2 1 -93.1123805291897 673.148378875919 0 -0.0801756837633639 0.559661201241297 0.824834043646493 100 207.925166600274 1 1 0 0 -11 2 1 -59.0119645800842 427.527601098579 0 -0.0584388627840901 0.395983020823365 0.916396391599238 100 87.0710773668347 1 1 0 0 -12 2 1 -38.5238253661252 281.972733354691 0 -0.0422497011285715 0.274736694518287 0.960590813738978 100 36.9787274093396 1 1 0 0 -13 2 1 -24.8637791440325 186.801059693268 0 -0.0304781063550668 0.186962671236866 0.981894110684541 100 14.4398716768793 1 1 0 0 -15 2 1 -256.399193111092 1809.8492342494 0 -0.121427945965646 0.869817775262839 0.478196917362888 100 1084.73167715956 1 1 0 0 -16 2 1 -120.418091101512 821.986397467831 0 -0.0907765665113915 0.635378211835913 0.766846883606239 100 299.427656190772 1 1 0 0 -17 2 1 -76.3465935898219 504.008813382769 0 -0.0666300650427585 0.453056178257099 0.888988489113031 100 120.674350356993 1 1 0 0 -18 2 1 -51.8515187549179 329.262393480705 0 -0.0484517574565849 0.316656702306053 0.947301937126714 100 51.5858844903701 1 1 0 0 -19 2 1 -35.9908696973271 217.966515130307 0 -0.0351175383696049 0.217067627405272 0.975524681200586 100 21.1107812498608 1 1 0 0 -20 2 1 -25.1056363345069 143.391341683174 0 -0.0255521410154655 0.145934130187999 0.988964265146015 100 7.20661003969678 1 1 0 0 -21 2 1 -17.4605678369783 92.8172304020251 0 -0.0188325796754524 0.0962034320741076 0.995183517548362 100 0.896152966593377 1 1 0 0 -22 2 1 -12.0332101593343 58.7153624258777 0 -0.0142041319052258 0.0621596633855901 0.997965139112889 100 -1.90412996322164 1 1 0 0 -23 2 1 -8.13991668998818 36.0295041129773 0 -0.0110708730260002 0.0393136882192754 0.99916558672176 100 -3.11117745390084 1 1 0 0 -24 2 1 -5.29703678210156 21.1702936926356 0 -0.00897700637683534 0.0242434474446196 0.999665778454234 100 -3.6166705245555 1 1 0 0 -25 2 1 -3.15865178382549 11.5645017279361 0 -0.00758502418033262 0.0144203215320789 0.999867252056539 100 -3.82358614689076 1 1 0 0 -26 2 1 -1.48105285181863 5.39651590761637 0 -0.00665354772310638 0.00803827135128504 0.999945556766157 100 -3.9074780302941 1 1 0 0 -27 2 1 -0.0975130198860574 1.42310651246819 0 -0.00601637474330457 0.00385474499292125 0.999974471762148 100 -3.94202211085724 1 1 0 0 -28 2 1 -20.3779685337201 69.3217104713751 0 -0.0163562983088612 0.0735745364058634 0.997155584198521 100 -1.05355519308068 1 1 0 0 -29 2 1 -15.9624528382138 42.7551389983006 0 -0.0127115691582934 0.0468997145268263 0.99881871868064 100 -2.7259748021097 1 1 0 0 -30 2 1 -12.7643432563209 25.2514126891334 0 -0.010265561016489 0.0291958373013693 0.999520995948203 100 -3.43415227808089 1 1 0 0 -31 2 1 -10.3897495495806 13.8851708203193 0 -0.00863811616499075 0.0176127716493017 0.999807568096956 100 -3.72654649751564 1 1 0 0 -32 2 1 -8.55903793729716 6.57525510671037 0 -0.0075536131676018 0.0100873796862279 0.999920590696671 100 -3.845567681999 1 1 0 0 -33 2 1 -7.07854671734821 1.8784743132088 0 -0.00681942297949245 0.00517916066834114 0.999963335210346 100 -3.89438625504602 1 1 0 0 -34 2 1 -5.81870612369876 -1.17149573201375 0 -0.00630615259350627 0.00192107289841083 0.999978270723113 100 -3.91539583959616 1 1 0 0 -35 2 1 -4.69600806509047 -3.19774142276681 0 -0.00593025788890014 -0.000311042840863973 0.999982367491408 100 -3.92553137032348 1 1 0 0 -36 2 1 -3.65811144512435 -4.59090780336998 0 -0.00563933027180778 -0.00190864674579786 0.999982277353796 100 -3.93143010462791 1 1 0 0 -37 2 1 -2.67191126571306 -5.59811581738796 0 -0.00540020709818587 -0.00311940823570938 0.999980553338692 100 -3.93563938321267 1 1 0 0 -38 2 1 -1.71454041838347 -6.39008532683051 0 -0.00518997511600739 -0.00411443193334149 0.999978067563564 100 -3.93902936910922 1 1 0 0 -39 2 1 -0.767302867273517 -7.10641108342579 0 -0.00498989708649031 -0.00503362421292897 0.999974881461704 100 -3.94166133741066 1 1 0 0 -40 2 1 0.187459329274681 -7.87894799351966 0 -0.00478227408778629 -0.00600912701337819 0.999970509688704 100 -3.94305096853759 1 1 0 0 -41 2 1 1.16656345481278 -8.83328284559441 0 -0.00455024856042806 -0.00716678940345207 0.999963965534601 100 -3.94221361786754 1 1 0 0 -42 2 1 -10.5259042524621 -4.98105553898973 0 -0.00632892581826033 -0.00143150731216242 0.999978947520798 100 -3.88915823190939 1 1 0 0 -43 2 1 -9.52299592992538 -6.11296069936556 0 -0.00607306893162917 -0.00276722612976352 0.99997772989867 100 -3.89434609883494 1 1 0 0 -44 2 1 -8.55691492873879 -6.96991905209735 0 -0.00585411652163288 -0.00382736996489556 0.999975539980305 100 -3.89850458631986 1 1 0 0 -45 2 1 -7.60789743130889 -7.69949087454556 0 -0.00565226304003509 -0.00475982742784147 0.999972697609981 100 -3.901952818734 1 1 0 0 -46 2 1 -6.65807089831506 -8.43513080896791 0 -0.0054495953457884 -0.00569834417204868 0.999968914908991 100 -3.90440351285929 1 1 0 0 -47 2 1 -5.69013248566314 -9.30605151253574 0 -0.00522876948068659 -0.00677240513075887 0.999963396579326 100 -3.90506302678386 1 1 0 0 -48 2 1 -4.68896396315035 -10.425163638715 0 -0.00497463000384684 -0.00809514388092977 0.999954859832118 100 -3.90265118711773 1 1 0 0 -49 2 1 -3.64618506936033 -11.8550715644263 0 -0.00467877508579842 -0.00972926055407812 0.999941723578313 100 -3.89558997919971 1 1 0 0 -50 2 1 -2.56765009084411 -13.5520797284304 0 -0.00434707315984035 -0.0116309144335319 0.999922909420712 100 -3.88280275442241 1 1 0 0 -51 2 1 -1.48389628064785 -15.2881342610602 0 -0.00401013913618637 -0.0135715443860687 0.99989986096963 100 -3.8657295300444 1 1 0 0 -52 2 1 -0.463549936243247 -16.5506577680504 0 -0.00373677224415236 -0.0150376052184299 0.999879946274796 100 -3.85172350975063 1 1 0 0 -53 2 1 0.370334965783369 -16.4205132432278 0 -0.00365032784700943 -0.0151083828872781 0.999879198640086 100 -3.85678780950809 1 1 0 0 -54 2 1 0.821119953934536 -13.4291119477255 0 -0.0039479155806885 -0.0123125220756176 0.999916404387239 100 -3.89967206509937 1 1 0 0 -55 2 1 0.596825115125713 -5.39666832015092 0 -0.00492214629974267 -0.00446489894792259 0.999977918332795 100 -3.96675229243044 1 1 0 0 -56 2 1 -9.46156455916958 -13.7472095307389 0 -0.00506286685087867 -0.0109583227043417 0.999927138616988 100 -3.84801434371798 1 1 0 0 -57 2 1 -8.37410475901676 -15.5109631622118 0 -0.00472221683648625 -0.012926725651533 0.99990529573159 100 -3.83261754049272 1 1 0 0 -58 2 1 -7.31830401628738 -17.0383272231861 0 -0.00441330492125646 -0.014658136648053 0.999882824019734 100 -3.81653273674999 1 1 0 0 -59 2 1 -6.3942607452701 -17.5815720641915 0 -0.0042364828728313 -0.0154035303858007 0.999872383589287 100 -3.81239608377018 1 1 0 0 -60 2 1 -5.76800160355422 -15.9005565838654 0 -0.00435818622695915 -0.0139206034005752 0.99989360584703 100 -3.83980237092612 1 1 0 0 -61 2 1 -5.69228075535818 -10.1079460679258 0 -0.00503175455964597 -0.00831788212933109 0.999952746024998 100 -3.90499060111313 1 1 0 0 -62 2 1 -6.52996707227581 2.50370019487027 0 -0.00662048489694893 0.00411896673842411 0.999969601184324 100 -3.92791782718268 1 1 0 0 -63 2 1 -8.78129782323258 25.6611910971804 0 -0.0096220351228757 0.0271134280297388 0.999586053554455 100 -3.55106420694062 1 1 0 0 -64 2 1 -13.1227613266576 64.3919771484399 0 -0.0146925951864595 0.0655877239513087 0.997738632164543 100 -1.70860756561444 1 1 0 0 -65 2 1 -20.4877969818711 125.60848997946 0 -0.0226680884225095 0.125839588498114 0.991791588860228 100 4.28260638987706 1 1 0 0 -66 2 1 -32.2909753130231 219.743520134832 0 -0.0345773183528341 0.215676318179954 0.975852516947036 100 20.7106810199408 1 1 0 0 -67 2 1 -51.1533251956862 366.066541831191 0 -0.0516351976458702 0.344436308999584 0.937388625601364 100 62.6648735857552 1 1 0 0 -68 2 1 -83.7764873918025 613.775576295939 0 -0.0751766796627167 0.522666416341192 0.849216276377193 100 173.189884157639 1 1 0 0 -69 2 1 -160.220261945176 1183.38360001005 0 -0.106317148100926 0.760194774729301 0.640937257845066 100 555.042835316111 1 1 0 0 -70 2 1 -17.6404038154172 46.4711363839245 0 -0.0130437440413356 0.0485831406768119 0.998733968173387 100 -2.66625830218993 1 1 0 0 -71 2 1 -23.7174148992472 98.0976539595332 0 -0.0197962556859964 0.0996599704153448 0.99482460693211 100 1.25375398658377 1 1 0 0 -72 2 1 -33.6113463863841 178.03340091283 0 -0.0300656385411309 0.177149374560985 0.983724634474387 100 12.5659780668186 1 1 0 0 -73 2 1 -49.3347820067003 301.042792596824 0 -0.0449986187952485 0.289814076987932 0.956024542094058 100 41.9518243791429 1 1 0 0 -74 2 1 -75.3673317232191 499.90225045642 0 -0.0658998279855328 0.44782218798517 0.891690809989456 100 117.255230046985 1 1 0 0 -75 2 1 -127.064734258011 886.848508260774 0 -0.094056124860343 0.661782625617416 0.743772278192173 100 339.818635992677 1 1 0 0 -76 2 1 -389.716638466033 2814.31262968582 0 -0.129342374699414 0.9346167234988 0.331303682840205 100 2010.22528717505 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +9 2 1 -170.300921271675 1234.43413671559 0 -0.108405120947187 0.774153396566001 0.623646412911796 100 598.113508530245 1 1 0 0 +10 2 1 -93.1123805291897 673.148378875919 0 -0.0801756837633639 0.559661201241297 0.824834043646493 100 207.925166600274 1 1 0 0 +11 2 1 -59.0119645800842 427.527601098579 0 -0.0584388627840901 0.395983020823365 0.916396391599238 100 87.0710773668347 1 1 0 0 +12 2 1 -38.5238253661252 281.972733354691 0 -0.0422497011285715 0.274736694518287 0.960590813738978 100 36.9787274093396 1 1 0 0 +13 2 1 -24.8637791440325 186.801059693268 0 -0.0304781063550668 0.186962671236866 0.981894110684541 100 14.4398716768793 1 1 0 0 +15 2 1 -256.399193111092 1809.8492342494 0 -0.121427945965646 0.869817775262839 0.478196917362888 100 1084.73167715956 1 1 0 0 +16 2 1 -120.418091101512 821.986397467831 0 -0.0907765665113915 0.635378211835913 0.766846883606239 100 299.427656190772 1 1 0 0 +17 2 1 -76.3465935898219 504.008813382769 0 -0.0666300650427585 0.453056178257099 0.888988489113031 100 120.674350356993 1 1 0 0 +18 2 1 -51.8515187549179 329.262393480705 0 -0.0484517574565849 0.316656702306053 0.947301937126714 100 51.5858844903701 1 1 0 0 +19 2 1 -35.9908696973271 217.966515130307 0 -0.0351175383696049 0.217067627405272 0.975524681200586 100 21.1107812498608 1 1 0 0 +20 2 1 -25.1056363345069 143.391341683174 0 -0.0255521410154655 0.145934130187999 0.988964265146015 100 7.20661003969678 1 1 0 0 +21 2 1 -17.4605678369783 92.8172304020251 0 -0.0188325796754524 0.0962034320741076 0.995183517548362 100 0.896152966593377 1 1 0 0 +22 2 1 -12.0332101593343 58.7153624258777 0 -0.0142041319052258 0.0621596633855901 0.997965139112889 100 -1.90412996322164 1 1 0 0 +23 2 1 -8.13991668998818 36.0295041129773 0 -0.0110708730260002 0.0393136882192754 0.99916558672176 100 -3.11117745390084 1 1 0 0 +24 2 1 -5.29703678210156 21.1702936926356 0 -0.00897700637683534 0.0242434474446196 0.999665778454234 100 -3.6166705245555 1 1 0 0 +25 2 1 -3.15865178382549 11.5645017279361 0 -0.00758502418033262 0.0144203215320789 0.999867252056539 100 -3.82358614689076 1 1 0 0 +26 2 1 -1.48105285181863 5.39651590761637 0 -0.00665354772310638 0.00803827135128504 0.999945556766157 100 -3.9074780302941 1 1 0 0 +27 2 1 -0.0975130198860574 1.42310651246819 0 -0.00601637474330457 0.00385474499292125 0.999974471762148 100 -3.94202211085724 1 1 0 0 +28 2 1 -20.3779685337201 69.3217104713751 0 -0.0163562983088612 0.0735745364058634 0.997155584198521 100 -1.05355519308068 1 1 0 0 +29 2 1 -15.9624528382138 42.7551389983006 0 -0.0127115691582934 0.0468997145268263 0.99881871868064 100 -2.7259748021097 1 1 0 0 +30 2 1 -12.7643432563209 25.2514126891334 0 -0.010265561016489 0.0291958373013693 0.999520995948203 100 -3.43415227808089 1 1 0 0 +31 2 1 -10.3897495495806 13.8851708203193 0 -0.00863811616499075 0.0176127716493017 0.999807568096956 100 -3.72654649751564 1 1 0 0 +32 2 1 -8.55903793729716 6.57525510671037 0 -0.0075536131676018 0.0100873796862279 0.999920590696671 100 -3.845567681999 1 1 0 0 +33 2 1 -7.07854671734821 1.8784743132088 0 -0.00681942297949245 0.00517916066834114 0.999963335210346 100 -3.89438625504602 1 1 0 0 +34 2 1 -5.81870612369876 -1.17149573201375 0 -0.00630615259350627 0.00192107289841083 0.999978270723113 100 -3.91539583959616 1 1 0 0 +35 2 1 -4.69600806509047 -3.19774142276681 0 -0.00593025788890014 -0.000311042840863973 0.999982367491408 100 -3.92553137032348 1 1 0 0 +36 2 1 -3.65811144512435 -4.59090780336998 0 -0.00563933027180778 -0.00190864674579786 0.999982277353796 100 -3.93143010462791 1 1 0 0 +37 2 1 -2.67191126571306 -5.59811581738796 0 -0.00540020709818587 -0.00311940823570938 0.999980553338692 100 -3.93563938321267 1 1 0 0 +38 2 1 -1.71454041838347 -6.39008532683051 0 -0.00518997511600739 -0.00411443193334149 0.999978067563564 100 -3.93902936910922 1 1 0 0 +39 2 1 -0.767302867273517 -7.10641108342579 0 -0.00498989708649031 -0.00503362421292897 0.999974881461704 100 -3.94166133741066 1 1 0 0 +40 2 1 0.187459329274681 -7.87894799351966 0 -0.00478227408778629 -0.00600912701337819 0.999970509688704 100 -3.94305096853759 1 1 0 0 +41 2 1 1.16656345481278 -8.83328284559441 0 -0.00455024856042806 -0.00716678940345207 0.999963965534601 100 -3.94221361786754 1 1 0 0 +42 2 1 -10.5259042524621 -4.98105553898973 0 -0.00632892581826033 -0.00143150731216242 0.999978947520798 100 -3.88915823190939 1 1 0 0 +43 2 1 -9.52299592992538 -6.11296069936556 0 -0.00607306893162917 -0.00276722612976352 0.99997772989867 100 -3.89434609883494 1 1 0 0 +44 2 1 -8.55691492873879 -6.96991905209735 0 -0.00585411652163288 -0.00382736996489556 0.999975539980305 100 -3.89850458631986 1 1 0 0 +45 2 1 -7.60789743130889 -7.69949087454556 0 -0.00565226304003509 -0.00475982742784147 0.999972697609981 100 -3.901952818734 1 1 0 0 +46 2 1 -6.65807089831506 -8.43513080896791 0 -0.0054495953457884 -0.00569834417204868 0.999968914908991 100 -3.90440351285929 1 1 0 0 +47 2 1 -5.69013248566314 -9.30605151253574 0 -0.00522876948068659 -0.00677240513075887 0.999963396579326 100 -3.90506302678386 1 1 0 0 +48 2 1 -4.68896396315035 -10.425163638715 0 -0.00497463000384684 -0.00809514388092977 0.999954859832118 100 -3.90265118711773 1 1 0 0 +49 2 1 -3.64618506936033 -11.8550715644263 0 -0.00467877508579842 -0.00972926055407812 0.999941723578313 100 -3.89558997919971 1 1 0 0 +50 2 1 -2.56765009084411 -13.5520797284304 0 -0.00434707315984035 -0.0116309144335319 0.999922909420712 100 -3.88280275442241 1 1 0 0 +51 2 1 -1.48389628064785 -15.2881342610602 0 -0.00401013913618637 -0.0135715443860687 0.99989986096963 100 -3.8657295300444 1 1 0 0 +52 2 1 -0.463549936243247 -16.5506577680504 0 -0.00373677224415236 -0.0150376052184299 0.999879946274796 100 -3.85172350975063 1 1 0 0 +53 2 1 0.370334965783369 -16.4205132432278 0 -0.00365032784700943 -0.0151083828872781 0.999879198640086 100 -3.85678780950809 1 1 0 0 +54 2 1 0.821119953934536 -13.4291119477255 0 -0.0039479155806885 -0.0123125220756176 0.999916404387239 100 -3.89967206509937 1 1 0 0 +55 2 1 0.596825115125713 -5.39666832015092 0 -0.00492214629974267 -0.00446489894792259 0.999977918332795 100 -3.96675229243044 1 1 0 0 +56 2 1 -9.46156455916958 -13.7472095307389 0 -0.00506286685087867 -0.0109583227043417 0.999927138616988 100 -3.84801434371798 1 1 0 0 +57 2 1 -8.37410475901676 -15.5109631622118 0 -0.00472221683648625 -0.012926725651533 0.99990529573159 100 -3.83261754049272 1 1 0 0 +58 2 1 -7.31830401628738 -17.0383272231861 0 -0.00441330492125646 -0.014658136648053 0.999882824019734 100 -3.81653273674999 1 1 0 0 +59 2 1 -6.3942607452701 -17.5815720641915 0 -0.0042364828728313 -0.0154035303858007 0.999872383589287 100 -3.81239608377018 1 1 0 0 +60 2 1 -5.76800160355422 -15.9005565838654 0 -0.00435818622695915 -0.0139206034005752 0.99989360584703 100 -3.83980237092612 1 1 0 0 +61 2 1 -5.69228075535818 -10.1079460679258 0 -0.00503175455964597 -0.00831788212933109 0.999952746024998 100 -3.90499060111313 1 1 0 0 +62 2 1 -6.52996707227581 2.50370019487027 0 -0.00662048489694893 0.00411896673842411 0.999969601184324 100 -3.92791782718268 1 1 0 0 +63 2 1 -8.78129782323258 25.6611910971804 0 -0.0096220351228757 0.0271134280297388 0.999586053554455 100 -3.55106420694062 1 1 0 0 +64 2 1 -13.1227613266576 64.3919771484399 0 -0.0146925951864595 0.0655877239513087 0.997738632164543 100 -1.70860756561444 1 1 0 0 +65 2 1 -20.4877969818711 125.60848997946 0 -0.0226680884225095 0.125839588498114 0.991791588860228 100 4.28260638987706 1 1 0 0 +66 2 1 -32.2909753130231 219.743520134832 0 -0.0345773183528341 0.215676318179954 0.975852516947036 100 20.7106810199408 1 1 0 0 +67 2 1 -51.1533251956862 366.066541831191 0 -0.0516351976458702 0.344436308999584 0.937388625601364 100 62.6648735857552 1 1 0 0 +68 2 1 -83.7764873918025 613.775576295939 0 -0.0751766796627167 0.522666416341192 0.849216276377193 100 173.189884157639 1 1 0 0 +69 2 1 -160.220261945176 1183.38360001005 0 -0.106317148100926 0.760194774729301 0.640937257845066 100 555.042835316111 1 1 0 0 +70 2 1 -17.6404038154172 46.4711363839245 0 -0.0130437440413356 0.0485831406768119 0.998733968173387 100 -2.66625830218993 1 1 0 0 +71 2 1 -23.7174148992472 98.0976539595332 0 -0.0197962556859964 0.0996599704153448 0.99482460693211 100 1.25375398658377 1 1 0 0 +72 2 1 -33.6113463863841 178.03340091283 0 -0.0300656385411309 0.177149374560985 0.983724634474387 100 12.5659780668186 1 1 0 0 +73 2 1 -49.3347820067003 301.042792596824 0 -0.0449986187952485 0.289814076987932 0.956024542094058 100 41.9518243791429 1 1 0 0 +74 2 1 -75.3673317232191 499.90225045642 0 -0.0658998279855328 0.44782218798517 0.891690809989456 100 117.255230046985 1 1 0 0 +75 2 1 -127.064734258011 886.848508260774 0 -0.094056124860343 0.661782625617416 0.743772278192173 100 339.818635992677 1 1 0 0 +76 2 1 -389.716638466033 2814.31262968582 0 -0.129342374699414 0.9346167234988 0.331303682840205 100 2010.22528717505 1 1 0 0 diff --git a/Tests/input/PlaneGratingDevAzMisVLS.rml b/Intern/RayCore/tests/input/PlaneGratingDevAzMisVLS.rml similarity index 100% rename from Tests/input/PlaneGratingDevAzMisVLS.rml rename to Intern/RayCore/tests/input/PlaneGratingDevAzMisVLS.rml diff --git a/Tests/input/PlaneGratingDeviationAz.csv b/Intern/RayCore/tests/input/PlaneGratingDeviationAz.csv similarity index 99% rename from Tests/input/PlaneGratingDeviationAz.csv rename to Intern/RayCore/tests/input/PlaneGratingDeviationAz.csv index 40e108f76..3649197fb 100644 --- a/Tests/input/PlaneGratingDeviationAz.csv +++ b/Intern/RayCore/tests/input/PlaneGratingDeviationAz.csv @@ -1,22 +1,22 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -3.92496552223167 -6.73066871360703 0 -0.000353633414118614 -0.00061176398452793 0.999999750344087 100 0.0724182249996375 1 1 0 0 -1 2 1 -0.362342152687157 -5.77562342620031 0 -3.16518368597073e-05 -0.000525539305512637 0.99999986140329 100 0.0657421725686618 1 1 0 0 -2 2 1 3.2002772901685 -4.82057841327666 0 0.000290329577828448 -0.000439313250987793 0.999999861356292 100 0.0602883974675024 1 1 0 0 -3 2 1 6.76289359340542 -3.86553346370661 0 0.000612310794172051 -0.000353085830548598 0.999999750202913 100 0.0560568968533062 1 1 0 0 -4 2 1 -4.87092700390111 -3.19858650136976 0 -0.000439859348642093 -0.000290146723005562 0.999999861169307 100 0.0302032881902505 1 1 0 0 -5 2 1 -1.30831625013678 -2.24354695275814 0 -0.000117877735944572 -0.000203922031849064 0.999999972260322 100 0.0235275500895114 1 1 0 0 -6 2 1 2.25429047159804 -1.28850728434396 0 0.000204103714187019 -0.000117695965219627 0.999999972244667 100 0.0180740805078585 1 1 0 0 -7 2 1 5.81689394836678 -0.333467285000296 0 0.000526084965978878 -3.14685327124662e-05 0.99999986112216 100 0.0138428766008474 1 1 0 0 -8 2 1 -5.81688143687185 0.333469897421055 0 -0.000526085417226292 3.14719602768607e-05 0.999999861121815 100 -0.0107871115761782 1 1 0 0 -9 2 1 -2.25428329820579 1.28850370768909 0 -0.000204103804865228 0.000117696653989009 0.999999972244567 100 -0.0174625360776872 1 1 0 0 -10 2 1 1.30831070309155 2.24353803204035 0 0.000117877644934749 0.000203922723137303 0.999999972260192 100 -0.0229157007385083 1 1 0 0 -11 2 1 4.87090135407696 3.19857308159873 0 0.000439858896399833 0.000290150158126571 0.999999861168509 100 -0.0271466084045642 1 1 0 0 -12 2 1 -6.76282903285692 3.86550127379825 0 -0.000612311610275823 0.000353092029472181 0.999999750200224 100 -0.0505529961429829 1 1 0 0 -13 2 1 -3.20024350860985 4.82052934617417 0 -0.000290330034026284 0.000439316716154381 0.999999861354638 100 -0.0572281077832031 1 1 0 0 -14 2 1 0.362337772930877 5.77555832690764 0 3.16513796670242e-05 0.000525542778235839 0.99999986140148 100 -0.0626809681245959 1 1 0 0 -15 2 1 3.9249155988153 6.73058842712034 0 0.000353632595030301 0.000611770206121355 0.99999975034057 100 -0.0669115800100144 1 1 0 0 -16 2 1 -3.92496552223167 -6.73066871360703 0 -0.000353633414118614 -0.00061176398452793 0.999999750344087 100 0.0724182249996375 1 1 0 0 -17 2 1 -0.362342152687157 -5.77562342620031 0 -3.16518368597073e-05 -0.000525539305512637 0.99999986140329 100 0.0657421725686618 1 1 0 0 -18 2 1 3.2002772901685 -4.82057841327666 0 0.000290329577828448 -0.000439313250987793 0.999999861356292 100 0.0602883974675024 1 1 0 0 -19 2 1 6.76289359340542 -3.86553346370661 0 0.000612310794172051 -0.000353085830548598 0.999999750202913 100 0.0560568968533062 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -3.92496552223167 -6.73066871360703 0 -0.000353633414118614 -0.00061176398452793 0.999999750344087 100 0.0724182249996375 1 1 0 0 +1 2 1 -0.362342152687157 -5.77562342620031 0 -3.16518368597073e-05 -0.000525539305512637 0.99999986140329 100 0.0657421725686618 1 1 0 0 +2 2 1 3.2002772901685 -4.82057841327666 0 0.000290329577828448 -0.000439313250987793 0.999999861356292 100 0.0602883974675024 1 1 0 0 +3 2 1 6.76289359340542 -3.86553346370661 0 0.000612310794172051 -0.000353085830548598 0.999999750202913 100 0.0560568968533062 1 1 0 0 +4 2 1 -4.87092700390111 -3.19858650136976 0 -0.000439859348642093 -0.000290146723005562 0.999999861169307 100 0.0302032881902505 1 1 0 0 +5 2 1 -1.30831625013678 -2.24354695275814 0 -0.000117877735944572 -0.000203922031849064 0.999999972260322 100 0.0235275500895114 1 1 0 0 +6 2 1 2.25429047159804 -1.28850728434396 0 0.000204103714187019 -0.000117695965219627 0.999999972244667 100 0.0180740805078585 1 1 0 0 +7 2 1 5.81689394836678 -0.333467285000296 0 0.000526084965978878 -3.14685327124662e-05 0.99999986112216 100 0.0138428766008474 1 1 0 0 +8 2 1 -5.81688143687185 0.333469897421055 0 -0.000526085417226292 3.14719602768607e-05 0.999999861121815 100 -0.0107871115761782 1 1 0 0 +9 2 1 -2.25428329820579 1.28850370768909 0 -0.000204103804865228 0.000117696653989009 0.999999972244567 100 -0.0174625360776872 1 1 0 0 +10 2 1 1.30831070309155 2.24353803204035 0 0.000117877644934749 0.000203922723137303 0.999999972260192 100 -0.0229157007385083 1 1 0 0 +11 2 1 4.87090135407696 3.19857308159873 0 0.000439858896399833 0.000290150158126571 0.999999861168509 100 -0.0271466084045642 1 1 0 0 +12 2 1 -6.76282903285692 3.86550127379825 0 -0.000612311610275823 0.000353092029472181 0.999999750200224 100 -0.0505529961429829 1 1 0 0 +13 2 1 -3.20024350860985 4.82052934617417 0 -0.000290330034026284 0.000439316716154381 0.999999861354638 100 -0.0572281077832031 1 1 0 0 +14 2 1 0.362337772930877 5.77555832690764 0 3.16513796670242e-05 0.000525542778235839 0.99999986140148 100 -0.0626809681245959 1 1 0 0 +15 2 1 3.9249155988153 6.73058842712034 0 0.000353632595030301 0.000611770206121355 0.99999975034057 100 -0.0669115800100144 1 1 0 0 +16 2 1 -3.92496552223167 -6.73066871360703 0 -0.000353633414118614 -0.00061176398452793 0.999999750344087 100 0.0724182249996375 1 1 0 0 +17 2 1 -0.362342152687157 -5.77562342620031 0 -3.16518368597073e-05 -0.000525539305512637 0.99999986140329 100 0.0657421725686618 1 1 0 0 +18 2 1 3.2002772901685 -4.82057841327666 0 0.000290329577828448 -0.000439313250987793 0.999999861356292 100 0.0602883974675024 1 1 0 0 +19 2 1 6.76289359340542 -3.86553346370661 0 0.000612310794172051 -0.000353085830548598 0.999999750202913 100 0.0560568968533062 1 1 0 0 diff --git a/Tests/input/PlaneGratingDeviationAz.rml b/Intern/RayCore/tests/input/PlaneGratingDeviationAz.rml similarity index 100% rename from Tests/input/PlaneGratingDeviationAz.rml rename to Intern/RayCore/tests/input/PlaneGratingDeviationAz.rml diff --git a/Tests/input/PlaneGratingDeviationAzMis.csv b/Intern/RayCore/tests/input/PlaneGratingDeviationAzMis.csv similarity index 99% rename from Tests/input/PlaneGratingDeviationAzMis.csv rename to Intern/RayCore/tests/input/PlaneGratingDeviationAzMis.csv index 7668a8ebf..1df330ade 100644 --- a/Tests/input/PlaneGratingDeviationAzMis.csv +++ b/Intern/RayCore/tests/input/PlaneGratingDeviationAzMis.csv @@ -1,22 +1,22 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -9.63969526427744 -9.14523134277557 0 -0.00603823248547923 -0.00337799370935554 0.999976064167014 100 -3.8542534256818 1 1 0 0 -1 2 1 -6.07875385667126 -8.18862388341434 0 -0.00571630090697301 -0.00329161610027822 0.99997824434704 100 -3.88374739273695 1 1 0 0 -2 2 1 -2.51783106976714 -7.23202064869377 0 -0.00539436886249615 -0.00320523680856383 0.999980313427008 100 -3.91201939166956 1 1 0 0 -3 2 1 1.04307388325375 -6.27542142715521 0 -0.00507243638781651 -0.0031188558438241 0.999982271406507 100 -3.93906943796696 1 1 0 0 -4 2 1 -10.5870380488428 -5.61484692898591 0 -0.00612462799105146 -0.00305642502799209 0.999976573324605 100 -3.90085247143224 1 1 0 0 -5 2 1 -7.02610869406841 -4.6582529427044 0 -0.00580269637725931 -0.0029700474064685 0.999978753540872 100 -3.93034597750875 1 1 0 0 -6 2 1 -3.4651980654113 -3.70166278690467 0 -0.00548076429749032 -0.00288366810234383 0.99998082265661 100 -3.95861752525354 1 1 0 0 -7 2 1 0.0956946239410401 -2.7450762501351 0 -0.00515883178751234 -0.00279728712522984 0.999982780671411 100 -3.98566713015975 1 1 0 0 -8 2 1 -11.5343730215097 -2.08449115489181 0 -0.00621102300283299 -0.0027348546179954 0.999976971616585 100 -3.94622736598501 1 1 0 0 -9 2 1 -7.97345571889212 -1.12791064115668 0 -0.00588909138952423 -0.00264847699362808 0.999979151868788 100 -3.97572041435762 1 1 0 0 -10 2 1 -4.41255724780555 -0.171333563749386 0 -0.00556715931023251 -0.00256209768669575 0.999981221020004 100 -4.00399151406396 1 1 0 0 -11 2 1 -0.851676821443696 0.785240288773443 0 -0.00524522680072564 -0.0024757167068103 0.999983179069827 100 -4.03104068058838 1 1 0 0 -12 2 1 -12.4817003943171 1.44583677019736 0 -0.00629741751120565 -0.0024132825152056 0.99997725904152 100 -3.99037813363122 1 1 0 0 -13 2 1 -8.92079514318417 2.40240381191859 0 -0.00597548593414965 -0.00232690489759689 0.999979439329354 100 -4.01987072759016 1 1 0 0 -14 2 1 -5.35990882899405 3.35896781145849 0 -0.00565355389110457 -0.00224052559745958 0.999981508515757 100 -4.04814138239942 1 1 0 0 -15 2 1 -1.79904066494699 4.31552898025401 0 -0.00533162141783826 -0.00215414462440549 0.99998346660032 100 -4.07519011354623 1 1 0 0 -16 2 1 -9.63969526427744 -9.14523134277557 0 -0.00603823248547923 -0.00337799370935554 0.999976064167014 100 -3.8542534256818 1 1 0 0 -17 2 1 -6.07875385667126 -8.18862388341434 0 -0.00571630090697301 -0.00329161610027822 0.99997824434704 100 -3.88374739273695 1 1 0 0 -18 2 1 -2.51783106976714 -7.23202064869377 0 -0.00539436886249615 -0.00320523680856383 0.999980313427008 100 -3.91201939166956 1 1 0 0 -19 2 1 1.04307388325375 -6.27542142715521 0 -0.00507243638781651 -0.0031188558438241 0.999982271406507 100 -3.93906943796696 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -9.63969526427744 -9.14523134277557 0 -0.00603823248547923 -0.00337799370935554 0.999976064167014 100 -3.8542534256818 1 1 0 0 +1 2 1 -6.07875385667126 -8.18862388341434 0 -0.00571630090697301 -0.00329161610027822 0.99997824434704 100 -3.88374739273695 1 1 0 0 +2 2 1 -2.51783106976714 -7.23202064869377 0 -0.00539436886249615 -0.00320523680856383 0.999980313427008 100 -3.91201939166956 1 1 0 0 +3 2 1 1.04307388325375 -6.27542142715521 0 -0.00507243638781651 -0.0031188558438241 0.999982271406507 100 -3.93906943796696 1 1 0 0 +4 2 1 -10.5870380488428 -5.61484692898591 0 -0.00612462799105146 -0.00305642502799209 0.999976573324605 100 -3.90085247143224 1 1 0 0 +5 2 1 -7.02610869406841 -4.6582529427044 0 -0.00580269637725931 -0.0029700474064685 0.999978753540872 100 -3.93034597750875 1 1 0 0 +6 2 1 -3.4651980654113 -3.70166278690467 0 -0.00548076429749032 -0.00288366810234383 0.99998082265661 100 -3.95861752525354 1 1 0 0 +7 2 1 0.0956946239410401 -2.7450762501351 0 -0.00515883178751234 -0.00279728712522984 0.999982780671411 100 -3.98566713015975 1 1 0 0 +8 2 1 -11.5343730215097 -2.08449115489181 0 -0.00621102300283299 -0.0027348546179954 0.999976971616585 100 -3.94622736598501 1 1 0 0 +9 2 1 -7.97345571889212 -1.12791064115668 0 -0.00588909138952423 -0.00264847699362808 0.999979151868788 100 -3.97572041435762 1 1 0 0 +10 2 1 -4.41255724780555 -0.171333563749386 0 -0.00556715931023251 -0.00256209768669575 0.999981221020004 100 -4.00399151406396 1 1 0 0 +11 2 1 -0.851676821443696 0.785240288773443 0 -0.00524522680072564 -0.0024757167068103 0.999983179069827 100 -4.03104068058838 1 1 0 0 +12 2 1 -12.4817003943171 1.44583677019736 0 -0.00629741751120565 -0.0024132825152056 0.99997725904152 100 -3.99037813363122 1 1 0 0 +13 2 1 -8.92079514318417 2.40240381191859 0 -0.00597548593414965 -0.00232690489759689 0.999979439329354 100 -4.01987072759016 1 1 0 0 +14 2 1 -5.35990882899405 3.35896781145849 0 -0.00565355389110457 -0.00224052559745958 0.999981508515757 100 -4.04814138239942 1 1 0 0 +15 2 1 -1.79904066494699 4.31552898025401 0 -0.00533162141783826 -0.00215414462440549 0.99998346660032 100 -4.07519011354623 1 1 0 0 +16 2 1 -9.63969526427744 -9.14523134277557 0 -0.00603823248547923 -0.00337799370935554 0.999976064167014 100 -3.8542534256818 1 1 0 0 +17 2 1 -6.07875385667126 -8.18862388341434 0 -0.00571630090697301 -0.00329161610027822 0.99997824434704 100 -3.88374739273695 1 1 0 0 +18 2 1 -2.51783106976714 -7.23202064869377 0 -0.00539436886249615 -0.00320523680856383 0.999980313427008 100 -3.91201939166956 1 1 0 0 +19 2 1 1.04307388325375 -6.27542142715521 0 -0.00507243638781651 -0.0031188558438241 0.999982271406507 100 -3.93906943796696 1 1 0 0 diff --git a/Tests/input/PlaneGratingDeviationAzMis.rml b/Intern/RayCore/tests/input/PlaneGratingDeviationAzMis.rml similarity index 100% rename from Tests/input/PlaneGratingDeviationAzMis.rml rename to Intern/RayCore/tests/input/PlaneGratingDeviationAzMis.rml diff --git a/Tests/input/PlaneGratingDeviationDefault.csv b/Intern/RayCore/tests/input/PlaneGratingDeviationDefault.csv similarity index 99% rename from Tests/input/PlaneGratingDeviationDefault.csv rename to Intern/RayCore/tests/input/PlaneGratingDeviationDefault.csv index 0266bd2dd..21b8cdc8b 100644 --- a/Tests/input/PlaneGratingDeviationDefault.csv +++ b/Intern/RayCore/tests/input/PlaneGratingDeviationDefault.csv @@ -1,22 +1,22 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -5.53253146738367 -5.48491099754357 0 -0.000499999916666671 -0.000499452696140226 0.999999750273513 100 0.0647681113888439 1 1 0 0 -1 2 1 -1.84417701999027 -5.48491176752757 0 -0.000166666645061729 -0.000499454078345965 0.999999861383917 100 0.0635458757523111 1 1 0 0 -2 2 1 1.84417701999027 -5.48491176752757 0 0.000166666645061729 -0.000499454078345965 0.999999861383917 100 0.0635458757523111 1 1 0 0 -3 2 1 5.53253146738367 -5.48491099754357 0 0.000499999916666671 -0.000499452696140226 0.999999750273513 100 0.0647681113888439 1 1 0 0 -4 2 1 -5.53251079438996 -1.82829584709233 0 -0.000499999972222223 -0.000166483552064917 0.999999861141618 100 0.0221998922564808 1 1 0 0 -5 2 1 -1.84417012899357 -1.82829702518843 0 -0.000166666663580247 -0.000166484934233421 0.999999972252495 100 0.0209776655027554 1 1 0 0 -6 2 1 1.84417012899357 -1.82829702518843 0 0.000166666663580247 -0.000166484934233421 0.999999972252495 100 0.0209776655027554 1 1 0 0 -7 2 1 5.53251079438996 -1.82829584709233 0 0.000499999972222223 -0.000166483552064917 0.999999861141618 100 0.0221998922564808 1 1 0 0 -8 2 1 -5.53249012256962 1.82829231127919 0 -0.000499999972222223 0.000166487012347574 0.999999861141042 100 -0.0191437507199907 1 1 0 0 -9 2 1 -1.84416323838799 1.8282907250767 0 -0.000166666663580247 0.00016648563021647 0.999999972252379 100 -0.0203659687284699 1 1 0 0 -10 2 1 1.84416323838799 1.8282907250767 0 0.000166666663580247 0.00016648563021647 0.999999972252379 100 -0.0203659687284699 1 1 0 0 -11 2 1 5.53249012256962 1.82829231127919 0 0.000499999972222223 0.000166487012347574 0.999999861141042 100 -0.0191437507199907 1 1 0 0 -12 2 1 -5.53246945191853 5.4848542965158 0 -0.000499999916666671 0.000499458959986807 0.999999750270384 100 -0.0592628395824022 1 1 0 0 -13 2 1 -1.84415634817216 5.48485230221265 0 -0.000166666645061729 0.000499457577893214 0.999999861382169 100 -0.0604850489818318 1 1 0 0 -14 2 1 1.84415634817216 5.48485230221265 0 0.000166666645061729 0.000499457577893214 0.999999861382169 100 -0.0604850489818318 1 1 0 0 -15 2 1 5.53246945191853 5.4848542965158 0 0.000499999916666671 0.000499458959986807 0.999999750270384 100 -0.0592628395824022 1 1 0 0 -16 2 1 -5.53253146738367 -5.48491099754357 0 -0.000499999916666671 -0.000499452696140226 0.999999750273513 100 0.0647681113888439 1 1 0 0 -17 2 1 -1.84417701999027 -5.48491176752757 0 -0.000166666645061729 -0.000499454078345965 0.999999861383917 100 0.0635458757523111 1 1 0 0 -18 2 1 1.84417701999027 -5.48491176752757 0 0.000166666645061729 -0.000499454078345965 0.999999861383917 100 0.0635458757523111 1 1 0 0 -19 2 1 5.53253146738367 -5.48491099754357 0 0.000499999916666671 -0.000499452696140226 0.999999750273513 100 0.0647681113888439 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -5.53253146738367 -5.48491099754357 0 -0.000499999916666671 -0.000499452696140226 0.999999750273513 100 0.0647681113888439 1 1 0 0 +1 2 1 -1.84417701999027 -5.48491176752757 0 -0.000166666645061729 -0.000499454078345965 0.999999861383917 100 0.0635458757523111 1 1 0 0 +2 2 1 1.84417701999027 -5.48491176752757 0 0.000166666645061729 -0.000499454078345965 0.999999861383917 100 0.0635458757523111 1 1 0 0 +3 2 1 5.53253146738367 -5.48491099754357 0 0.000499999916666671 -0.000499452696140226 0.999999750273513 100 0.0647681113888439 1 1 0 0 +4 2 1 -5.53251079438996 -1.82829584709233 0 -0.000499999972222223 -0.000166483552064917 0.999999861141618 100 0.0221998922564808 1 1 0 0 +5 2 1 -1.84417012899357 -1.82829702518843 0 -0.000166666663580247 -0.000166484934233421 0.999999972252495 100 0.0209776655027554 1 1 0 0 +6 2 1 1.84417012899357 -1.82829702518843 0 0.000166666663580247 -0.000166484934233421 0.999999972252495 100 0.0209776655027554 1 1 0 0 +7 2 1 5.53251079438996 -1.82829584709233 0 0.000499999972222223 -0.000166483552064917 0.999999861141618 100 0.0221998922564808 1 1 0 0 +8 2 1 -5.53249012256962 1.82829231127919 0 -0.000499999972222223 0.000166487012347574 0.999999861141042 100 -0.0191437507199907 1 1 0 0 +9 2 1 -1.84416323838799 1.8282907250767 0 -0.000166666663580247 0.00016648563021647 0.999999972252379 100 -0.0203659687284699 1 1 0 0 +10 2 1 1.84416323838799 1.8282907250767 0 0.000166666663580247 0.00016648563021647 0.999999972252379 100 -0.0203659687284699 1 1 0 0 +11 2 1 5.53249012256962 1.82829231127919 0 0.000499999972222223 0.000166487012347574 0.999999861141042 100 -0.0191437507199907 1 1 0 0 +12 2 1 -5.53246945191853 5.4848542965158 0 -0.000499999916666671 0.000499458959986807 0.999999750270384 100 -0.0592628395824022 1 1 0 0 +13 2 1 -1.84415634817216 5.48485230221265 0 -0.000166666645061729 0.000499457577893214 0.999999861382169 100 -0.0604850489818318 1 1 0 0 +14 2 1 1.84415634817216 5.48485230221265 0 0.000166666645061729 0.000499457577893214 0.999999861382169 100 -0.0604850489818318 1 1 0 0 +15 2 1 5.53246945191853 5.4848542965158 0 0.000499999916666671 0.000499458959986807 0.999999750270384 100 -0.0592628395824022 1 1 0 0 +16 2 1 -5.53253146738367 -5.48491099754357 0 -0.000499999916666671 -0.000499452696140226 0.999999750273513 100 0.0647681113888439 1 1 0 0 +17 2 1 -1.84417701999027 -5.48491176752757 0 -0.000166666645061729 -0.000499454078345965 0.999999861383917 100 0.0635458757523111 1 1 0 0 +18 2 1 1.84417701999027 -5.48491176752757 0 0.000166666645061729 -0.000499454078345965 0.999999861383917 100 0.0635458757523111 1 1 0 0 +19 2 1 5.53253146738367 -5.48491099754357 0 0.000499999916666671 -0.000499452696140226 0.999999750273513 100 0.0647681113888439 1 1 0 0 diff --git a/Tests/input/PlaneGratingDeviationDefault.rml b/Intern/RayCore/tests/input/PlaneGratingDeviationDefault.rml similarity index 100% rename from Tests/input/PlaneGratingDeviationDefault.rml rename to Intern/RayCore/tests/input/PlaneGratingDeviationDefault.rml diff --git a/Tests/input/PlaneGratingIncAzMis.csv b/Intern/RayCore/tests/input/PlaneGratingIncAzMis.csv similarity index 99% rename from Tests/input/PlaneGratingIncAzMis.csv rename to Intern/RayCore/tests/input/PlaneGratingIncAzMis.csv index 82c45db81..979cba33d 100644 --- a/Tests/input/PlaneGratingIncAzMis.csv +++ b/Intern/RayCore/tests/input/PlaneGratingIncAzMis.csv @@ -1,22 +1,22 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -9.6163874844734 -8.82574823376146 0 -0.00597617215874047 -0.00336981593735568 0.999976464576481 100 -3.81524274528181 1 1 0 0 -1 2 1 -6.05595126689284 -7.86700984990005 0 -0.00565427618027858 -0.00328332804231222 0.99997862423046 100 -3.84458314230574 1 1 0 0 -2 2 1 -2.4955335678662 -6.90827568042403 0 -0.00533237974502273 -0.00319683845068712 0.999980672788317 100 -3.87270153245663 1 1 0 0 -3 2 1 1.06486639932833 -5.94954551325584 0 -0.00501048288873482 -0.00311034717211922 0.999982610249644 100 -3.89959793114042 1 1 0 0 -4 2 1 -10.5658463826818 -5.29272534482499 0 -0.00606267723338436 -0.00304863179173292 0.999976974629397 100 -3.8623233375771 1 1 0 0 -5 2 1 -7.00542236067865 -4.33400058157039 0 -0.00574078122075395 -0.00296214387648 0.999979134349628 100 -3.8916630001977 1 1 0 0 -6 2 1 -3.4450169627546 -3.37527963784029 0 -0.00541888475131834 -0.00287565426471941 0.999981182973261 100 -3.91978066586819 1 1 0 0 -7 2 1 0.115370597805824 -2.41656230156532 0 -0.00509698786083944 -0.00278916296609013 0.999983120499889 100 -3.94667634998859 1 1 0 0 -8 2 1 -11.5152972334098 -1.75973249262393 0 -0.00614918183137281 -0.00272744584844028 0.999977374045007 100 -3.9081777078901 1 1 0 0 -9 2 1 -7.9548854057037 -0.801021348992807 0 -0.00582728582033841 -0.00264095792259888 0.999979533831178 100 -3.93751663953196 1 1 0 0 -10 2 1 -4.39449230760022 0.157686369967613 0 -0.00550538935248759 -0.00255446830032423 0.999981582520288 100 -3.96563358399885 1 1 0 0 -11 2 1 -0.834117152390217 1.11639087631894 0 -0.0051834924635823 -0.00246797699125503 0.999983520111932 100 -3.9925285567067 1 1 0 0 -12 2 1 -12.4647402498847 1.77323111747464 0 -0.00623568594305892 -0.00240625814339912 0.999977662821809 100 -3.95280588189223 1 1 0 0 -13 2 1 -8.90434061519806 2.73192864246226 0 -0.005913789969385 -0.0023197702165906 0.999979822673608 100 -3.98214408597028 1 1 0 0 -14 2 1 -5.34395981563599 3.69062313762721 0 -0.00559189353888355 -0.00223328059342308 0.999981871427898 100 -4.01026031252843 1 1 0 0 -15 2 1 -1.7835970644955 4.6493148150214 0 -0.00526999668731648 -0.00214678928353551 0.999983809084271 100 -4.03715457696353 1 1 0 0 -16 2 1 -9.6163874844734 -8.82574823376146 0 -0.00597617215874047 -0.00336981593735568 0.999976464576481 100 -3.81524274528181 1 1 0 0 -17 2 1 -6.05595126689284 -7.86700984990005 0 -0.00565427618027858 -0.00328332804231222 0.99997862423046 100 -3.84458314230574 1 1 0 0 -18 2 1 -2.4955335678662 -6.90827568042403 0 -0.00533237974502273 -0.00319683845068712 0.999980672788317 100 -3.87270153245663 1 1 0 0 -19 2 1 1.06486639932833 -5.94954551325584 0 -0.00501048288873482 -0.00311034717211922 0.999982610249644 100 -3.89959793114042 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -9.6163874844734 -8.82574823376146 0 -0.00597617215874047 -0.00336981593735568 0.999976464576481 100 -3.81524274528181 1 1 0 0 +1 2 1 -6.05595126689284 -7.86700984990005 0 -0.00565427618027858 -0.00328332804231222 0.99997862423046 100 -3.84458314230574 1 1 0 0 +2 2 1 -2.4955335678662 -6.90827568042403 0 -0.00533237974502273 -0.00319683845068712 0.999980672788317 100 -3.87270153245663 1 1 0 0 +3 2 1 1.06486639932833 -5.94954551325584 0 -0.00501048288873482 -0.00311034717211922 0.999982610249644 100 -3.89959793114042 1 1 0 0 +4 2 1 -10.5658463826818 -5.29272534482499 0 -0.00606267723338436 -0.00304863179173292 0.999976974629397 100 -3.8623233375771 1 1 0 0 +5 2 1 -7.00542236067865 -4.33400058157039 0 -0.00574078122075395 -0.00296214387648 0.999979134349628 100 -3.8916630001977 1 1 0 0 +6 2 1 -3.4450169627546 -3.37527963784029 0 -0.00541888475131834 -0.00287565426471941 0.999981182973261 100 -3.91978066586819 1 1 0 0 +7 2 1 0.115370597805824 -2.41656230156532 0 -0.00509698786083944 -0.00278916296609013 0.999983120499889 100 -3.94667634998859 1 1 0 0 +8 2 1 -11.5152972334098 -1.75973249262393 0 -0.00614918183137281 -0.00272744584844028 0.999977374045007 100 -3.9081777078901 1 1 0 0 +9 2 1 -7.9548854057037 -0.801021348992807 0 -0.00582728582033841 -0.00264095792259888 0.999979533831178 100 -3.93751663953196 1 1 0 0 +10 2 1 -4.39449230760022 0.157686369967613 0 -0.00550538935248759 -0.00255446830032423 0.999981582520288 100 -3.96563358399885 1 1 0 0 +11 2 1 -0.834117152390217 1.11639087631894 0 -0.0051834924635823 -0.00246797699125503 0.999983520111932 100 -3.9925285567067 1 1 0 0 +12 2 1 -12.4647402498847 1.77323111747464 0 -0.00623568594305892 -0.00240625814339912 0.999977662821809 100 -3.95280588189223 1 1 0 0 +13 2 1 -8.90434061519806 2.73192864246226 0 -0.005913789969385 -0.0023197702165906 0.999979822673608 100 -3.98214408597028 1 1 0 0 +14 2 1 -5.34395981563599 3.69062313762721 0 -0.00559189353888355 -0.00223328059342308 0.999981871427898 100 -4.01026031252843 1 1 0 0 +15 2 1 -1.7835970644955 4.6493148150214 0 -0.00526999668731648 -0.00214678928353551 0.999983809084271 100 -4.03715457696353 1 1 0 0 +16 2 1 -9.6163874844734 -8.82574823376146 0 -0.00597617215874047 -0.00336981593735568 0.999976464576481 100 -3.81524274528181 1 1 0 0 +17 2 1 -6.05595126689284 -7.86700984990005 0 -0.00565427618027858 -0.00328332804231222 0.99997862423046 100 -3.84458314230574 1 1 0 0 +18 2 1 -2.4955335678662 -6.90827568042403 0 -0.00533237974502273 -0.00319683845068712 0.999980672788317 100 -3.87270153245663 1 1 0 0 +19 2 1 1.06486639932833 -5.94954551325584 0 -0.00501048288873482 -0.00311034717211922 0.999982610249644 100 -3.89959793114042 1 1 0 0 diff --git a/Tests/input/PlaneGratingIncAzMis.rml b/Intern/RayCore/tests/input/PlaneGratingIncAzMis.rml similarity index 100% rename from Tests/input/PlaneGratingIncAzMis.rml rename to Intern/RayCore/tests/input/PlaneGratingIncAzMis.rml diff --git a/Tests/input/PlaneMirror.csv b/Intern/RayCore/tests/input/PlaneMirror.csv similarity index 99% rename from Tests/input/PlaneMirror.csv rename to Intern/RayCore/tests/input/PlaneMirror.csv index 1c402650e..838cdd375 100644 --- a/Tests/input/PlaneMirror.csv +++ b/Intern/RayCore/tests/input/PlaneMirror.csv @@ -1,102 +1,102 @@ -sep= -Plane Mirror_RN Plane Mirror_RS Plane Mirror_RO Plane Mirror_OX Plane Mirror_OY Plane Mirror_OZ Plane Mirror_DX Plane Mirror_DY Plane Mirror_DZ Plane Mirror_EN Plane Mirror_PL Plane Mirror_S0 Plane Mirror_S1 Plane Mirror_S2 Plane Mirror_S3 -0 2 1 -5.03546965327983 0 7.7521255910344 -0.000499999916666671 0.64240442678405 0.766365645399335 100 5.94097421640618 1 1 0 0 -1 2 1 -3.91647626877554 0 7.75212520644893 -0.00038888883047554 0.642404458526643 0.766365683228684 100 5.94047980123469 1 1 0 0 -2 2 1 -2.79748298043617 -4.44089209850063e-16 7.75212491800874 -0.000277777739483312 0.642404482333588 0.766365711600697 100 5.94010898988199 1 1 0 0 -3 2 1 -1.67848976078601 4.44089209850063e-16 7.75212472571492 -0.000166666645061729 0.642404498204885 0.766365730515372 100 5.93986178232444 1 1 0 0 -4 2 1 -0.55949658234939 0 7.75212462956747 -5.55555485825333e-05 0.642404506140533 0.766365739972709 100 5.93973817854931 1 1 0 0 -5 2 1 0.55949658234939 0 7.75212462956747 5.55555485825333e-05 0.642404506140533 0.766365739972709 100 5.93973817854931 1 1 0 0 -6 2 1 1.67848976078601 4.44089209850063e-16 7.75212472571492 0.000166666645061729 0.642404498204885 0.766365730515372 100 5.93986178232444 1 1 0 0 -7 2 1 2.79748298043617 -4.44089209850063e-16 7.75212491800874 0.000277777739483312 0.642404482333588 0.766365711600697 100 5.94010898988199 1 1 0 0 -8 2 1 3.91647626877554 0 7.75212520644893 0.00038888883047554 0.642404458526643 0.766365683228684 100 5.94047980123469 1 1 0 0 -9 2 1 5.03546965327983 0 7.7521255910344 0.000499999916666671 0.64240442678405 0.766365645399335 100 5.94097421640618 1 1 0 0 -10 2 1 -5.03480951689834 4.44089209850063e-16 6.02863204595775 -0.000499999941358027 0.642489574567428 0.766294262390254 100 4.62020717801715 1 1 0 0 -11 2 1 -3.9159628294101 0 6.0286317469141 -0.000388888849679928 0.642489606310023 0.766294300219605 100 4.61971289359644 1 1 0 0 -12 2 1 -2.79711623805499 -4.44089209850063e-16 6.02863152263055 -0.000277777753200732 0.642489630116969 0.766294328591619 100 4.61934218030729 1 1 0 0 -13 2 1 -1.67826971536639 4.44089209850063e-16 6.02863137310819 -0.000166666653292181 0.642489645988267 0.766294347506295 100 4.61909503812785 1 1 0 0 -14 2 1 -0.559423233877696 4.44089209850063e-16 6.02863129834809 -5.55555513260174e-05 0.642489653923915 0.766294356963633 100 4.61897146704177 1 1 0 0 -15 2 1 0.559423233877696 4.44089209850063e-16 6.02863129834809 5.55555513260174e-05 0.642489653923915 0.766294356963633 100 4.61897146704177 1 1 0 0 -16 2 1 1.67826971536639 4.44089209850063e-16 6.02863137310819 0.000166666653292181 0.642489645988267 0.766294347506295 100 4.61909503812785 1 1 0 0 -17 2 1 2.79711623805499 -4.44089209850063e-16 6.02863152263055 0.000277777753200732 0.642489630116969 0.766294328591619 100 4.61934218030729 1 1 0 0 -18 2 1 3.9159628294101 0 6.0286317469141 0.000388888849679928 0.642489606310023 0.766294300219605 100 4.61971289359644 1 1 0 0 -19 2 1 5.03480951689834 4.44089209850063e-16 6.02863204595775 0.000499999941358027 0.642489574567428 0.766294262390254 100 4.62020717801715 1 1 0 0 -20 2 1 -5.0341495554587 0 4.30559524158062 -0.000499999959876544 0.642574714418836 0.76622286992075 100 3.29991365132628 1 1 0 0 -21 2 1 -3.91544952611053 4.44089209850063e-16 4.30559502803328 -0.00038888886408322 0.642574746161432 0.766222907750103 100 3.29941949759814 1 1 0 0 -22 2 1 -2.79674959286371 -4.44089209850063e-16 4.30559486787468 -0.000277777763488798 0.642574769968379 0.766222936122117 100 3.2990488823325 1 1 0 0 -23 2 1 -1.6780497282607 0 4.30559476110156 -0.000166666659465021 0.642574785839677 0.766222955036794 100 3.29880180550026 1 1 0 0 -24 2 1 -0.559349904843979 -4.44089209850063e-16 4.305594707715 -5.55555533836305e-05 0.642574793775326 0.766222964494133 100 3.29867826708687 1 1 0 0 -25 2 1 0.559349904843979 -4.44089209850063e-16 4.305594707715 5.55555533836305e-05 0.642574793775326 0.766222964494133 100 3.29867826708687 1 1 0 0 -26 2 1 1.6780497282607 0 4.30559476110156 0.000166666659465021 0.642574785839677 0.766222955036794 100 3.29880180550026 1 1 0 0 -27 2 1 2.79674959286371 -4.44089209850063e-16 4.30559486787468 0.000277777763488798 0.642574769968379 0.766222936122117 100 3.2990488823325 1 1 0 0 -28 2 1 3.91544952611053 4.44089209850063e-16 4.30559502803328 0.00038888886408322 0.642574746161432 0.766222907750103 100 3.29941949759814 1 1 0 0 -29 2 1 5.0341495554587 0 4.30559524158062 0.000499999959876544 0.642574714418836 0.76622286992075 100 3.29991365132628 1 1 0 0 -30 2 1 -5.03348976887503 0 2.58301495366588 -0.000499999972222223 0.642659846337223 0.766151467991705 100 1.98009341560646 1 1 0 0 -31 2 1 -3.91493635881002 0 2.58301482557153 -0.000388888873685414 0.64265987807982 0.766151505821058 100 1.97959939251632 1 1 0 0 -32 2 1 -2.7963830448146 0 2.58301472950186 -0.000277777770347508 0.642659901886767 0.766151534193074 100 1.97922887522691 1 1 0 0 -33 2 1 -1.67782979944031 0 2.58301466545577 -0.000166666663580247 0.642659917758066 0.766151553107751 100 1.97898186371458 1 1 0 0 -34 2 1 -0.559276595238696 -2.22044604925031e-16 2.58301463343218 -5.55555547553726e-05 0.642659925693715 0.76615156256509 100 1.97885835795933 1 1 0 0 -35 2 1 0.559276595238696 -2.22044604925031e-16 2.58301463343218 5.55555547553726e-05 0.642659925693715 0.76615156256509 100 1.97885835795933 1 1 0 0 -36 2 1 1.67782979944031 0 2.58301466545577 0.000166666663580247 0.642659917758066 0.766151553107751 100 1.97898186371458 1 1 0 0 -37 2 1 2.7963830448146 0 2.58301472950186 0.000277777770347508 0.642659901886767 0.766151534193074 100 1.97922887522691 1 1 0 0 -38 2 1 3.91493635881002 0 2.58301482557153 0.000388888873685414 0.64265987807982 0.766151505821058 100 1.97959939251632 1 1 0 0 -39 2 1 5.03348976887503 0 2.58301495366588 0.000499999972222223 0.642659846337223 0.766151467991705 100 1.98009341560646 1 1 0 0 -40 2 1 -5.03283015706149 0 0.860890958122196 -0.000499999978395062 0.642744970321538 0.766080056603999 100 0.66074625028341 1 1 0 0 -41 2 1 -3.91442332744182 0 0.860890915435358 -0.000388888878486511 0.642745002064135 0.766080094433353 100 0.660252357773061 1 1 0 0 -42 2 1 -2.79601659386 0 0.860890883420772 -0.000277777773776863 0.642745025871083 0.766080122805369 100 0.65988193841622 1 1 0 0 -43 2 1 -1.67760992887662 -5.55111512312578e-17 0.860890862078437 -0.00016666666563786 0.642745041742382 0.766080141720047 100 0.659634992192878 1 1 0 0 -44 2 1 -0.559203305052311 1.11022302462516e-16 0.860890851406185 -5.55555554412437e-05 0.642745049678031 0.766080151177385 100 0.659511519083026 1 1 0 0 -45 2 1 0.559203305052311 1.11022302462516e-16 0.860890851406185 5.55555554412437e-05 0.642745049678031 0.766080151177385 100 0.659511519083026 1 1 0 0 -46 2 1 1.67760992887662 -5.55111512312578e-17 0.860890862078437 0.00016666666563786 0.642745041742382 0.766080141720047 100 0.659634992192878 1 1 0 0 -47 2 1 2.79601659386 0 0.860890883420772 0.000277777773776863 0.642745025871083 0.766080122805369 100 0.65988193841622 1 1 0 0 -48 2 1 3.91442332744182 0 0.860890915435358 0.000388888878486511 0.642745002064135 0.766080094433353 100 0.660252357773061 1 1 0 0 -49 2 1 5.03283015706149 0 0.860890958122196 0.000499999978395062 0.642744970321538 0.766080056603999 100 0.66074625028341 1 1 0 0 -50 2 1 -5.0321707199323 0 -0.860776969001444 -0.000499999978395062 0.642830086370729 0.766008635758515 100 -0.658128065078927 1 1 0 0 -51 2 1 -3.91391043193922 -5.55111512312578e-17 -0.860776926326242 -0.000388888878486511 0.642830118113326 0.766008673587869 100 -0.65862182706951 1 1 0 0 -52 2 1 -2.79565023995223 0 -0.860776894318487 -0.000277777773776863 0.642830141920274 0.766008701959885 100 -0.658992148533798 1 1 0 0 -53 2 1 -1.67739011654103 0 -0.860776872981428 -0.00016666666563786 0.642830157791573 0.766008720874563 100 -0.659239029499076 1 1 0 0 -54 2 1 -0.559130034275291 0 -0.860776862313982 -5.55555554412437e-05 0.642830165727223 0.766008730331901 100 -0.659362469978078 1 1 0 0 -55 2 1 0.559130034275291 0 -0.860776862313982 5.55555554412437e-05 0.642830165727223 0.766008730331901 100 -0.659362469978078 1 1 0 0 -56 2 1 1.67739011654103 0 -0.860776872981428 0.00016666666563786 0.642830157791573 0.766008720874563 100 -0.659239029499076 1 1 0 0 -57 2 1 2.79565023995223 0 -0.860776894318487 0.000277777773776863 0.642830141920274 0.766008701959885 100 -0.658992148533798 1 1 0 0 -58 2 1 3.91391043193922 -5.55111512312578e-17 -0.860776926326242 0.000388888878486511 0.642830118113326 0.766008673587869 100 -0.65862182706951 1 1 0 0 -59 2 1 5.0321707199323 0 -0.860776969001444 0.000499999978395062 0.642830086370729 0.766008635758515 100 -0.658128065078927 1 1 0 0 -60 2 1 -5.03151145740174 0 -2.58198905151691 -0.000499999972222223 0.642915194483747 0.765937205456135 100 -1.97652975078199 1 1 0 0 -61 2 1 -3.91339767223552 0 -2.58198892352404 -0.000388888873685414 0.642915226226344 0.765937243285488 100 -1.9770233823092 1 1 0 0 -62 2 1 -2.79528398304368 0 -2.58198882752993 -0.000277777770347508 0.642915250033292 0.765937271657503 100 -1.97739360592641 1 1 0 0 -63 2 1 -1.67717036240496 0 -2.58198876353241 -0.000166666663580247 0.64291526590459 0.765937290572181 100 -1.97764042165909 1 1 0 0 -64 2 1 -0.559056782898113 0 -2.58198873153474 -5.55555547553726e-05 0.642915273840239 0.765937300029519 100 -1.97776382952361 1 1 0 0 -65 2 1 0.559056782898113 0 -2.58198873153474 5.55555547553726e-05 0.642915273840239 0.765937300029519 100 -1.97776382952361 1 1 0 0 -66 2 1 1.67717036240496 0 -2.58198876353241 0.000166666663580247 0.64291526590459 0.765937290572181 100 -1.97764042165909 1 1 0 0 -67 2 1 2.79528398304368 0 -2.58198882752993 0.000277777770347508 0.642915250033292 0.765937271657503 100 -1.97739360592641 1 1 0 0 -68 2 1 3.91339767223552 0 -2.58198892352404 0.000388888873685414 0.642915226226344 0.765937243285488 100 -1.9770233823092 1 1 0 0 -69 2 1 5.03151145740174 0 -2.58198905151691 0.000499999972222223 0.642915194483747 0.765937205456135 100 -1.97652975078199 1 1 0 0 -70 2 1 -5.03085236938414 0 -4.30274551309158 -0.000499999959876544 0.64300029465954 0.765865765697739 100 -3.29445902697626 1 1 0 0 -71 2 1 -3.91288504826411 8.88178419700125e-16 -4.30274529982648 -0.00038888886408322 0.643000326402136 0.765865803527091 100 -3.29495252809829 1 1 0 0 -72 2 1 -2.79491782308675 4.44089209850063e-16 -4.30274513987874 -0.000277777763488798 0.643000350209083 0.765865831899106 100 -3.29532265391208 1 1 0 0 -73 2 1 -1.67695066643987 -8.88178419700125e-16 -4.30274503324727 -0.000166666659465021 0.643000366080381 0.765865850813783 100 -3.29556940444309 1 1 0 0 -74 2 1 -0.558983550911258 8.88178419700125e-16 -4.30274497992991 -5.55555533836305e-05 0.643000374016031 0.765865860271121 100 -3.29569277970404 1 1 0 0 -75 2 1 0.558983550911258 8.88178419700125e-16 -4.30274497992991 5.55555533836305e-05 0.643000374016031 0.765865860271121 100 -3.29569277970404 1 1 0 0 -76 2 1 1.67695066643987 -8.88178419700125e-16 -4.30274503324727 0.000166666659465021 0.643000366080381 0.765865850813783 100 -3.29556940444309 1 1 0 0 -77 2 1 2.79491782308676 4.44089209850063e-16 -4.30274513987874 0.000277777763488798 0.643000350209083 0.765865831899106 100 -3.29532265391208 1 1 0 0 -78 2 1 3.91288504826411 8.88178419700125e-16 -4.30274529982648 0.00038888886408322 0.643000326402136 0.765865803527091 100 -3.29495252809829 1 1 0 0 -79 2 1 5.03085236938414 0 -4.30274551309158 0.000499999959876544 0.64300029465954 0.765865765697739 100 -3.29445902697626 1 1 0 0 -80 2 1 -5.03019345579388 0 -6.02304657725271 -0.000499999941358027 0.643085386897058 0.765794316484211 100 -4.61191611367212 1 1 0 0 -81 2 1 -3.9123725599584 -4.44089209850063e-16 -6.02304627876189 -0.000388888849679928 0.643085418639653 0.765794354313562 100 -4.6124094844472 1 1 0 0 -82 2 1 -2.79455176003388 -4.44089209850063e-16 -6.02304605489432 -0.000277777753200732 0.643085442446599 0.765794382685575 100 -4.61277951250304 1 1 0 0 -83 2 1 -1.6767310286172 0 -6.02304590564783 -0.000166666653292181 0.643085458317897 0.765794401600251 100 -4.61302619785783 1 1 0 0 -84 2 1 -0.558910338305212 0 -6.02304583102459 -5.55555513260174e-05 0.643085466253545 0.765794411057589 100 -4.61314954053341 1 1 0 0 -85 2 1 0.558910338305212 0 -6.02304583102459 5.55555513260174e-05 0.643085466253545 0.765794411057589 100 -4.61314954053341 1 1 0 0 -86 2 1 1.6767310286172 0 -6.02304590564783 0.000166666653292181 0.643085458317897 0.765794401600251 100 -4.61302619785783 1 1 0 0 -87 2 1 2.79455176003388 -4.44089209850063e-16 -6.02304605489432 0.000277777753200732 0.643085442446599 0.765794382685575 100 -4.61277951250304 1 1 0 0 -88 2 1 3.9123725599584 -4.44089209850063e-16 -6.02304627876189 0.000388888849679928 0.643085418639653 0.765794354313562 100 -4.6124094844472 1 1 0 0 -89 2 1 5.03019345579388 0 -6.02304657725271 0.000499999941358027 0.643085386897058 0.765794316484211 100 -4.61191611367212 1 1 0 0 -90 2 1 -5.02953471654541 0 -7.74289246739405 -0.000499999916666671 0.643170471195251 0.765722857816431 100 -5.92890123074903 1 1 0 0 -91 2 1 -3.91186020725183 4.44089209850063e-16 -7.74289208371968 -0.00038888883047554 0.643170502937843 0.76572289564578 100 -5.92939447123354 1 1 0 0 -92 2 1 -2.79418579383753 0 -7.74289179596607 -0.000277777739483312 0.643170526744788 0.765722924017793 100 -5.92976440157145 1 1 0 0 -93 2 1 -1.67651144890844 0 -7.74289160412889 -0.000166666645061729 0.643170542616085 0.765722942932468 100 -5.93001102178459 1 1 0 0 -94 2 1 -0.558837145070468 -4.44089209850063e-16 -7.74289150821138 -5.55555485825333e-05 0.643170550551734 0.765722952389806 100 -5.93013433188571 1 1 0 0 -95 2 1 0.558837145070468 -4.44089209850063e-16 -7.74289150821138 5.55555485825333e-05 0.643170550551734 0.765722952389806 100 -5.93013433188571 1 1 0 0 -96 2 1 1.67651144890844 0 -7.74289160412889 0.000166666645061729 0.643170542616085 0.765722942932468 100 -5.93001102178459 1 1 0 0 -97 2 1 2.79418579383754 0 -7.74289179596607 0.000277777739483312 0.643170526744788 0.765722924017793 100 -5.92976440157145 1 1 0 0 -98 2 1 3.91186020725183 4.44089209850063e-16 -7.74289208371968 0.00038888883047554 0.643170502937843 0.76572289564578 100 -5.92939447123354 1 1 0 0 -99 2 1 5.02953471654541 0 -7.74289246739405 0.000499999916666671 0.643170471195251 0.765722857816431 100 -5.92890123074903 1 1 0 0 +sep= +Plane Mirror_RN Plane Mirror_RS Plane Mirror_RO Plane Mirror_OX Plane Mirror_OY Plane Mirror_OZ Plane Mirror_DX Plane Mirror_DY Plane Mirror_DZ Plane Mirror_EN Plane Mirror_PL Plane Mirror_S0 Plane Mirror_S1 Plane Mirror_S2 Plane Mirror_S3 +0 2 1 -5.03546965327983 0 7.7521255910344 -0.000499999916666671 0.64240442678405 0.766365645399335 100 5.94097421640618 1 1 0 0 +1 2 1 -3.91647626877554 0 7.75212520644893 -0.00038888883047554 0.642404458526643 0.766365683228684 100 5.94047980123469 1 1 0 0 +2 2 1 -2.79748298043617 -4.44089209850063e-16 7.75212491800874 -0.000277777739483312 0.642404482333588 0.766365711600697 100 5.94010898988199 1 1 0 0 +3 2 1 -1.67848976078601 4.44089209850063e-16 7.75212472571492 -0.000166666645061729 0.642404498204885 0.766365730515372 100 5.93986178232444 1 1 0 0 +4 2 1 -0.55949658234939 0 7.75212462956747 -5.55555485825333e-05 0.642404506140533 0.766365739972709 100 5.93973817854931 1 1 0 0 +5 2 1 0.55949658234939 0 7.75212462956747 5.55555485825333e-05 0.642404506140533 0.766365739972709 100 5.93973817854931 1 1 0 0 +6 2 1 1.67848976078601 4.44089209850063e-16 7.75212472571492 0.000166666645061729 0.642404498204885 0.766365730515372 100 5.93986178232444 1 1 0 0 +7 2 1 2.79748298043617 -4.44089209850063e-16 7.75212491800874 0.000277777739483312 0.642404482333588 0.766365711600697 100 5.94010898988199 1 1 0 0 +8 2 1 3.91647626877554 0 7.75212520644893 0.00038888883047554 0.642404458526643 0.766365683228684 100 5.94047980123469 1 1 0 0 +9 2 1 5.03546965327983 0 7.7521255910344 0.000499999916666671 0.64240442678405 0.766365645399335 100 5.94097421640618 1 1 0 0 +10 2 1 -5.03480951689834 4.44089209850063e-16 6.02863204595775 -0.000499999941358027 0.642489574567428 0.766294262390254 100 4.62020717801715 1 1 0 0 +11 2 1 -3.9159628294101 0 6.0286317469141 -0.000388888849679928 0.642489606310023 0.766294300219605 100 4.61971289359644 1 1 0 0 +12 2 1 -2.79711623805499 -4.44089209850063e-16 6.02863152263055 -0.000277777753200732 0.642489630116969 0.766294328591619 100 4.61934218030729 1 1 0 0 +13 2 1 -1.67826971536639 4.44089209850063e-16 6.02863137310819 -0.000166666653292181 0.642489645988267 0.766294347506295 100 4.61909503812785 1 1 0 0 +14 2 1 -0.559423233877696 4.44089209850063e-16 6.02863129834809 -5.55555513260174e-05 0.642489653923915 0.766294356963633 100 4.61897146704177 1 1 0 0 +15 2 1 0.559423233877696 4.44089209850063e-16 6.02863129834809 5.55555513260174e-05 0.642489653923915 0.766294356963633 100 4.61897146704177 1 1 0 0 +16 2 1 1.67826971536639 4.44089209850063e-16 6.02863137310819 0.000166666653292181 0.642489645988267 0.766294347506295 100 4.61909503812785 1 1 0 0 +17 2 1 2.79711623805499 -4.44089209850063e-16 6.02863152263055 0.000277777753200732 0.642489630116969 0.766294328591619 100 4.61934218030729 1 1 0 0 +18 2 1 3.9159628294101 0 6.0286317469141 0.000388888849679928 0.642489606310023 0.766294300219605 100 4.61971289359644 1 1 0 0 +19 2 1 5.03480951689834 4.44089209850063e-16 6.02863204595775 0.000499999941358027 0.642489574567428 0.766294262390254 100 4.62020717801715 1 1 0 0 +20 2 1 -5.0341495554587 0 4.30559524158062 -0.000499999959876544 0.642574714418836 0.76622286992075 100 3.29991365132628 1 1 0 0 +21 2 1 -3.91544952611053 4.44089209850063e-16 4.30559502803328 -0.00038888886408322 0.642574746161432 0.766222907750103 100 3.29941949759814 1 1 0 0 +22 2 1 -2.79674959286371 -4.44089209850063e-16 4.30559486787468 -0.000277777763488798 0.642574769968379 0.766222936122117 100 3.2990488823325 1 1 0 0 +23 2 1 -1.6780497282607 0 4.30559476110156 -0.000166666659465021 0.642574785839677 0.766222955036794 100 3.29880180550026 1 1 0 0 +24 2 1 -0.559349904843979 -4.44089209850063e-16 4.305594707715 -5.55555533836305e-05 0.642574793775326 0.766222964494133 100 3.29867826708687 1 1 0 0 +25 2 1 0.559349904843979 -4.44089209850063e-16 4.305594707715 5.55555533836305e-05 0.642574793775326 0.766222964494133 100 3.29867826708687 1 1 0 0 +26 2 1 1.6780497282607 0 4.30559476110156 0.000166666659465021 0.642574785839677 0.766222955036794 100 3.29880180550026 1 1 0 0 +27 2 1 2.79674959286371 -4.44089209850063e-16 4.30559486787468 0.000277777763488798 0.642574769968379 0.766222936122117 100 3.2990488823325 1 1 0 0 +28 2 1 3.91544952611053 4.44089209850063e-16 4.30559502803328 0.00038888886408322 0.642574746161432 0.766222907750103 100 3.29941949759814 1 1 0 0 +29 2 1 5.0341495554587 0 4.30559524158062 0.000499999959876544 0.642574714418836 0.76622286992075 100 3.29991365132628 1 1 0 0 +30 2 1 -5.03348976887503 0 2.58301495366588 -0.000499999972222223 0.642659846337223 0.766151467991705 100 1.98009341560646 1 1 0 0 +31 2 1 -3.91493635881002 0 2.58301482557153 -0.000388888873685414 0.64265987807982 0.766151505821058 100 1.97959939251632 1 1 0 0 +32 2 1 -2.7963830448146 0 2.58301472950186 -0.000277777770347508 0.642659901886767 0.766151534193074 100 1.97922887522691 1 1 0 0 +33 2 1 -1.67782979944031 0 2.58301466545577 -0.000166666663580247 0.642659917758066 0.766151553107751 100 1.97898186371458 1 1 0 0 +34 2 1 -0.559276595238696 -2.22044604925031e-16 2.58301463343218 -5.55555547553726e-05 0.642659925693715 0.76615156256509 100 1.97885835795933 1 1 0 0 +35 2 1 0.559276595238696 -2.22044604925031e-16 2.58301463343218 5.55555547553726e-05 0.642659925693715 0.76615156256509 100 1.97885835795933 1 1 0 0 +36 2 1 1.67782979944031 0 2.58301466545577 0.000166666663580247 0.642659917758066 0.766151553107751 100 1.97898186371458 1 1 0 0 +37 2 1 2.7963830448146 0 2.58301472950186 0.000277777770347508 0.642659901886767 0.766151534193074 100 1.97922887522691 1 1 0 0 +38 2 1 3.91493635881002 0 2.58301482557153 0.000388888873685414 0.64265987807982 0.766151505821058 100 1.97959939251632 1 1 0 0 +39 2 1 5.03348976887503 0 2.58301495366588 0.000499999972222223 0.642659846337223 0.766151467991705 100 1.98009341560646 1 1 0 0 +40 2 1 -5.03283015706149 0 0.860890958122196 -0.000499999978395062 0.642744970321538 0.766080056603999 100 0.66074625028341 1 1 0 0 +41 2 1 -3.91442332744182 0 0.860890915435358 -0.000388888878486511 0.642745002064135 0.766080094433353 100 0.660252357773061 1 1 0 0 +42 2 1 -2.79601659386 0 0.860890883420772 -0.000277777773776863 0.642745025871083 0.766080122805369 100 0.65988193841622 1 1 0 0 +43 2 1 -1.67760992887662 -5.55111512312578e-17 0.860890862078437 -0.00016666666563786 0.642745041742382 0.766080141720047 100 0.659634992192878 1 1 0 0 +44 2 1 -0.559203305052311 1.11022302462516e-16 0.860890851406185 -5.55555554412437e-05 0.642745049678031 0.766080151177385 100 0.659511519083026 1 1 0 0 +45 2 1 0.559203305052311 1.11022302462516e-16 0.860890851406185 5.55555554412437e-05 0.642745049678031 0.766080151177385 100 0.659511519083026 1 1 0 0 +46 2 1 1.67760992887662 -5.55111512312578e-17 0.860890862078437 0.00016666666563786 0.642745041742382 0.766080141720047 100 0.659634992192878 1 1 0 0 +47 2 1 2.79601659386 0 0.860890883420772 0.000277777773776863 0.642745025871083 0.766080122805369 100 0.65988193841622 1 1 0 0 +48 2 1 3.91442332744182 0 0.860890915435358 0.000388888878486511 0.642745002064135 0.766080094433353 100 0.660252357773061 1 1 0 0 +49 2 1 5.03283015706149 0 0.860890958122196 0.000499999978395062 0.642744970321538 0.766080056603999 100 0.66074625028341 1 1 0 0 +50 2 1 -5.0321707199323 0 -0.860776969001444 -0.000499999978395062 0.642830086370729 0.766008635758515 100 -0.658128065078927 1 1 0 0 +51 2 1 -3.91391043193922 -5.55111512312578e-17 -0.860776926326242 -0.000388888878486511 0.642830118113326 0.766008673587869 100 -0.65862182706951 1 1 0 0 +52 2 1 -2.79565023995223 0 -0.860776894318487 -0.000277777773776863 0.642830141920274 0.766008701959885 100 -0.658992148533798 1 1 0 0 +53 2 1 -1.67739011654103 0 -0.860776872981428 -0.00016666666563786 0.642830157791573 0.766008720874563 100 -0.659239029499076 1 1 0 0 +54 2 1 -0.559130034275291 0 -0.860776862313982 -5.55555554412437e-05 0.642830165727223 0.766008730331901 100 -0.659362469978078 1 1 0 0 +55 2 1 0.559130034275291 0 -0.860776862313982 5.55555554412437e-05 0.642830165727223 0.766008730331901 100 -0.659362469978078 1 1 0 0 +56 2 1 1.67739011654103 0 -0.860776872981428 0.00016666666563786 0.642830157791573 0.766008720874563 100 -0.659239029499076 1 1 0 0 +57 2 1 2.79565023995223 0 -0.860776894318487 0.000277777773776863 0.642830141920274 0.766008701959885 100 -0.658992148533798 1 1 0 0 +58 2 1 3.91391043193922 -5.55111512312578e-17 -0.860776926326242 0.000388888878486511 0.642830118113326 0.766008673587869 100 -0.65862182706951 1 1 0 0 +59 2 1 5.0321707199323 0 -0.860776969001444 0.000499999978395062 0.642830086370729 0.766008635758515 100 -0.658128065078927 1 1 0 0 +60 2 1 -5.03151145740174 0 -2.58198905151691 -0.000499999972222223 0.642915194483747 0.765937205456135 100 -1.97652975078199 1 1 0 0 +61 2 1 -3.91339767223552 0 -2.58198892352404 -0.000388888873685414 0.642915226226344 0.765937243285488 100 -1.9770233823092 1 1 0 0 +62 2 1 -2.79528398304368 0 -2.58198882752993 -0.000277777770347508 0.642915250033292 0.765937271657503 100 -1.97739360592641 1 1 0 0 +63 2 1 -1.67717036240496 0 -2.58198876353241 -0.000166666663580247 0.64291526590459 0.765937290572181 100 -1.97764042165909 1 1 0 0 +64 2 1 -0.559056782898113 0 -2.58198873153474 -5.55555547553726e-05 0.642915273840239 0.765937300029519 100 -1.97776382952361 1 1 0 0 +65 2 1 0.559056782898113 0 -2.58198873153474 5.55555547553726e-05 0.642915273840239 0.765937300029519 100 -1.97776382952361 1 1 0 0 +66 2 1 1.67717036240496 0 -2.58198876353241 0.000166666663580247 0.64291526590459 0.765937290572181 100 -1.97764042165909 1 1 0 0 +67 2 1 2.79528398304368 0 -2.58198882752993 0.000277777770347508 0.642915250033292 0.765937271657503 100 -1.97739360592641 1 1 0 0 +68 2 1 3.91339767223552 0 -2.58198892352404 0.000388888873685414 0.642915226226344 0.765937243285488 100 -1.9770233823092 1 1 0 0 +69 2 1 5.03151145740174 0 -2.58198905151691 0.000499999972222223 0.642915194483747 0.765937205456135 100 -1.97652975078199 1 1 0 0 +70 2 1 -5.03085236938414 0 -4.30274551309158 -0.000499999959876544 0.64300029465954 0.765865765697739 100 -3.29445902697626 1 1 0 0 +71 2 1 -3.91288504826411 8.88178419700125e-16 -4.30274529982648 -0.00038888886408322 0.643000326402136 0.765865803527091 100 -3.29495252809829 1 1 0 0 +72 2 1 -2.79491782308675 4.44089209850063e-16 -4.30274513987874 -0.000277777763488798 0.643000350209083 0.765865831899106 100 -3.29532265391208 1 1 0 0 +73 2 1 -1.67695066643987 -8.88178419700125e-16 -4.30274503324727 -0.000166666659465021 0.643000366080381 0.765865850813783 100 -3.29556940444309 1 1 0 0 +74 2 1 -0.558983550911258 8.88178419700125e-16 -4.30274497992991 -5.55555533836305e-05 0.643000374016031 0.765865860271121 100 -3.29569277970404 1 1 0 0 +75 2 1 0.558983550911258 8.88178419700125e-16 -4.30274497992991 5.55555533836305e-05 0.643000374016031 0.765865860271121 100 -3.29569277970404 1 1 0 0 +76 2 1 1.67695066643987 -8.88178419700125e-16 -4.30274503324727 0.000166666659465021 0.643000366080381 0.765865850813783 100 -3.29556940444309 1 1 0 0 +77 2 1 2.79491782308676 4.44089209850063e-16 -4.30274513987874 0.000277777763488798 0.643000350209083 0.765865831899106 100 -3.29532265391208 1 1 0 0 +78 2 1 3.91288504826411 8.88178419700125e-16 -4.30274529982648 0.00038888886408322 0.643000326402136 0.765865803527091 100 -3.29495252809829 1 1 0 0 +79 2 1 5.03085236938414 0 -4.30274551309158 0.000499999959876544 0.64300029465954 0.765865765697739 100 -3.29445902697626 1 1 0 0 +80 2 1 -5.03019345579388 0 -6.02304657725271 -0.000499999941358027 0.643085386897058 0.765794316484211 100 -4.61191611367212 1 1 0 0 +81 2 1 -3.9123725599584 -4.44089209850063e-16 -6.02304627876189 -0.000388888849679928 0.643085418639653 0.765794354313562 100 -4.6124094844472 1 1 0 0 +82 2 1 -2.79455176003388 -4.44089209850063e-16 -6.02304605489432 -0.000277777753200732 0.643085442446599 0.765794382685575 100 -4.61277951250304 1 1 0 0 +83 2 1 -1.6767310286172 0 -6.02304590564783 -0.000166666653292181 0.643085458317897 0.765794401600251 100 -4.61302619785783 1 1 0 0 +84 2 1 -0.558910338305212 0 -6.02304583102459 -5.55555513260174e-05 0.643085466253545 0.765794411057589 100 -4.61314954053341 1 1 0 0 +85 2 1 0.558910338305212 0 -6.02304583102459 5.55555513260174e-05 0.643085466253545 0.765794411057589 100 -4.61314954053341 1 1 0 0 +86 2 1 1.6767310286172 0 -6.02304590564783 0.000166666653292181 0.643085458317897 0.765794401600251 100 -4.61302619785783 1 1 0 0 +87 2 1 2.79455176003388 -4.44089209850063e-16 -6.02304605489432 0.000277777753200732 0.643085442446599 0.765794382685575 100 -4.61277951250304 1 1 0 0 +88 2 1 3.9123725599584 -4.44089209850063e-16 -6.02304627876189 0.000388888849679928 0.643085418639653 0.765794354313562 100 -4.6124094844472 1 1 0 0 +89 2 1 5.03019345579388 0 -6.02304657725271 0.000499999941358027 0.643085386897058 0.765794316484211 100 -4.61191611367212 1 1 0 0 +90 2 1 -5.02953471654541 0 -7.74289246739405 -0.000499999916666671 0.643170471195251 0.765722857816431 100 -5.92890123074903 1 1 0 0 +91 2 1 -3.91186020725183 4.44089209850063e-16 -7.74289208371968 -0.00038888883047554 0.643170502937843 0.76572289564578 100 -5.92939447123354 1 1 0 0 +92 2 1 -2.79418579383753 0 -7.74289179596607 -0.000277777739483312 0.643170526744788 0.765722924017793 100 -5.92976440157145 1 1 0 0 +93 2 1 -1.67651144890844 0 -7.74289160412889 -0.000166666645061729 0.643170542616085 0.765722942932468 100 -5.93001102178459 1 1 0 0 +94 2 1 -0.558837145070468 -4.44089209850063e-16 -7.74289150821138 -5.55555485825333e-05 0.643170550551734 0.765722952389806 100 -5.93013433188571 1 1 0 0 +95 2 1 0.558837145070468 -4.44089209850063e-16 -7.74289150821138 5.55555485825333e-05 0.643170550551734 0.765722952389806 100 -5.93013433188571 1 1 0 0 +96 2 1 1.67651144890844 0 -7.74289160412889 0.000166666645061729 0.643170542616085 0.765722942932468 100 -5.93001102178459 1 1 0 0 +97 2 1 2.79418579383754 0 -7.74289179596607 0.000277777739483312 0.643170526744788 0.765722924017793 100 -5.92976440157145 1 1 0 0 +98 2 1 3.91186020725183 4.44089209850063e-16 -7.74289208371968 0.00038888883047554 0.643170502937843 0.76572289564578 100 -5.92939447123354 1 1 0 0 +99 2 1 5.02953471654541 0 -7.74289246739405 0.000499999916666671 0.643170471195251 0.765722857816431 100 -5.92890123074903 1 1 0 0 diff --git a/Tests/input/PlaneMirror.rml b/Intern/RayCore/tests/input/PlaneMirror.rml similarity index 100% rename from Tests/input/PlaneMirror.rml rename to Intern/RayCore/tests/input/PlaneMirror.rml diff --git a/Tests/input/PlaneMirrorDef.csv b/Intern/RayCore/tests/input/PlaneMirrorDef.csv similarity index 99% rename from Tests/input/PlaneMirrorDef.csv rename to Intern/RayCore/tests/input/PlaneMirrorDef.csv index 29003300c..443e257a1 100644 --- a/Tests/input/PlaneMirrorDef.csv +++ b/Intern/RayCore/tests/input/PlaneMirrorDef.csv @@ -1,22 +1,22 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -3.92565641293497 -6.72519112050939 0 -0.000353553315491526 -0.000612372394004061 0.999999750000021 100 0.00275000045940033 1 0.866025 0.5 -2.9009e-05 -1 2 1 -0.362999722153457 -5.77057950463676 0 -3.1578099686878e-05 -0.000526099394946415 0.999999861111116 100 0.00152777794198755 1 0.866025 0.5 -2.98976e-05 -2 2 1 3.19965673326978 -4.81596858449612 0 0.000290397134005272 -0.000439826391095744 0.999999861111115 100 0.00152777794221493 1 0.866025 0.5 -2.98902e-05 -3 2 1 6.7623137403856 -3.86135814919869 0 0.000612372349809913 -0.000353553392038044 0.999999750000021 100 0.00275000045769502 1 1 1.50033e-12 -8.96683e-07 -4 2 1 -4.87120889056674 -3.1963412327652 0 -0.000439826378995878 -0.000290397152331398 0.999999861111116 100 0.0015277779398275 1 1 1.50374e-12 -8.97703e-07 -5 2 1 -1.3085520943405 -2.24173001041735 0 -0.000117851127416209 -0.000204124143687811 0.999999972222222 100 0.000305555560089488 1 0.866025 0.5 -2.89436e-05 -6 2 1 2.25410436108279 -1.28711909027713 0 0.000204124142050974 -0.000117851130251281 0.999999972222223 100 0.000305555559407367 1 1 1.50524e-12 -8.98147e-07 -7 2 1 5.81676126275386 -0.332508261454763 0 0.000526099393630643 -3.15781216076938e-05 0.999999861111115 100 0.00152777794232861 1 0.866025 0.5 -2.98268e-05 -8 2 1 -5.8167612627538 0.332508261454343 0 -0.000526099393630643 3.15781216076938e-05 0.999999861111115 100 0.00152777794187386 1 0.866025 0.5 -2.9793e-05 -9 2 1 -2.25410436108272 1.28711909027663 0 -0.000204124142050971 0.000117851130251253 0.999999972222223 100 0.000305555561226356 1 0.866025 0.5 -2.97856e-05 -10 2 1 1.30855209434055 2.24173001041696 0 0.000117851127416213 0.000204124143687783 0.999999972222222 100 0.000305555562135851 1 0.866025 0.5 -2.88785e-05 -11 2 1 4.87120889056679 3.19634123276486 0 0.000439826378995878 0.000290397152331398 0.999999861111116 100 0.00152777794050962 1 0.866025 0.5 -2.88709e-05 -12 2 1 -6.76231374038566 3.86135814919915 0 -0.000612372349809916 0.000353553392038071 0.999999750000021 100 0.00275000045780871 1 1 1.51509e-12 -9.01072e-07 -13 2 1 -3.19965673326973 4.81596858449573 0 -0.000290397134005272 0.000439826391095744 0.999999861111115 100 0.00152777794164649 1 1 0 0 -14 2 1 0.362999722153485 5.77057950463654 0 3.1578099686878e-05 0.000526099394946415 0.999999861111115 100 0.00152777794141912 1 0.866025 0.5 -2.97227e-05 -15 2 1 3.92565641293497 6.7251911205094 0 0.000353553315491522 0.000612372394004088 0.999999750000021 100 0.00275000045758134 1 0.866025 0.5 -2.88136e-05 -16 2 1 -3.92565641293497 -6.72519112050939 0 -0.000353553315491526 -0.000612372394004061 0.999999750000021 100 0.00275000045940033 1 0.866025 0.5 -2.9009e-05 -17 2 1 -0.362999722153457 -5.77057950463676 0 -3.1578099686878e-05 -0.000526099394946415 0.999999861111116 100 0.00152777794198755 1 0.866025 0.5 -2.98976e-05 -18 2 1 3.19965673326978 -4.81596858449612 0 0.000290397134005272 -0.000439826391095744 0.999999861111115 100 0.00152777794221493 1 0.866025 0.5 -2.98902e-05 -19 2 1 6.7623137403856 -3.86135814919869 0 0.000612372349809913 -0.000353553392038044 0.999999750000021 100 0.00275000045769502 1 1 1.50033e-12 -8.96683e-07 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -3.92565641293497 -6.72519112050939 0 -0.000353553315491526 -0.000612372394004061 0.999999750000021 100 0.00275000045940033 1 0.866025 0.5 -2.9009e-05 +1 2 1 -0.362999722153457 -5.77057950463676 0 -3.1578099686878e-05 -0.000526099394946415 0.999999861111116 100 0.00152777794198755 1 0.866025 0.5 -2.98976e-05 +2 2 1 3.19965673326978 -4.81596858449612 0 0.000290397134005272 -0.000439826391095744 0.999999861111115 100 0.00152777794221493 1 0.866025 0.5 -2.98902e-05 +3 2 1 6.7623137403856 -3.86135814919869 0 0.000612372349809913 -0.000353553392038044 0.999999750000021 100 0.00275000045769502 1 1 1.50033e-12 -8.96683e-07 +4 2 1 -4.87120889056674 -3.1963412327652 0 -0.000439826378995878 -0.000290397152331398 0.999999861111116 100 0.0015277779398275 1 1 1.50374e-12 -8.97703e-07 +5 2 1 -1.3085520943405 -2.24173001041735 0 -0.000117851127416209 -0.000204124143687811 0.999999972222222 100 0.000305555560089488 1 0.866025 0.5 -2.89436e-05 +6 2 1 2.25410436108279 -1.28711909027713 0 0.000204124142050974 -0.000117851130251281 0.999999972222223 100 0.000305555559407367 1 1 1.50524e-12 -8.98147e-07 +7 2 1 5.81676126275386 -0.332508261454763 0 0.000526099393630643 -3.15781216076938e-05 0.999999861111115 100 0.00152777794232861 1 0.866025 0.5 -2.98268e-05 +8 2 1 -5.8167612627538 0.332508261454343 0 -0.000526099393630643 3.15781216076938e-05 0.999999861111115 100 0.00152777794187386 1 0.866025 0.5 -2.9793e-05 +9 2 1 -2.25410436108272 1.28711909027663 0 -0.000204124142050971 0.000117851130251253 0.999999972222223 100 0.000305555561226356 1 0.866025 0.5 -2.97856e-05 +10 2 1 1.30855209434055 2.24173001041696 0 0.000117851127416213 0.000204124143687783 0.999999972222222 100 0.000305555562135851 1 0.866025 0.5 -2.88785e-05 +11 2 1 4.87120889056679 3.19634123276486 0 0.000439826378995878 0.000290397152331398 0.999999861111116 100 0.00152777794050962 1 0.866025 0.5 -2.88709e-05 +12 2 1 -6.76231374038566 3.86135814919915 0 -0.000612372349809916 0.000353553392038071 0.999999750000021 100 0.00275000045780871 1 1 1.51509e-12 -9.01072e-07 +13 2 1 -3.19965673326973 4.81596858449573 0 -0.000290397134005272 0.000439826391095744 0.999999861111115 100 0.00152777794164649 1 1 0 0 +14 2 1 0.362999722153485 5.77057950463654 0 3.1578099686878e-05 0.000526099394946415 0.999999861111115 100 0.00152777794141912 1 0.866025 0.5 -2.97227e-05 +15 2 1 3.92565641293497 6.7251911205094 0 0.000353553315491522 0.000612372394004088 0.999999750000021 100 0.00275000045758134 1 0.866025 0.5 -2.88136e-05 +16 2 1 -3.92565641293497 -6.72519112050939 0 -0.000353553315491526 -0.000612372394004061 0.999999750000021 100 0.00275000045940033 1 0.866025 0.5 -2.9009e-05 +17 2 1 -0.362999722153457 -5.77057950463676 0 -3.1578099686878e-05 -0.000526099394946415 0.999999861111116 100 0.00152777794198755 1 0.866025 0.5 -2.98976e-05 +18 2 1 3.19965673326978 -4.81596858449612 0 0.000290397134005272 -0.000439826391095744 0.999999861111115 100 0.00152777794221493 1 0.866025 0.5 -2.98902e-05 +19 2 1 6.7623137403856 -3.86135814919869 0 0.000612372349809913 -0.000353553392038044 0.999999750000021 100 0.00275000045769502 1 1 1.50033e-12 -8.96683e-07 diff --git a/Tests/input/PlaneMirrorDef.rml b/Intern/RayCore/tests/input/PlaneMirrorDef.rml similarity index 100% rename from Tests/input/PlaneMirrorDef.rml rename to Intern/RayCore/tests/input/PlaneMirrorDef.rml diff --git a/Tests/input/PlaneMirrorMis.csv b/Intern/RayCore/tests/input/PlaneMirrorMis.csv similarity index 99% rename from Tests/input/PlaneMirrorMis.csv rename to Intern/RayCore/tests/input/PlaneMirrorMis.csv index e0f158fa9..120621ccc 100644 --- a/Tests/input/PlaneMirrorMis.csv +++ b/Intern/RayCore/tests/input/PlaneMirrorMis.csv @@ -1,22 +1,22 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -6.54627008178342 -3.57539834847489 0 -0.00153232002722023 -0.00250600141820773 0.999995685966808 100 -0.676503246768448 1 0.999928 0.0119997 -6.76334e-07 -1 2 1 -2.8582243953276 -3.55361412760506 0 -0.00119899286262426 -0.00250403369953059 0.999996146108247 100 -0.681587197904264 1 0.999928 0.0119997 -6.9699e-07 -2 2 1 0.829818312868979 -3.53183053541229 0 -0.000865665564478747 -0.00250206575818193 0.999996495138894 100 -0.685448997652315 1 0.999928 0.0119997 -6.96986e-07 -3 2 1 4.51785885756064 -3.51004756708366 0 -0.00053233816982007 -0.00250009759438044 0.999996733058709 100 -0.688088648156963 1 0.999928 0.0119997 -6.76322e-07 -4 2 1 -6.56783380492655 0.077654322293256 0 -0.00153428883341816 -0.00217267480578809 0.999996462714726 100 -0.685020353031291 1 0.999928 0.0119997 -6.74968e-07 -5 2 1 -2.87979054007871 0.0994368341758594 0 -0.00120096163178583 -0.00217070708689235 0.999996922856217 100 -0.690104296863865 1 0.999928 0.0119997 -6.74964e-07 -6 2 1 0.808249744108835 0.121219124759575 0 -0.000867634296603946 -0.00216873914532509 0.999997271886902 100 -0.693966091068432 1 0.999928 0.0119997 -6.7496e-07 -7 2 1 4.49628786238906 0.143001198856581 0 -0.000534306864908888 -0.00216677098130488 0.999997509806744 100 -0.696605737783329 1 0.999928 0.0119997 -6.74956e-07 -8 2 1 -6.58939749695763 3.7307017224548 0 -0.00153625746913954 -0.0018393479519602 0.999997128351927 100 -0.692315301732037 1 1 3.5842e-14 -2.07391e-08 -9 2 1 -2.90135665371432 3.75248252535592 0 -0.00120293026750721 -0.0018373802330644 0.999997588493418 100 -0.697399238822982 1 0.999928 0.0119997 -6.73603e-07 -10 2 1 0.786681206467686 3.77426351433432 0 -0.000869602932325335 -0.00183541229149717 0.999997937524103 100 -0.701261027910732 1 0.999928 0.0119997 -6.94338e-07 -11 2 1 4.47471689833998 3.79604469420234 0 -0.000536275500630277 -0.00183344412747696 0.999998175443945 100 -0.703900671135784 1 1 0 0 -12 2 1 -6.61096116268618 7.38374466677159 0 -0.00153822593416566 -0.00150602089376037 0.999997682878337 100 -0.698388096918279 1 0.999928 0.0119997 -6.72251e-07 -13 2 1 -2.92292274104444 7.40552376069691 0 -0.00120489876956969 -0.00150405317508315 0.999998143019777 100 -0.70347202783114 1 1 3.5979e-14 -2.07786e-08 -14 2 1 0.765112695134961 7.42730344807339 0 -0.000871571471424177 -0.00150208523373449 0.999998492050423 100 -0.707333812232719 1 0.999928 0.0119997 -6.72243e-07 -15 2 1 4.45314596060229 7.4490837337139 0 -0.000538244076765499 -0.00150011706993303 0.999998729970239 100 -0.709973452261465 1 0.999928 0.0119997 -6.93018e-07 -16 2 1 -6.54627008178342 -3.57539834847489 0 -0.00153232002722023 -0.00250600141820773 0.999995685966808 100 -0.676503246768448 1 0.999928 0.0119997 -6.76334e-07 -17 2 1 -2.8582243953276 -3.55361412760506 0 -0.00119899286262426 -0.00250403369953059 0.999996146108247 100 -0.681587197904264 1 0.999928 0.0119997 -6.9699e-07 -18 2 1 0.829818312868979 -3.53183053541229 0 -0.000865665564478747 -0.00250206575818193 0.999996495138894 100 -0.685448997652315 1 0.999928 0.0119997 -6.96986e-07 -19 2 1 4.51785885756064 -3.51004756708366 0 -0.00053233816982007 -0.00250009759438044 0.999996733058709 100 -0.688088648156963 1 0.999928 0.0119997 -6.76322e-07 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -6.54627008178342 -3.57539834847489 0 -0.00153232002722023 -0.00250600141820773 0.999995685966808 100 -0.676503246768448 1 0.999928 0.0119997 -6.76334e-07 +1 2 1 -2.8582243953276 -3.55361412760506 0 -0.00119899286262426 -0.00250403369953059 0.999996146108247 100 -0.681587197904264 1 0.999928 0.0119997 -6.9699e-07 +2 2 1 0.829818312868979 -3.53183053541229 0 -0.000865665564478747 -0.00250206575818193 0.999996495138894 100 -0.685448997652315 1 0.999928 0.0119997 -6.96986e-07 +3 2 1 4.51785885756064 -3.51004756708366 0 -0.00053233816982007 -0.00250009759438044 0.999996733058709 100 -0.688088648156963 1 0.999928 0.0119997 -6.76322e-07 +4 2 1 -6.56783380492655 0.077654322293256 0 -0.00153428883341816 -0.00217267480578809 0.999996462714726 100 -0.685020353031291 1 0.999928 0.0119997 -6.74968e-07 +5 2 1 -2.87979054007871 0.0994368341758594 0 -0.00120096163178583 -0.00217070708689235 0.999996922856217 100 -0.690104296863865 1 0.999928 0.0119997 -6.74964e-07 +6 2 1 0.808249744108835 0.121219124759575 0 -0.000867634296603946 -0.00216873914532509 0.999997271886902 100 -0.693966091068432 1 0.999928 0.0119997 -6.7496e-07 +7 2 1 4.49628786238906 0.143001198856581 0 -0.000534306864908888 -0.00216677098130488 0.999997509806744 100 -0.696605737783329 1 0.999928 0.0119997 -6.74956e-07 +8 2 1 -6.58939749695763 3.7307017224548 0 -0.00153625746913954 -0.0018393479519602 0.999997128351927 100 -0.692315301732037 1 1 3.5842e-14 -2.07391e-08 +9 2 1 -2.90135665371432 3.75248252535592 0 -0.00120293026750721 -0.0018373802330644 0.999997588493418 100 -0.697399238822982 1 0.999928 0.0119997 -6.73603e-07 +10 2 1 0.786681206467686 3.77426351433432 0 -0.000869602932325335 -0.00183541229149717 0.999997937524103 100 -0.701261027910732 1 0.999928 0.0119997 -6.94338e-07 +11 2 1 4.47471689833998 3.79604469420234 0 -0.000536275500630277 -0.00183344412747696 0.999998175443945 100 -0.703900671135784 1 1 0 0 +12 2 1 -6.61096116268618 7.38374466677159 0 -0.00153822593416566 -0.00150602089376037 0.999997682878337 100 -0.698388096918279 1 0.999928 0.0119997 -6.72251e-07 +13 2 1 -2.92292274104444 7.40552376069691 0 -0.00120489876956969 -0.00150405317508315 0.999998143019777 100 -0.70347202783114 1 1 3.5979e-14 -2.07786e-08 +14 2 1 0.765112695134961 7.42730344807339 0 -0.000871571471424177 -0.00150208523373449 0.999998492050423 100 -0.707333812232719 1 0.999928 0.0119997 -6.72243e-07 +15 2 1 4.45314596060229 7.4490837337139 0 -0.000538244076765499 -0.00150011706993303 0.999998729970239 100 -0.709973452261465 1 0.999928 0.0119997 -6.93018e-07 +16 2 1 -6.54627008178342 -3.57539834847489 0 -0.00153232002722023 -0.00250600141820773 0.999995685966808 100 -0.676503246768448 1 0.999928 0.0119997 -6.76334e-07 +17 2 1 -2.8582243953276 -3.55361412760506 0 -0.00119899286262426 -0.00250403369953059 0.999996146108247 100 -0.681587197904264 1 0.999928 0.0119997 -6.9699e-07 +18 2 1 0.829818312868979 -3.53183053541229 0 -0.000865665564478747 -0.00250206575818193 0.999996495138894 100 -0.685448997652315 1 0.999928 0.0119997 -6.96986e-07 +19 2 1 4.51785885756064 -3.51004756708366 0 -0.00053233816982007 -0.00250009759438044 0.999996733058709 100 -0.688088648156963 1 0.999928 0.0119997 -6.76322e-07 diff --git a/Tests/input/PlaneMirrorMis.rml b/Intern/RayCore/tests/input/PlaneMirrorMis.rml similarity index 100% rename from Tests/input/PlaneMirrorMis.rml rename to Intern/RayCore/tests/input/PlaneMirrorMis.rml diff --git a/Tests/input/PlaneMirror_refl_seeded.correct.csv b/Intern/RayCore/tests/input/PlaneMirror_refl_seeded.correct.csv similarity index 100% rename from Tests/input/PlaneMirror_refl_seeded.correct.csv rename to Intern/RayCore/tests/input/PlaneMirror_refl_seeded.correct.csv diff --git a/Tests/input/PlaneMirror_refl_seeded.rml b/Intern/RayCore/tests/input/PlaneMirror_refl_seeded.rml similarity index 100% rename from Tests/input/PlaneMirror_refl_seeded.rml rename to Intern/RayCore/tests/input/PlaneMirror_refl_seeded.rml diff --git a/Tests/input/PointSourceHardEdge.rml b/Intern/RayCore/tests/input/PointSourceHardEdge.rml similarity index 100% rename from Tests/input/PointSourceHardEdge.rml rename to Intern/RayCore/tests/input/PointSourceHardEdge.rml diff --git a/Tests/input/PointSourceSoftEdge.rml b/Intern/RayCore/tests/input/PointSourceSoftEdge.rml similarity index 100% rename from Tests/input/PointSourceSoftEdge.rml rename to Intern/RayCore/tests/input/PointSourceSoftEdge.rml diff --git a/Tests/input/PointSource_seeded.correct.csv b/Intern/RayCore/tests/input/PointSource_seeded.correct.csv similarity index 100% rename from Tests/input/PointSource_seeded.correct.csv rename to Intern/RayCore/tests/input/PointSource_seeded.correct.csv diff --git a/Tests/input/PointSource_seeded.rml b/Intern/RayCore/tests/input/PointSource_seeded.rml similarity index 100% rename from Tests/input/PointSource_seeded.rml rename to Intern/RayCore/tests/input/PointSource_seeded.rml diff --git a/Tests/input/ReflectionZonePlateAzim200.csv b/Intern/RayCore/tests/input/ReflectionZonePlateAzim200.csv similarity index 99% rename from Tests/input/ReflectionZonePlateAzim200.csv rename to Intern/RayCore/tests/input/ReflectionZonePlateAzim200.csv index f6efdb217..954fb5494 100644 --- a/Tests/input/ReflectionZonePlateAzim200.csv +++ b/Intern/RayCore/tests/input/ReflectionZonePlateAzim200.csv @@ -1,16 +1,16 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -64 2 1 -8.95997397345912 1.67771261492638 0 -0.0118803690051839 0.00342799379183963 0.999923549923125 100 0.0692586604486678 1 1 0 0 -65 2 1 -12.7078405977128 -5.07036581702191 0 -0.0166979216646072 -0.00430762429863073 0.999851300836772 100 0.135767446018576 1 1 0 0 -73 2 1 15.1969586268777 -2.25944880766455 0 0.019140193860667 -0.000257999840383496 0.99981677642209 100 0.166711641437246 1 1 0 0 -74 2 1 10.109930223937 2.7872374598697 0 0.0126166422787795 0.00496456415300862 0.999908082495776 100 0.0843834001789219 1 1 0 0 -75 2 1 5.1879485962112 5.1288493108382 0 0.00638257850664135 0.00716893638899606 0.999953933460266 100 0.0426563619060971 1 1 0 0 -76 2 1 0.251669805791171 5.49535823099256 0 0.000238650387063256 0.00721495441984985 0.999973943399883 100 0.0243294509049292 1 1 0 0 -77 2 1 -4.72237063569304 3.68422490456314 0 -0.005842178571925 0.00494063492160289 0.99997072910966 100 0.0275499341163368 1 1 0 0 -78 2 1 -9.60351467204049 -1.44498579928176 0 -0.0117230804334901 -0.00080145536716776 0.99993096114404 100 0.0654785990781193 1 1 0 0 -88 2 1 15.8335388551439 -6.8796493359152 0 0.0182749235692072 -0.00610283754697469 0.999814374042709 100 0.178234701221641 1 1 0 0 -89 2 1 8.81512369891106 1.22398514405746 0 0.0101146453774614 0.00205185301076855 0.999946740505768 100 0.0515641378419787 1 1 0 0 -90 2 1 2.22214327007655 3.2420705818274 0 0.00251978213580883 0.00383353321889998 0.99998947730516 100 0.0102689958291649 1 1 0 0 -91 2 1 -4.37416767375657 0.841977295808903 0 -0.00495799268315934 0.00108932904638898 0.999987115752389 100 0.0126699713052858 1 1 0 0 -92 2 1 -10.3028923498911 -10.7521160488379 0 -0.0116422156069831 -0.0108977462030554 0.999872840887007 100 0.125968678299387 1 1 0 0 -104 2 1 7.3582029209925 -7.66262384027782 0 0.00771486257576458 -0.00775187527155076 0.999940192874159 100 0.0608859263580825 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +64 2 1 -8.95997397345912 1.67771261492638 0 -0.0118803690051839 0.00342799379183963 0.999923549923125 100 0.0692586604486678 1 1 0 0 +65 2 1 -12.7078405977128 -5.07036581702191 0 -0.0166979216646072 -0.00430762429863073 0.999851300836772 100 0.135767446018576 1 1 0 0 +73 2 1 15.1969586268777 -2.25944880766455 0 0.019140193860667 -0.000257999840383496 0.99981677642209 100 0.166711641437246 1 1 0 0 +74 2 1 10.109930223937 2.7872374598697 0 0.0126166422787795 0.00496456415300862 0.999908082495776 100 0.0843834001789219 1 1 0 0 +75 2 1 5.1879485962112 5.1288493108382 0 0.00638257850664135 0.00716893638899606 0.999953933460266 100 0.0426563619060971 1 1 0 0 +76 2 1 0.251669805791171 5.49535823099256 0 0.000238650387063256 0.00721495441984985 0.999973943399883 100 0.0243294509049292 1 1 0 0 +77 2 1 -4.72237063569304 3.68422490456314 0 -0.005842178571925 0.00494063492160289 0.99997072910966 100 0.0275499341163368 1 1 0 0 +78 2 1 -9.60351467204049 -1.44498579928176 0 -0.0117230804334901 -0.00080145536716776 0.99993096114404 100 0.0654785990781193 1 1 0 0 +88 2 1 15.8335388551439 -6.8796493359152 0 0.0182749235692072 -0.00610283754697469 0.999814374042709 100 0.178234701221641 1 1 0 0 +89 2 1 8.81512369891106 1.22398514405746 0 0.0101146453774614 0.00205185301076855 0.999946740505768 100 0.0515641378419787 1 1 0 0 +90 2 1 2.22214327007655 3.2420705818274 0 0.00251978213580883 0.00383353321889998 0.99998947730516 100 0.0102689958291649 1 1 0 0 +91 2 1 -4.37416767375657 0.841977295808903 0 -0.00495799268315934 0.00108932904638898 0.999987115752389 100 0.0126699713052858 1 1 0 0 +92 2 1 -10.3028923498911 -10.7521160488379 0 -0.0116422156069831 -0.0108977462030554 0.999872840887007 100 0.125968678299387 1 1 0 0 +104 2 1 7.3582029209925 -7.66262384027782 0 0.00771486257576458 -0.00775187527155076 0.999940192874159 100 0.0608859263580825 1 1 0 0 diff --git a/Tests/input/ReflectionZonePlateAzim200.rml b/Intern/RayCore/tests/input/ReflectionZonePlateAzim200.rml similarity index 100% rename from Tests/input/ReflectionZonePlateAzim200.rml rename to Intern/RayCore/tests/input/ReflectionZonePlateAzim200.rml diff --git a/Tests/input/ReflectionZonePlateDefault.csv b/Intern/RayCore/tests/input/ReflectionZonePlateDefault.csv similarity index 99% rename from Tests/input/ReflectionZonePlateDefault.csv rename to Intern/RayCore/tests/input/ReflectionZonePlateDefault.csv index 727985403..27b06dfdb 100644 --- a/Tests/input/ReflectionZonePlateDefault.csv +++ b/Intern/RayCore/tests/input/ReflectionZonePlateDefault.csv @@ -1,4 +1,4 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -5 2 1 9.75569707296814 2.11970938699473 0 0.0126641713608115 0.00419850753241713 0.999910991687882 100 0.08074950591174 1 1 0 0 -6 2 1 -9.75569707296814 2.11970938699473 0 -0.0126641713608115 0.00419850753241713 0.999910991687882 100 0.08074950591174 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +5 2 1 9.75569707296814 2.11970938699473 0 0.0126641713608115 0.00419850753241713 0.999910991687882 100 0.08074950591174 1 1 0 0 +6 2 1 -9.75569707296814 2.11970938699473 0 -0.0126641713608115 0.00419850753241713 0.999910991687882 100 0.08074950591174 1 1 0 0 diff --git a/Tests/input/ReflectionZonePlateDefault.rml b/Intern/RayCore/tests/input/ReflectionZonePlateDefault.rml similarity index 100% rename from Tests/input/ReflectionZonePlateDefault.rml rename to Intern/RayCore/tests/input/ReflectionZonePlateDefault.rml diff --git a/Tests/input/ReflectionZonePlateDefault200.csv b/Intern/RayCore/tests/input/ReflectionZonePlateDefault200.csv similarity index 99% rename from Tests/input/ReflectionZonePlateDefault200.csv rename to Intern/RayCore/tests/input/ReflectionZonePlateDefault200.csv index e700bd47d..9be6f28da 100644 --- a/Tests/input/ReflectionZonePlateDefault200.csv +++ b/Intern/RayCore/tests/input/ReflectionZonePlateDefault200.csv @@ -1,14 +1,14 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -74 2 1 13.0080819586263 -3.55039198012683 0 0.016015933227485 -0.00256307300772667 0.999868451617316 100 0.123098989943969 1 1 0 0 -75 2 1 7.80445985461449 2.59017501256696 0 0.00960988610078065 0.00401280898007984 0.999945772256286 100 0.0507704284412966 1 1 0 0 -76 2 1 2.60145640654501 5.04038185693976 0 0.00320334973277055 0.00663697382099598 0.999972844195776 100 0.0254311285281119 1 1 0 0 -77 2 1 -2.60145640654501 5.04038185693976 0 -0.00320334973277055 0.00663697382099598 0.999972844195776 100 0.0254311285281119 1 1 0 0 -78 2 1 -7.80445985461449 2.59017501256696 0 -0.00960988610078065 0.00401280898007984 0.999945772256286 100 0.0507704284412966 1 1 0 0 -79 2 1 -13.0080819586263 -3.55039198012683 0 -0.016015933227485 -0.00256307300772667 0.999868451617316 100 0.123098989943969 1 1 0 0 -89 2 1 10.4355735762951 -3.40962041365316 0 0.0118594337502832 -0.00309351183445837 0.999924889187009 100 0.0735384012622262 1 1 0 0 -90 2 1 3.47840647835211 2.27303879243129 0 0.0039532753448699 0.00271668438306807 0.999988495553829 100 0.0112663615941528 1 1 0 0 -91 2 1 -3.47840647835211 2.27303879243129 0 -0.0039532753448699 0.00271668438306807 0.999988495553829 100 0.0112663615941528 1 1 0 0 -92 2 1 -10.4355735762951 -3.40962041365316 0 -0.0118594337502832 -0.00309351183445837 0.999924889187009 100 0.0735384012622262 1 1 0 0 -104 2 1 5.38521177718623 -11.823373455208 0 0.00564731516336466 -0.0119430123866902 0.999912732335466 100 0.0892012138149312 1 1 0 0 -105 2 1 -5.38521177718623 -11.823373455208 0 -0.00564731516336466 -0.0119430123866902 0.999912732335466 100 0.0892012138149312 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +74 2 1 13.0080819586263 -3.55039198012683 0 0.016015933227485 -0.00256307300772667 0.999868451617316 100 0.123098989943969 1 1 0 0 +75 2 1 7.80445985461449 2.59017501256696 0 0.00960988610078065 0.00401280898007984 0.999945772256286 100 0.0507704284412966 1 1 0 0 +76 2 1 2.60145640654501 5.04038185693976 0 0.00320334973277055 0.00663697382099598 0.999972844195776 100 0.0254311285281119 1 1 0 0 +77 2 1 -2.60145640654501 5.04038185693976 0 -0.00320334973277055 0.00663697382099598 0.999972844195776 100 0.0254311285281119 1 1 0 0 +78 2 1 -7.80445985461449 2.59017501256696 0 -0.00960988610078065 0.00401280898007984 0.999945772256286 100 0.0507704284412966 1 1 0 0 +79 2 1 -13.0080819586263 -3.55039198012683 0 -0.016015933227485 -0.00256307300772667 0.999868451617316 100 0.123098989943969 1 1 0 0 +89 2 1 10.4355735762951 -3.40962041365316 0 0.0118594337502832 -0.00309351183445837 0.999924889187009 100 0.0735384012622262 1 1 0 0 +90 2 1 3.47840647835211 2.27303879243129 0 0.0039532753448699 0.00271668438306807 0.999988495553829 100 0.0112663615941528 1 1 0 0 +91 2 1 -3.47840647835211 2.27303879243129 0 -0.0039532753448699 0.00271668438306807 0.999988495553829 100 0.0112663615941528 1 1 0 0 +92 2 1 -10.4355735762951 -3.40962041365316 0 -0.0118594337502832 -0.00309351183445837 0.999924889187009 100 0.0735384012622262 1 1 0 0 +104 2 1 5.38521177718623 -11.823373455208 0 0.00564731516336466 -0.0119430123866902 0.999912732335466 100 0.0892012138149312 1 1 0 0 +105 2 1 -5.38521177718623 -11.823373455208 0 -0.00564731516336466 -0.0119430123866902 0.999912732335466 100 0.0892012138149312 1 1 0 0 diff --git a/Tests/input/ReflectionZonePlateDefault200.rml b/Intern/RayCore/tests/input/ReflectionZonePlateDefault200.rml similarity index 100% rename from Tests/input/ReflectionZonePlateDefault200.rml rename to Intern/RayCore/tests/input/ReflectionZonePlateDefault200.rml diff --git a/Tests/input/ReflectionZonePlateDefault200Toroid.csv b/Intern/RayCore/tests/input/ReflectionZonePlateDefault200Toroid.csv similarity index 99% rename from Tests/input/ReflectionZonePlateDefault200Toroid.csv rename to Intern/RayCore/tests/input/ReflectionZonePlateDefault200Toroid.csv index 1a37024b8..977540959 100644 --- a/Tests/input/ReflectionZonePlateDefault200Toroid.csv +++ b/Intern/RayCore/tests/input/ReflectionZonePlateDefault200Toroid.csv @@ -1,112 +1,112 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 340.062081529644 641.905974507241 0 0.281363839830978 0.522922714892697 0.804603146827564 100 238.690210924663 1 1 0 0 -1 2 1 301.010109141201 700.58589464947 0 0.244676449439608 0.561200448521558 0.790687986293474 100 260.203724153947 1 1 0 0 -2 2 1 255.633568603313 751.212145862446 0 0.204620155521002 0.592977382223836 0.778786502274871 100 279.206367310795 1 1 0 0 -3 2 1 204.816435082062 792.939516606976 0 0.161872350041463 0.618326968880456 0.769070284074974 100 295.150935751004 1 1 0 0 -4 2 1 149.582742046203 824.997982701635 0 0.117068730475909 0.637300100655452 0.761671513218992 100 307.562396391503 1 1 0 0 -5 2 1 91.0866379008824 846.751390671625 0 0.0708157966836738 0.649931172781171 0.756686588745531 100 316.060070888085 1 1 0 0 -6 2 1 30.5874090036709 857.746109070221 0 0.0237006631781406 0.65624157111316 0.754178545775367 100 320.377523719652 1 1 0 0 -7 2 1 -30.5874090036709 857.746109070221 0 -0.0237006631781406 0.65624157111316 0.754178545775367 100 320.377523719652 1 1 0 0 -8 2 1 -91.0866379008824 846.751390671625 0 -0.0708157966836738 0.649931172781171 0.756686588745531 100 316.060070888085 1 1 0 0 -9 2 1 -149.582742046203 824.997982701635 0 -0.117068730475909 0.637300100655452 0.761671513218992 100 307.562396391503 1 1 0 0 -10 2 1 -204.816435082062 792.939516606976 0 -0.161872350041463 0.618326968880456 0.769070284074974 100 295.150935751004 1 1 0 0 -11 2 1 -255.633568603313 751.212145862446 0 -0.204620155521002 0.592977382223836 0.778786502274871 100 279.206367310795 1 1 0 0 -12 2 1 -301.010109141201 700.58589464947 0 -0.244676449439608 0.561200448521558 0.790687986293474 100 260.203724153947 1 1 0 0 -13 2 1 -340.062081529644 641.905974507241 0 -0.281363839830978 0.522922714892697 0.804603146827564 100 238.690210924663 1 1 0 0 -14 2 1 299.305310576972 530.445561181835 0 0.261859166258229 0.456139506928486 0.850509569179314 100 172.948815639711 1 1 0 0 -15 2 1 265.051233508937 584.263004966324 0 0.228423772625576 0.49541588047279 0.838084533609152 100 190.129529273482 1 1 0 0 -16 2 1 225.114174166443 630.370426716135 0 0.191480997040982 0.527968308247032 0.827396212983211 100 205.314469226913 1 1 0 0 -17 2 1 180.344677332318 668.16002580891 0 0.151745961499964 0.553906387283827 0.818633542737305 100 218.054693406211 1 1 0 0 -18 2 1 131.687152325105 697.067453851801 0 0.109883290386822 0.573304383130015 0.811940728611195 100 227.967969440308 1 1 0 0 -19 2 1 80.1763473601432 716.622228908278 0 0.0665230580553647 0.586211514105647 0.807422283242745 100 234.752216930981 1 1 0 0 -20 2 1 26.9211410184917 726.487428602463 0 0.0222727856435951 0.592657912349224 0.80514627363575 100 238.197987341561 1 1 0 0 -21 2 1 -26.9211410184917 726.487428602463 0 -0.0222727856435951 0.592657912349224 0.80514627363575 100 238.197987341561 1 1 0 0 -22 2 1 -80.1763473601432 716.622228908278 0 -0.0665230580553647 0.586211514105647 0.807422283242745 100 234.752216930981 1 1 0 0 -23 2 1 -131.687152325105 697.067453851801 0 -0.109883290386822 0.573304383130015 0.811940728611195 100 227.967969440308 1 1 0 0 -24 2 1 -180.344677332318 668.16002580891 0 -0.151745961499964 0.553906387283827 0.818633542737305 100 218.054693406211 1 1 0 0 -25 2 1 -225.114174166443 630.370426716135 0 -0.191480997040982 0.527968308247032 0.827396212983211 100 205.314469226913 1 1 0 0 -26 2 1 -265.051233508937 584.263004966324 0 -0.228423772625576 0.49541588047279 0.838084533609152 100 190.129529273482 1 1 0 0 -27 2 1 -299.305310576972 530.445561181835 0 -0.261859166258229 0.456139506928486 0.850509569179314 100 172.948815639711 1 1 0 0 -28 2 1 261.48857143884 421.017155857004 0 0.240432048549066 0.379676845174753 0.89332968341405 100 117.616618181703 1 1 0 0 -29 2 1 231.980604126351 471.422090622955 0 0.210638660649352 0.420345724086633 0.882576244231586 100 131.093559521746 1 1 0 0 -30 2 1 197.243708224098 514.259479652024 0 0.177143288353829 0.453955380211861 0.873238093630767 100 143.059091611403 1 1 0 0 -31 2 1 158.120300114683 549.155516341345 0 0.14071834423613 0.480686062279244 0.865528310990413 100 153.128128859839 1 1 0 0 -32 2 1 115.501327437668 575.724981691032 0 0.102069368713072 0.500649806373048 0.859611316438508 100 160.975614800933 1 1 0 0 -33 2 1 70.3350613567096 593.63940618642 0 0.0618589816187332 0.51392160161689 0.855603911739903 100 166.350868522526 1 1 0 0 -34 2 1 23.6185426387863 602.659502305665 0 0.0207220543341969 0.520546795617843 0.853581648136935 100 169.082174834447 1 1 0 0 -35 2 1 -23.6185426387863 602.659502305665 0 -0.0207220543341969 0.520546795617843 0.853581648136935 100 169.082174834447 1 1 0 0 -36 2 1 -70.3350613567096 593.63940618642 0 -0.0618589816187332 0.51392160161689 0.855603911739903 100 166.350868522526 1 1 0 0 -37 2 1 -115.501327437668 575.724981691032 0 -0.102069368713072 0.500649806373048 0.859611316438508 100 160.975614800933 1 1 0 0 -38 2 1 -158.120300114683 549.155516341345 0 -0.14071834423613 0.480686062279244 0.865528310990413 100 153.128128859839 1 1 0 0 -39 2 1 -197.243708224098 514.259479652024 0 -0.177143288353829 0.453955380211861 0.873238093630767 100 143.059091611403 1 1 0 0 -40 2 1 -231.980604126351 471.422090622955 0 -0.210638660649352 0.420345724086633 0.882576244231586 100 131.093559521746 1 1 0 0 -41 2 1 -261.48857143884 421.017155857004 0 -0.240432048549066 0.379676845174753 0.89332968341405 100 117.616618181703 1 1 0 0 -42 2 1 225.467321965357 309.840185742436 0 0.216483631754653 0.290953167895624 0.931923329074778 100 72.0060259197801 1 1 0 0 -43 2 1 200.815353385434 358.396733024938 0 0.190881554172593 0.333708270502305 0.923148429276146 100 82.1175399782137 1 1 0 0 -44 2 1 171.19753511896 399.249576374846 0 0.161286513457719 0.36887519992601 0.91537847224861 100 91.2258827734977 1 1 0 0 -45 2 1 137.481247692358 432.271622774958 0 0.128560557703239 0.396747918923094 0.908880229641522 100 98.9585139328158 1 1 0 0 -46 2 1 100.53865014598 457.273248593436 0 0.0934732129236518 0.417516511560801 0.903848837494317 100 105.01940380924 1 1 0 0 -47 2 1 61.2645669154697 474.06555685317 0 0.056734945107573 0.431302549153324 0.900421710698651 100 109.185310092408 1 1 0 0 -48 2 1 20.5790932319646 482.501538610825 0 0.0190195075633967 0.438178578894921 0.898686703656882 100 111.306072698879 1 1 0 0 -49 2 1 -20.5790932319646 482.501538610825 0 -0.0190195075633967 0.438178578894921 0.898686703656882 100 111.306072698879 1 1 0 0 -50 2 1 -61.2645669154697 474.06555685317 0 -0.056734945107573 0.431302549153324 0.900421710698651 100 109.185310092408 1 1 0 0 -51 2 1 -100.53865014598 457.273248593436 0 -0.0934732129236518 0.417516511560801 0.903848837494317 100 105.01940380924 1 1 0 0 -52 2 1 -137.481247692358 432.271622774958 0 -0.128560557703239 0.396747918923094 0.908880229641522 100 98.9585139328158 1 1 0 0 -53 2 1 -171.19753511896 399.249576374846 0 -0.161286513457719 0.36887519992601 0.91537847224861 100 91.2258827734977 1 1 0 0 -54 2 1 -200.815353385434 358.396733024938 0 -0.190881554172593 0.333708270502305 0.923148429276146 100 82.1175399782137 1 1 0 0 -55 2 1 -225.467321965357 309.840185742436 0 -0.216483631754653 0.290953167895624 0.931923329074778 100 72.0060259197801 1 1 0 0 -56 2 1 189.829501918221 191.314931797113 0 0.188936661055582 0.185431043309356 0.964322698211741 100 36.4485672634319 1 1 0 0 -57 2 1 170.442777546208 240.197805611138 0 0.168392524416647 0.231652820961579 0.958113212653459 100 43.1438669143424 1 1 0 0 -58 2 1 146.092845294433 280.685167757047 0 0.143367969936608 0.269315833998518 0.952320642826742 100 49.4603382310568 1 1 0 0 -59 2 1 117.749215929932 313.048107608268 0 0.114891900942528 0.298979042974633 0.947317994635268 100 54.9726421940577 1 1 0 0 -60 2 1 86.3153801579563 337.358209748147 0 0.0838422393101001 0.320988169728059 0.943364761797948 100 59.3671679863153 1 1 0 0 -61 2 1 52.673958181319 353.600155890306 0 0.051006446942014 0.335557805753116 0.940637709943901 100 62.4188572657231 1 1 0 0 -62 2 1 17.7056218900038 361.73489769817 0 0.0171180906922993 0.342813537602197 0.939247491030834 100 63.981005374575 1 1 0 0 -63 2 1 -17.7056218900038 361.73489769817 0 -0.0171180906922993 0.342813537602197 0.939247491030834 100 63.981005374575 1 1 0 0 -64 2 1 -52.673958181319 353.600155890306 0 -0.051006446942014 0.335557805753116 0.940637709943901 100 62.4188572657231 1 1 0 0 -65 2 1 -86.3153801579563 337.358209748147 0 -0.0838422393101001 0.320988169728059 0.943364761797948 100 59.3671679863153 1 1 0 0 -66 2 1 -117.749215929932 313.048107608268 0 -0.114891900942528 0.298979042974633 0.947317994635268 100 54.9726421940577 1 1 0 0 -67 2 1 -146.092845294433 280.685167757047 0 -0.143367969936608 0.269315833998518 0.952320642826742 100 49.4603382310568 1 1 0 0 -68 2 1 -170.442777546208 240.197805611138 0 -0.168392524416647 0.231652820961579 0.958113212653459 100 43.1438669143424 1 1 0 0 -69 2 1 -189.829501918221 191.314931797113 0 -0.188936661055582 0.185431043309356 0.964322698211741 100 36.4485672634319 1 1 0 0 -70 2 1 152.133386063647 54.2437959204128 0 0.155434336999953 0.0533720844530547 0.986403359423781 100 13.4980429036186 1 1 0 0 -71 2 1 139.163184853032 107.845899946562 0 0.1416222834811 0.106473565403201 0.984178087894629 100 15.8180204187747 1 1 0 0 -72 2 1 120.702782759042 150.85604447048 0 0.122334719599343 0.148783502421647 0.981273502030753 100 18.8401660505353 1 1 0 0 -73 2 1 98.042347736329 184.534091292079 0 0.0989973220627335 0.181645819547139 0.978368195755287 100 21.8720282029925 1 1 0 0 -74 2 1 72.2311845249147 209.486614379454 0 0.0727122339098544 0.205810717188977 0.975886714598573 100 24.4716582585716 1 1 0 0 -75 2 1 44.212686468289 226.011085937965 0 0.0444114602288232 0.221717889547257 0.974098968100805 100 26.3509294762284 1 1 0 0 -76 2 1 14.8826940022194 234.246329050369 0 0.0149330266416244 0.229615231989236 0.973166917827487 100 27.332927901251 1 1 0 0 -77 2 1 -14.8826940022194 234.246329050369 0 -0.0149330266416244 0.229615231989236 0.973166917827487 100 27.332927901251 1 1 0 0 -78 2 1 -44.212686468289 226.011085937965 0 -0.0444114602288232 0.221717889547257 0.974098968100805 100 26.3509294762284 1 1 0 0 -79 2 1 -72.2311845249147 209.486614379454 0 -0.0727122339098544 0.205810717188977 0.975886714598573 100 24.4716582585716 1 1 0 0 -80 2 1 -98.042347736329 184.534091292079 0 -0.0989973220627335 0.181645819547139 0.978368195755287 100 21.8720282029925 1 1 0 0 -81 2 1 -120.702782759042 150.85604447048 0 -0.122334719599343 0.148783502421647 0.981273502030753 100 18.8401660505353 1 1 0 0 -82 2 1 -139.163184853032 107.845899946562 0 -0.1416222834811 0.106473565403201 0.984178087894629 100 15.8180204187747 1 1 0 0 -83 2 1 -152.133386063647 54.2437959204128 0 -0.155434336999953 0.0533720844530547 0.986403359423781 100 13.4980429036186 1 1 0 0 -84 2 1 104.704277371206 -139.577780538989 0 0.107876076004165 -0.138147004106362 0.984519251961271 100 15.5136883350715 1 1 0 0 -85 2 1 102.782910521675 -63.3219460450161 0 0.106185665613461 -0.0633359706696253 0.992327143253455 100 7.57559098017475 1 1 0 0 -86 2 1 92.4256006764792 -8.78892530261114 0 0.0955154771274856 -0.00897630771693753 0.995387472057429 100 4.525051634634 1 1 0 0 -87 2 1 76.6735770104832 31.4285908688416 0 0.0791820472715359 0.0313398666789292 0.996367410218959 100 3.57308123791915 1 1 0 0 -88 2 1 57.2151183251659 60.1999842254591 0 0.0590294196898844 0.0602177536685524 0.996438332138115 100 3.52663652851629 1 1 0 0 -89 2 1 35.2821701913818 78.8599500164194 0 0.0363703171432452 0.0789384748447821 0.996215798519618 100 3.76629060612925 1 1 0 0 -90 2 1 11.917316321414 88.0558030792994 0 0.0122790252745448 0.0881575472573531 0.996030859160435 100 3.96002714316251 1 1 0 0 -91 2 1 -11.917316321414 88.0558030792994 0 -0.0122790252745448 0.0881575472573531 0.996030859160435 100 3.96002714316251 1 1 0 0 -92 2 1 -35.2821701913818 78.8599500164194 0 -0.0363703171432452 0.0789384748447821 0.996215798519618 100 3.76629060612925 1 1 0 0 -93 2 1 -57.2151183251659 60.1999842254591 0 -0.0590294196898845 0.0602177536685524 0.996438332138115 100 3.52663652851629 1 1 0 0 -94 2 1 -76.6735770104832 31.4285908688416 0 -0.0791820472715359 0.0313398666789292 0.996367410218959 100 3.57308123791915 1 1 0 0 -95 2 1 -92.4256006764792 -8.78892530261114 0 -0.0955154771274856 -0.00897630771693753 0.995387472057429 100 4.525051634634 1 1 0 0 -96 2 1 -102.782910521675 -63.321946045016 0 -0.106185665613461 -0.0633359706696253 0.992327143253455 100 7.57559098017475 1 1 0 0 -97 2 1 -104.704277371206 -139.577780538989 0 -0.107876076004165 -0.138147004106362 0.984519251961271 100 15.5136883350715 1 1 0 0 -101 2 1 45.86994500652 -224.72548027632 0 0.0471067387161153 -0.219276461299997 0.974524904087772 100 26.0917502723132 1 1 0 0 -102 2 1 37.344790240502 -165.23434478108 0 0.0385836005280091 -0.163201213675962 0.98583805446178 100 14.3245021893971 1 1 0 0 -103 2 1 23.9156669137872 -133.362763488685 0 0.0247739539702198 -0.13242566687098 0.99088328977658 100 9.17562937381319 1 1 0 0 -104 2 1 8.20485620587808 -118.714853442189 0 0.00850830844429397 -0.11813449024748 0.992961152765497 100 7.07328228868437 1 1 0 0 -105 2 1 -8.20485620587808 -118.714853442189 0 -0.00850830844429397 -0.11813449024748 0.992961152765497 100 7.07328228868437 1 1 0 0 -106 2 1 -23.9156669137872 -133.362763488685 0 -0.0247739539702198 -0.13242566687098 0.99088328977658 100 9.17562937381319 1 1 0 0 -107 2 1 -37.344790240502 -165.23434478108 0 -0.0385836005280091 -0.163201213675962 0.98583805446178 100 14.3245021893971 1 1 0 0 -108 2 1 -45.86994500652 -224.72548027632 0 -0.0471067387161153 -0.219276461299997 0.974524904087772 100 26.0917502723132 1 1 0 0 -196 2 1 340.062081529644 641.905974507241 0 0.281363839830978 0.522922714892697 0.804603146827564 100 238.690210924663 1 1 0 0 -197 2 1 301.010109141201 700.58589464947 0 0.244676449439608 0.561200448521558 0.790687986293474 100 260.203724153947 1 1 0 0 -198 2 1 255.633568603313 751.212145862446 0 0.204620155521002 0.592977382223836 0.778786502274871 100 279.206367310795 1 1 0 0 -199 2 1 204.816435082062 792.939516606976 0 0.161872350041463 0.618326968880456 0.769070284074974 100 295.150935751004 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 340.062081529644 641.905974507241 0 0.281363839830978 0.522922714892697 0.804603146827564 100 238.690210924663 1 1 0 0 +1 2 1 301.010109141201 700.58589464947 0 0.244676449439608 0.561200448521558 0.790687986293474 100 260.203724153947 1 1 0 0 +2 2 1 255.633568603313 751.212145862446 0 0.204620155521002 0.592977382223836 0.778786502274871 100 279.206367310795 1 1 0 0 +3 2 1 204.816435082062 792.939516606976 0 0.161872350041463 0.618326968880456 0.769070284074974 100 295.150935751004 1 1 0 0 +4 2 1 149.582742046203 824.997982701635 0 0.117068730475909 0.637300100655452 0.761671513218992 100 307.562396391503 1 1 0 0 +5 2 1 91.0866379008824 846.751390671625 0 0.0708157966836738 0.649931172781171 0.756686588745531 100 316.060070888085 1 1 0 0 +6 2 1 30.5874090036709 857.746109070221 0 0.0237006631781406 0.65624157111316 0.754178545775367 100 320.377523719652 1 1 0 0 +7 2 1 -30.5874090036709 857.746109070221 0 -0.0237006631781406 0.65624157111316 0.754178545775367 100 320.377523719652 1 1 0 0 +8 2 1 -91.0866379008824 846.751390671625 0 -0.0708157966836738 0.649931172781171 0.756686588745531 100 316.060070888085 1 1 0 0 +9 2 1 -149.582742046203 824.997982701635 0 -0.117068730475909 0.637300100655452 0.761671513218992 100 307.562396391503 1 1 0 0 +10 2 1 -204.816435082062 792.939516606976 0 -0.161872350041463 0.618326968880456 0.769070284074974 100 295.150935751004 1 1 0 0 +11 2 1 -255.633568603313 751.212145862446 0 -0.204620155521002 0.592977382223836 0.778786502274871 100 279.206367310795 1 1 0 0 +12 2 1 -301.010109141201 700.58589464947 0 -0.244676449439608 0.561200448521558 0.790687986293474 100 260.203724153947 1 1 0 0 +13 2 1 -340.062081529644 641.905974507241 0 -0.281363839830978 0.522922714892697 0.804603146827564 100 238.690210924663 1 1 0 0 +14 2 1 299.305310576972 530.445561181835 0 0.261859166258229 0.456139506928486 0.850509569179314 100 172.948815639711 1 1 0 0 +15 2 1 265.051233508937 584.263004966324 0 0.228423772625576 0.49541588047279 0.838084533609152 100 190.129529273482 1 1 0 0 +16 2 1 225.114174166443 630.370426716135 0 0.191480997040982 0.527968308247032 0.827396212983211 100 205.314469226913 1 1 0 0 +17 2 1 180.344677332318 668.16002580891 0 0.151745961499964 0.553906387283827 0.818633542737305 100 218.054693406211 1 1 0 0 +18 2 1 131.687152325105 697.067453851801 0 0.109883290386822 0.573304383130015 0.811940728611195 100 227.967969440308 1 1 0 0 +19 2 1 80.1763473601432 716.622228908278 0 0.0665230580553647 0.586211514105647 0.807422283242745 100 234.752216930981 1 1 0 0 +20 2 1 26.9211410184917 726.487428602463 0 0.0222727856435951 0.592657912349224 0.80514627363575 100 238.197987341561 1 1 0 0 +21 2 1 -26.9211410184917 726.487428602463 0 -0.0222727856435951 0.592657912349224 0.80514627363575 100 238.197987341561 1 1 0 0 +22 2 1 -80.1763473601432 716.622228908278 0 -0.0665230580553647 0.586211514105647 0.807422283242745 100 234.752216930981 1 1 0 0 +23 2 1 -131.687152325105 697.067453851801 0 -0.109883290386822 0.573304383130015 0.811940728611195 100 227.967969440308 1 1 0 0 +24 2 1 -180.344677332318 668.16002580891 0 -0.151745961499964 0.553906387283827 0.818633542737305 100 218.054693406211 1 1 0 0 +25 2 1 -225.114174166443 630.370426716135 0 -0.191480997040982 0.527968308247032 0.827396212983211 100 205.314469226913 1 1 0 0 +26 2 1 -265.051233508937 584.263004966324 0 -0.228423772625576 0.49541588047279 0.838084533609152 100 190.129529273482 1 1 0 0 +27 2 1 -299.305310576972 530.445561181835 0 -0.261859166258229 0.456139506928486 0.850509569179314 100 172.948815639711 1 1 0 0 +28 2 1 261.48857143884 421.017155857004 0 0.240432048549066 0.379676845174753 0.89332968341405 100 117.616618181703 1 1 0 0 +29 2 1 231.980604126351 471.422090622955 0 0.210638660649352 0.420345724086633 0.882576244231586 100 131.093559521746 1 1 0 0 +30 2 1 197.243708224098 514.259479652024 0 0.177143288353829 0.453955380211861 0.873238093630767 100 143.059091611403 1 1 0 0 +31 2 1 158.120300114683 549.155516341345 0 0.14071834423613 0.480686062279244 0.865528310990413 100 153.128128859839 1 1 0 0 +32 2 1 115.501327437668 575.724981691032 0 0.102069368713072 0.500649806373048 0.859611316438508 100 160.975614800933 1 1 0 0 +33 2 1 70.3350613567096 593.63940618642 0 0.0618589816187332 0.51392160161689 0.855603911739903 100 166.350868522526 1 1 0 0 +34 2 1 23.6185426387863 602.659502305665 0 0.0207220543341969 0.520546795617843 0.853581648136935 100 169.082174834447 1 1 0 0 +35 2 1 -23.6185426387863 602.659502305665 0 -0.0207220543341969 0.520546795617843 0.853581648136935 100 169.082174834447 1 1 0 0 +36 2 1 -70.3350613567096 593.63940618642 0 -0.0618589816187332 0.51392160161689 0.855603911739903 100 166.350868522526 1 1 0 0 +37 2 1 -115.501327437668 575.724981691032 0 -0.102069368713072 0.500649806373048 0.859611316438508 100 160.975614800933 1 1 0 0 +38 2 1 -158.120300114683 549.155516341345 0 -0.14071834423613 0.480686062279244 0.865528310990413 100 153.128128859839 1 1 0 0 +39 2 1 -197.243708224098 514.259479652024 0 -0.177143288353829 0.453955380211861 0.873238093630767 100 143.059091611403 1 1 0 0 +40 2 1 -231.980604126351 471.422090622955 0 -0.210638660649352 0.420345724086633 0.882576244231586 100 131.093559521746 1 1 0 0 +41 2 1 -261.48857143884 421.017155857004 0 -0.240432048549066 0.379676845174753 0.89332968341405 100 117.616618181703 1 1 0 0 +42 2 1 225.467321965357 309.840185742436 0 0.216483631754653 0.290953167895624 0.931923329074778 100 72.0060259197801 1 1 0 0 +43 2 1 200.815353385434 358.396733024938 0 0.190881554172593 0.333708270502305 0.923148429276146 100 82.1175399782137 1 1 0 0 +44 2 1 171.19753511896 399.249576374846 0 0.161286513457719 0.36887519992601 0.91537847224861 100 91.2258827734977 1 1 0 0 +45 2 1 137.481247692358 432.271622774958 0 0.128560557703239 0.396747918923094 0.908880229641522 100 98.9585139328158 1 1 0 0 +46 2 1 100.53865014598 457.273248593436 0 0.0934732129236518 0.417516511560801 0.903848837494317 100 105.01940380924 1 1 0 0 +47 2 1 61.2645669154697 474.06555685317 0 0.056734945107573 0.431302549153324 0.900421710698651 100 109.185310092408 1 1 0 0 +48 2 1 20.5790932319646 482.501538610825 0 0.0190195075633967 0.438178578894921 0.898686703656882 100 111.306072698879 1 1 0 0 +49 2 1 -20.5790932319646 482.501538610825 0 -0.0190195075633967 0.438178578894921 0.898686703656882 100 111.306072698879 1 1 0 0 +50 2 1 -61.2645669154697 474.06555685317 0 -0.056734945107573 0.431302549153324 0.900421710698651 100 109.185310092408 1 1 0 0 +51 2 1 -100.53865014598 457.273248593436 0 -0.0934732129236518 0.417516511560801 0.903848837494317 100 105.01940380924 1 1 0 0 +52 2 1 -137.481247692358 432.271622774958 0 -0.128560557703239 0.396747918923094 0.908880229641522 100 98.9585139328158 1 1 0 0 +53 2 1 -171.19753511896 399.249576374846 0 -0.161286513457719 0.36887519992601 0.91537847224861 100 91.2258827734977 1 1 0 0 +54 2 1 -200.815353385434 358.396733024938 0 -0.190881554172593 0.333708270502305 0.923148429276146 100 82.1175399782137 1 1 0 0 +55 2 1 -225.467321965357 309.840185742436 0 -0.216483631754653 0.290953167895624 0.931923329074778 100 72.0060259197801 1 1 0 0 +56 2 1 189.829501918221 191.314931797113 0 0.188936661055582 0.185431043309356 0.964322698211741 100 36.4485672634319 1 1 0 0 +57 2 1 170.442777546208 240.197805611138 0 0.168392524416647 0.231652820961579 0.958113212653459 100 43.1438669143424 1 1 0 0 +58 2 1 146.092845294433 280.685167757047 0 0.143367969936608 0.269315833998518 0.952320642826742 100 49.4603382310568 1 1 0 0 +59 2 1 117.749215929932 313.048107608268 0 0.114891900942528 0.298979042974633 0.947317994635268 100 54.9726421940577 1 1 0 0 +60 2 1 86.3153801579563 337.358209748147 0 0.0838422393101001 0.320988169728059 0.943364761797948 100 59.3671679863153 1 1 0 0 +61 2 1 52.673958181319 353.600155890306 0 0.051006446942014 0.335557805753116 0.940637709943901 100 62.4188572657231 1 1 0 0 +62 2 1 17.7056218900038 361.73489769817 0 0.0171180906922993 0.342813537602197 0.939247491030834 100 63.981005374575 1 1 0 0 +63 2 1 -17.7056218900038 361.73489769817 0 -0.0171180906922993 0.342813537602197 0.939247491030834 100 63.981005374575 1 1 0 0 +64 2 1 -52.673958181319 353.600155890306 0 -0.051006446942014 0.335557805753116 0.940637709943901 100 62.4188572657231 1 1 0 0 +65 2 1 -86.3153801579563 337.358209748147 0 -0.0838422393101001 0.320988169728059 0.943364761797948 100 59.3671679863153 1 1 0 0 +66 2 1 -117.749215929932 313.048107608268 0 -0.114891900942528 0.298979042974633 0.947317994635268 100 54.9726421940577 1 1 0 0 +67 2 1 -146.092845294433 280.685167757047 0 -0.143367969936608 0.269315833998518 0.952320642826742 100 49.4603382310568 1 1 0 0 +68 2 1 -170.442777546208 240.197805611138 0 -0.168392524416647 0.231652820961579 0.958113212653459 100 43.1438669143424 1 1 0 0 +69 2 1 -189.829501918221 191.314931797113 0 -0.188936661055582 0.185431043309356 0.964322698211741 100 36.4485672634319 1 1 0 0 +70 2 1 152.133386063647 54.2437959204128 0 0.155434336999953 0.0533720844530547 0.986403359423781 100 13.4980429036186 1 1 0 0 +71 2 1 139.163184853032 107.845899946562 0 0.1416222834811 0.106473565403201 0.984178087894629 100 15.8180204187747 1 1 0 0 +72 2 1 120.702782759042 150.85604447048 0 0.122334719599343 0.148783502421647 0.981273502030753 100 18.8401660505353 1 1 0 0 +73 2 1 98.042347736329 184.534091292079 0 0.0989973220627335 0.181645819547139 0.978368195755287 100 21.8720282029925 1 1 0 0 +74 2 1 72.2311845249147 209.486614379454 0 0.0727122339098544 0.205810717188977 0.975886714598573 100 24.4716582585716 1 1 0 0 +75 2 1 44.212686468289 226.011085937965 0 0.0444114602288232 0.221717889547257 0.974098968100805 100 26.3509294762284 1 1 0 0 +76 2 1 14.8826940022194 234.246329050369 0 0.0149330266416244 0.229615231989236 0.973166917827487 100 27.332927901251 1 1 0 0 +77 2 1 -14.8826940022194 234.246329050369 0 -0.0149330266416244 0.229615231989236 0.973166917827487 100 27.332927901251 1 1 0 0 +78 2 1 -44.212686468289 226.011085937965 0 -0.0444114602288232 0.221717889547257 0.974098968100805 100 26.3509294762284 1 1 0 0 +79 2 1 -72.2311845249147 209.486614379454 0 -0.0727122339098544 0.205810717188977 0.975886714598573 100 24.4716582585716 1 1 0 0 +80 2 1 -98.042347736329 184.534091292079 0 -0.0989973220627335 0.181645819547139 0.978368195755287 100 21.8720282029925 1 1 0 0 +81 2 1 -120.702782759042 150.85604447048 0 -0.122334719599343 0.148783502421647 0.981273502030753 100 18.8401660505353 1 1 0 0 +82 2 1 -139.163184853032 107.845899946562 0 -0.1416222834811 0.106473565403201 0.984178087894629 100 15.8180204187747 1 1 0 0 +83 2 1 -152.133386063647 54.2437959204128 0 -0.155434336999953 0.0533720844530547 0.986403359423781 100 13.4980429036186 1 1 0 0 +84 2 1 104.704277371206 -139.577780538989 0 0.107876076004165 -0.138147004106362 0.984519251961271 100 15.5136883350715 1 1 0 0 +85 2 1 102.782910521675 -63.3219460450161 0 0.106185665613461 -0.0633359706696253 0.992327143253455 100 7.57559098017475 1 1 0 0 +86 2 1 92.4256006764792 -8.78892530261114 0 0.0955154771274856 -0.00897630771693753 0.995387472057429 100 4.525051634634 1 1 0 0 +87 2 1 76.6735770104832 31.4285908688416 0 0.0791820472715359 0.0313398666789292 0.996367410218959 100 3.57308123791915 1 1 0 0 +88 2 1 57.2151183251659 60.1999842254591 0 0.0590294196898844 0.0602177536685524 0.996438332138115 100 3.52663652851629 1 1 0 0 +89 2 1 35.2821701913818 78.8599500164194 0 0.0363703171432452 0.0789384748447821 0.996215798519618 100 3.76629060612925 1 1 0 0 +90 2 1 11.917316321414 88.0558030792994 0 0.0122790252745448 0.0881575472573531 0.996030859160435 100 3.96002714316251 1 1 0 0 +91 2 1 -11.917316321414 88.0558030792994 0 -0.0122790252745448 0.0881575472573531 0.996030859160435 100 3.96002714316251 1 1 0 0 +92 2 1 -35.2821701913818 78.8599500164194 0 -0.0363703171432452 0.0789384748447821 0.996215798519618 100 3.76629060612925 1 1 0 0 +93 2 1 -57.2151183251659 60.1999842254591 0 -0.0590294196898845 0.0602177536685524 0.996438332138115 100 3.52663652851629 1 1 0 0 +94 2 1 -76.6735770104832 31.4285908688416 0 -0.0791820472715359 0.0313398666789292 0.996367410218959 100 3.57308123791915 1 1 0 0 +95 2 1 -92.4256006764792 -8.78892530261114 0 -0.0955154771274856 -0.00897630771693753 0.995387472057429 100 4.525051634634 1 1 0 0 +96 2 1 -102.782910521675 -63.321946045016 0 -0.106185665613461 -0.0633359706696253 0.992327143253455 100 7.57559098017475 1 1 0 0 +97 2 1 -104.704277371206 -139.577780538989 0 -0.107876076004165 -0.138147004106362 0.984519251961271 100 15.5136883350715 1 1 0 0 +101 2 1 45.86994500652 -224.72548027632 0 0.0471067387161153 -0.219276461299997 0.974524904087772 100 26.0917502723132 1 1 0 0 +102 2 1 37.344790240502 -165.23434478108 0 0.0385836005280091 -0.163201213675962 0.98583805446178 100 14.3245021893971 1 1 0 0 +103 2 1 23.9156669137872 -133.362763488685 0 0.0247739539702198 -0.13242566687098 0.99088328977658 100 9.17562937381319 1 1 0 0 +104 2 1 8.20485620587808 -118.714853442189 0 0.00850830844429397 -0.11813449024748 0.992961152765497 100 7.07328228868437 1 1 0 0 +105 2 1 -8.20485620587808 -118.714853442189 0 -0.00850830844429397 -0.11813449024748 0.992961152765497 100 7.07328228868437 1 1 0 0 +106 2 1 -23.9156669137872 -133.362763488685 0 -0.0247739539702198 -0.13242566687098 0.99088328977658 100 9.17562937381319 1 1 0 0 +107 2 1 -37.344790240502 -165.23434478108 0 -0.0385836005280091 -0.163201213675962 0.98583805446178 100 14.3245021893971 1 1 0 0 +108 2 1 -45.86994500652 -224.72548027632 0 -0.0471067387161153 -0.219276461299997 0.974524904087772 100 26.0917502723132 1 1 0 0 +196 2 1 340.062081529644 641.905974507241 0 0.281363839830978 0.522922714892697 0.804603146827564 100 238.690210924663 1 1 0 0 +197 2 1 301.010109141201 700.58589464947 0 0.244676449439608 0.561200448521558 0.790687986293474 100 260.203724153947 1 1 0 0 +198 2 1 255.633568603313 751.212145862446 0 0.204620155521002 0.592977382223836 0.778786502274871 100 279.206367310795 1 1 0 0 +199 2 1 204.816435082062 792.939516606976 0 0.161872350041463 0.618326968880456 0.769070284074974 100 295.150935751004 1 1 0 0 diff --git a/Tests/input/ReflectionZonePlateDefault200Toroid.rml b/Intern/RayCore/tests/input/ReflectionZonePlateDefault200Toroid.rml similarity index 100% rename from Tests/input/ReflectionZonePlateDefault200Toroid.rml rename to Intern/RayCore/tests/input/ReflectionZonePlateDefault200Toroid.rml diff --git a/Tests/input/ReflectionZonePlateMis.csv b/Intern/RayCore/tests/input/ReflectionZonePlateMis.csv similarity index 99% rename from Tests/input/ReflectionZonePlateMis.csv rename to Intern/RayCore/tests/input/ReflectionZonePlateMis.csv index cbfd27596..fe7544c58 100644 --- a/Tests/input/ReflectionZonePlateMis.csv +++ b/Intern/RayCore/tests/input/ReflectionZonePlateMis.csv @@ -1,16 +1,16 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -33 2 1 15.2178846039661 -2.27812235276093 0 0.0180103100817709 -0.00286965829426835 0.999833683065355 100 0.0854805334688535 1 1 0 0 -34 2 1 10.5356142692881 3.22360224458875 0 0.012005777401992 0.00317035935313347 0.999922902093229 100 0.00414843359169481 1 1 0 0 -35 2 1 5.8569771258069 5.70436228240113 0 0.00600582222306174 0.00589002174837695 0.99996461824568 100 -0.0338995273151568 1 1 0 0 -36 2 1 1.17835572213446 6.17807172890309 0 7.32386857076086e-06 0.00640402904698394 0.999979493968914 100 -0.0474636050861363 1 1 0 0 -37 2 1 -3.50086254792439 4.7747168965513 0 -0.00598992486309454 0.00485607872113915 0.999970269207834 100 -0.0390290010429908 1 1 0 0 -38 2 1 -8.17961496849908 1.04297328415852 0 -0.0119842157841875 0.000751710741307809 0.999927904152594 100 -0.000351336664266455 1 1 0 0 -39 2 1 -12.8513941398538 -7.58430558425495 0 -0.0179668778842043 -0.0087250165668844 0.999800512794928 100 0.115862257439858 1 1 0 0 -48 2 1 12.6303461839354 -1.8455126533042 0 0.0135918079643127 -0.00320015573759749 0.999902506127231 100 0.0254609094373563 1 1 0 0 -49 2 1 6.50259241149319 3.3099566839734 0 0.00638233486785382 0.0021767371970216 0.999977263549932 100 -0.0462311679958702 1 1 0 0 -50 2 1 0.376791363055202 4.05224882264322 0 -0.000823941354898522 0.00294602904564547 0.999995321005806 100 -0.0635554096902524 1 1 0 0 -51 2 1 -5.74935188767075 0.943122627776818 0 -0.00802828032591148 -0.000304348766095645 0.99996772652263 100 -0.0370802485830382 1 1 0 0 -52 2 1 -11.8644445235407 -10.3799614181913 0 -0.0152165351013051 -0.0121224721236541 0.999810733453648 100 0.113503102221785 1 1 0 0 -63 2 1 8.05906768193255 -5.03897361976981 0 0.00763188827595532 -0.00709939224292084 0.999945674979958 100 -0.015230115948043 1 1 0 0 -64 2 1 -1.11211514174535 -3.03174636563669 0 -0.00226067212578671 -0.00510709913853418 0.999984403328336 100 -0.0541880045740299 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +33 2 1 15.2178846039661 -2.27812235276093 0 0.0180103100817709 -0.00286965829426835 0.999833683065355 100 0.0854805334688535 1 1 0 0 +34 2 1 10.5356142692881 3.22360224458875 0 0.012005777401992 0.00317035935313347 0.999922902093229 100 0.00414843359169481 1 1 0 0 +35 2 1 5.8569771258069 5.70436228240113 0 0.00600582222306174 0.00589002174837695 0.99996461824568 100 -0.0338995273151568 1 1 0 0 +36 2 1 1.17835572213446 6.17807172890309 0 7.32386857076086e-06 0.00640402904698394 0.999979493968914 100 -0.0474636050861363 1 1 0 0 +37 2 1 -3.50086254792439 4.7747168965513 0 -0.00598992486309454 0.00485607872113915 0.999970269207834 100 -0.0390290010429908 1 1 0 0 +38 2 1 -8.17961496849908 1.04297328415852 0 -0.0119842157841875 0.000751710741307809 0.999927904152594 100 -0.000351336664266455 1 1 0 0 +39 2 1 -12.8513941398538 -7.58430558425495 0 -0.0179668778842043 -0.0087250165668844 0.999800512794928 100 0.115862257439858 1 1 0 0 +48 2 1 12.6303461839354 -1.8455126533042 0 0.0135918079643127 -0.00320015573759749 0.999902506127231 100 0.0254609094373563 1 1 0 0 +49 2 1 6.50259241149319 3.3099566839734 0 0.00638233486785382 0.0021767371970216 0.999977263549932 100 -0.0462311679958702 1 1 0 0 +50 2 1 0.376791363055202 4.05224882264322 0 -0.000823941354898522 0.00294602904564547 0.999995321005806 100 -0.0635554096902524 1 1 0 0 +51 2 1 -5.74935188767075 0.943122627776818 0 -0.00802828032591148 -0.000304348766095645 0.99996772652263 100 -0.0370802485830382 1 1 0 0 +52 2 1 -11.8644445235407 -10.3799614181913 0 -0.0152165351013051 -0.0121224721236541 0.999810733453648 100 0.113503102221785 1 1 0 0 +63 2 1 8.05906768193255 -5.03897361976981 0 0.00763188827595532 -0.00709939224292084 0.999945674979958 100 -0.015230115948043 1 1 0 0 +64 2 1 -1.11211514174535 -3.03174636563669 0 -0.00226067212578671 -0.00510709913853418 0.999984403328336 100 -0.0541880045740299 1 1 0 0 diff --git a/Tests/input/ReflectionZonePlateMis.rml b/Intern/RayCore/tests/input/ReflectionZonePlateMis.rml similarity index 100% rename from Tests/input/ReflectionZonePlateMis.rml rename to Intern/RayCore/tests/input/ReflectionZonePlateMis.rml diff --git a/Tests/input/SphereMirrorDefault.csv b/Intern/RayCore/tests/input/SphereMirrorDefault.csv similarity index 99% rename from Tests/input/SphereMirrorDefault.csv rename to Intern/RayCore/tests/input/SphereMirrorDefault.csv index 0a7c973c8..10f8f4b79 100644 --- a/Tests/input/SphereMirrorDefault.csv +++ b/Intern/RayCore/tests/input/SphereMirrorDefault.csv @@ -1,22 +1,22 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -5.3677600809736 -0.103755507166738 0 -0.000330498720487093 0.00495040181985787 0.999987692070466 100 0.000545541765745838 1 1 0 0 -1 2 1 -1.78925347376817 -0.10510076030644 0 -0.000110166090061158 0.00495120725985893 0.999987736629856 100 -0.000242356783473952 1 1 0 0 -2 2 1 1.78925347376817 -0.10510076030644 0 0.000110166090061158 0.00495120725985893 0.999987736629856 100 -0.000242356783473952 1 1 0 0 -3 2 1 5.3677600809736 -0.103755507166738 0 0.000330498720487093 0.00495040181985787 0.999987692070466 100 0.000545541765745838 1 1 0 0 -4 2 1 -5.36629156709453 -0.0107400390678278 0 -0.00033221562265945 0.00165543136278765 0.999998574588876 100 0.000872954578767349 1 1 0 0 -5 2 1 -1.78876396409408 -0.0120574697188245 0 -0.000110738390093831 0.00165624250690261 0.999998622297935 100 8.56555287782612e-05 1 1 0 0 -6 2 1 1.78876396409408 -0.0120574697188245 0 0.000110738390093831 0.00165624250690261 0.999998622297935 100 8.56555287782612e-05 1 1 0 0 -7 2 1 5.36629156709453 -0.0107400390678278 0 0.00033221562265945 0.00165543136278765 0.999998574588876 100 0.000872954578767349 1 1 0 0 -8 2 1 -5.36487401264397 -0.00952152692327846 0 -0.000333940960323039 -0.00166326603730799 0.999998561013727 100 0.000898138201137044 1 1 0 0 -9 2 1 -1.78829144080351 -0.0108106189879444 0 -0.000111313501937041 -0.00166244904082888 0.999998611935282 100 0.000111259608161163 1 1 0 0 -10 2 1 1.78829144080351 -0.0108106189879444 0 0.000111313501937041 -0.00166244904082888 0.999998611935282 100 0.000111259608161163 1 1 0 0 -11 2 1 5.36487401264397 -0.00952152692327846 0 0.000333940960323039 -0.00166326603730799 0.999998561013727 100 0.000898138201137044 1 1 0 0 -12 2 1 -5.36350846522999 -0.102091143519845 0 -0.000335674964068282 -0.00500627013808033 0.999987412211585 100 0.00123704682664538 1 1 0 0 -13 2 1 -1.78783625309493 -0.103351357450493 0 -0.000111891502453391 -0.00500544713455589 0.999987466411092 100 0.000450402294518426 1 1 0 0 -14 2 1 1.78783625309493 -0.103351357450493 0 0.000111891502453391 -0.00500544713455589 0.999987466411092 100 0.000450402294518426 1 1 0 0 -15 2 1 5.36350846522999 -0.102091143519845 0 0.000335674964068282 -0.00500627013808033 0.999987412211585 100 0.00123704682664538 1 1 0 0 -16 2 1 -5.3677600809736 -0.103755507166738 0 -0.000330498720487093 0.00495040181985787 0.999987692070466 100 0.000545541765745838 1 1 0 0 -17 2 1 -1.78925347376817 -0.10510076030644 0 -0.000110166090061158 0.00495120725985893 0.999987736629856 100 -0.000242356783473952 1 1 0 0 -18 2 1 1.78925347376817 -0.10510076030644 0 0.000110166090061158 0.00495120725985893 0.999987736629856 100 -0.000242356783473952 1 1 0 0 -19 2 1 5.3677600809736 -0.103755507166738 0 0.000330498720487093 0.00495040181985787 0.999987692070466 100 0.000545541765745838 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -5.3677600809736 -0.103755507166738 0 -0.000330498720487093 0.00495040181985787 0.999987692070466 100 0.000545541765745838 1 1 0 0 +1 2 1 -1.78925347376817 -0.10510076030644 0 -0.000110166090061158 0.00495120725985893 0.999987736629856 100 -0.000242356783473952 1 1 0 0 +2 2 1 1.78925347376817 -0.10510076030644 0 0.000110166090061158 0.00495120725985893 0.999987736629856 100 -0.000242356783473952 1 1 0 0 +3 2 1 5.3677600809736 -0.103755507166738 0 0.000330498720487093 0.00495040181985787 0.999987692070466 100 0.000545541765745838 1 1 0 0 +4 2 1 -5.36629156709453 -0.0107400390678278 0 -0.00033221562265945 0.00165543136278765 0.999998574588876 100 0.000872954578767349 1 1 0 0 +5 2 1 -1.78876396409408 -0.0120574697188245 0 -0.000110738390093831 0.00165624250690261 0.999998622297935 100 8.56555287782612e-05 1 1 0 0 +6 2 1 1.78876396409408 -0.0120574697188245 0 0.000110738390093831 0.00165624250690261 0.999998622297935 100 8.56555287782612e-05 1 1 0 0 +7 2 1 5.36629156709453 -0.0107400390678278 0 0.00033221562265945 0.00165543136278765 0.999998574588876 100 0.000872954578767349 1 1 0 0 +8 2 1 -5.36487401264397 -0.00952152692327846 0 -0.000333940960323039 -0.00166326603730799 0.999998561013727 100 0.000898138201137044 1 1 0 0 +9 2 1 -1.78829144080351 -0.0108106189879444 0 -0.000111313501937041 -0.00166244904082888 0.999998611935282 100 0.000111259608161163 1 1 0 0 +10 2 1 1.78829144080351 -0.0108106189879444 0 0.000111313501937041 -0.00166244904082888 0.999998611935282 100 0.000111259608161163 1 1 0 0 +11 2 1 5.36487401264397 -0.00952152692327846 0 0.000333940960323039 -0.00166326603730799 0.999998561013727 100 0.000898138201137044 1 1 0 0 +12 2 1 -5.36350846522999 -0.102091143519845 0 -0.000335674964068282 -0.00500627013808033 0.999987412211585 100 0.00123704682664538 1 1 0 0 +13 2 1 -1.78783625309493 -0.103351357450493 0 -0.000111891502453391 -0.00500544713455589 0.999987466411092 100 0.000450402294518426 1 1 0 0 +14 2 1 1.78783625309493 -0.103351357450493 0 0.000111891502453391 -0.00500544713455589 0.999987466411092 100 0.000450402294518426 1 1 0 0 +15 2 1 5.36350846522999 -0.102091143519845 0 0.000335674964068282 -0.00500627013808033 0.999987412211585 100 0.00123704682664538 1 1 0 0 +16 2 1 -5.3677600809736 -0.103755507166738 0 -0.000330498720487093 0.00495040181985787 0.999987692070466 100 0.000545541765745838 1 1 0 0 +17 2 1 -1.78925347376817 -0.10510076030644 0 -0.000110166090061158 0.00495120725985893 0.999987736629856 100 -0.000242356783473952 1 1 0 0 +18 2 1 1.78925347376817 -0.10510076030644 0 0.000110166090061158 0.00495120725985893 0.999987736629856 100 -0.000242356783473952 1 1 0 0 +19 2 1 5.3677600809736 -0.103755507166738 0 0.000330498720487093 0.00495040181985787 0.999987692070466 100 0.000545541765745838 1 1 0 0 diff --git a/Tests/input/SphereMirrorDefault.rml b/Intern/RayCore/tests/input/SphereMirrorDefault.rml similarity index 100% rename from Tests/input/SphereMirrorDefault.rml rename to Intern/RayCore/tests/input/SphereMirrorDefault.rml diff --git a/Tests/input/allBeamlineObjects.rml b/Intern/RayCore/tests/input/allBeamlineObjects.rml similarity index 100% rename from Tests/input/allBeamlineObjects.rml rename to Intern/RayCore/tests/input/allBeamlineObjects.rml diff --git a/Tests/input/ellipsoid_ip_200mirrormis.csv b/Intern/RayCore/tests/input/ellipsoid_ip_200mirrormis.csv similarity index 99% rename from Tests/input/ellipsoid_ip_200mirrormis.csv rename to Intern/RayCore/tests/input/ellipsoid_ip_200mirrormis.csv index c942089cb..2c79fa929 100644 --- a/Tests/input/ellipsoid_ip_200mirrormis.csv +++ b/Intern/RayCore/tests/input/ellipsoid_ip_200mirrormis.csv @@ -1,202 +1,202 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -0.999706888191881 -6.5098105428976 0 0.00411371158906159 -0.00549721881479964 0.999976428703329 100 -0.658325457697856 1 0.999712 0.0239977 -1.40588e-06 -1 2 1 -0.977765443441836 -6.53817394543293 0 0.00334682148727753 -0.00550700674938459 0.999979235615717 100 -0.65808525681382 1 1 6.99284e-14 -4.09673e-08 -2 2 1 -0.95576089295319 -6.56648524505283 0 0.00257986754533321 -0.00552058264981287 0.999981433552971 100 -0.657862036918914 1 0.999712 0.0239977 -1.40605e-06 -3 2 1 -0.933693250194873 -6.59474449295807 0 0.00181287847324792 -0.00553794769090044 0.999983022159384 100 -0.657655789799264 1 0.999712 0.0239977 -1.36518e-06 -4 2 1 -0.911562528149523 -6.62295174094468 0 0.00104588299934056 -0.00555910276507499 0.999984001124618 100 -0.657466507147888 1 1 6.99007e-14 -4.0959e-08 -5 2 1 -0.889368739306478 -6.65110704139842 0 0.000278909866668283 -0.00558404848209365 0.999984370183773 100 -0.657294180543659 1 0.999712 0.0239977 -1.3654e-06 -6 2 1 -0.867111895654595 -6.6792104472889 0 -0.000488012170539801 -0.00561278516880498 0.999984129117443 100 -0.657138801479618 1 1 0 0 -7 2 1 -0.844792008674996 -6.70726201216396 0 -0.00125485435045336 -0.00564531286896008 0.999983277751769 100 -0.657000361346036 1 0.999712 0.0239977 -1.36565e-06 -8 2 1 -0.822409089334367 -6.73526179014296 0 -0.00202158790721535 -0.00568163134308841 0.999981815958478 100 -0.656878851428246 1 0.999712 0.0239977 -1.36578e-06 -9 2 1 -0.799963148077868 -6.76320983591234 0 -0.00278818407451853 -0.00572174006841536 0.999979743654918 100 -0.656774262922795 1 1 0 0 -10 2 1 -0.777454194822279 -6.79110620471798 0 -0.003554614089184 -0.00576563823883447 0.999977060804085 100 -0.656686586932437 1 0.999712 0.0239977 -1.36607e-06 -11 2 1 -0.754882238949506 -6.81895095235962 0 -0.00432084919474022 -0.00581332476494123 0.999973767414633 100 -0.656615814458519 1 0.999712 0.0239977 -1.36623e-06 -12 2 1 -0.732247289299794 -6.84674413518538 0 -0.00508686064500176 -0.00586479827411068 0.999969863540888 100 -0.656561936407456 1 0.999712 0.0239977 -1.36639e-06 -13 2 1 -0.709549354165175 -6.87448581008332 0 -0.00585261970764687 -0.00592005711062737 0.999965349282847 100 -0.656524943603813 1 0.999712 0.0239977 -1.40749e-06 -14 2 1 -1.02774166087204 -6.5280166896232 0 0.00406457661773941 -0.00629470800168053 0.999971927540015 100 -0.658334161495645 1 0.999712 0.0239977 -1.36793e-06 -15 2 1 -1.00576583297938 -6.55644956734554 0 0.00330150776366109 -0.0063047062724147 0.999974675041976 100 -0.65807180992465 1 0.999712 0.0239977 -1.36801e-06 -16 2 1 -0.983726900857219 -6.58483046143578 0 0.00253837703031754 -0.00631846434497574 0.999976816556451 100 -0.657826418882792 1 1 6.96283e-14 -4.08795e-08 -17 2 1 -0.961624877156332 -6.6131594230284 0 0.00177521284737778 -0.00633598337027957 0.999978351732715 100 -0.657597980140963 1 0.999712 0.0239977 -1.40908e-06 -18 2 1 -0.939459774043103 -6.64143650384386 0 0.00101204366244869 -0.00635726422031352 0.999979280264976 100 -0.657386485366942 1 0.999712 0.0239977 -1.36831e-06 -19 2 1 -0.917231603192267 -6.66966175618163 0 0.000248897937566095 -0.00638230748784779 0.999979601892432 100 -0.657191926150631 1 0.999712 0.0239977 -1.40929e-06 -20 2 1 -0.894940375779925 -6.69783523291721 0 -0.000514195854319689 -0.00641111348620677 0.99997931639934 100 -0.657014293962675 1 0.999712 0.0239977 -1.40941e-06 -21 2 1 -0.872586102476708 -6.72595698749315 0 -0.00127720923286293 -0.0064436822490897 0.999978423615054 100 -0.65685358017663 1 0.999712 0.0239977 -1.36867e-06 -22 2 1 -0.850168793440711 -6.75402707391672 0 -0.00204011371384439 -0.00648001353043953 0.999976923414075 100 -0.656709776083744 1 0.999712 0.0239977 -1.3688e-06 -23 2 1 -0.82768845831098 -6.78204554675063 0 -0.00280288081269596 -0.00652010680437187 0.999974815716081 100 -0.65658287287124 1 0.999712 0.0239977 -1.36894e-06 -24 2 1 -0.805145106200702 -6.81001246110894 0 -0.00356548204802691 -0.00656396126514913 0.999972100485946 100 -0.656472861629254 1 1 6.95347e-14 -4.08515e-08 -25 2 1 -0.782538745690555 -6.83792787265009 0 -0.00432788894515059 -0.00661157582720584 0.999968777733765 100 -0.656379733365497 1 0.999712 0.0239977 -1.36925e-06 -26 2 1 -0.759869384822231 -6.8657918375716 0 -0.00509007303961078 -0.00666294912523113 0.999964847514855 100 -0.656303478975587 1 0.999712 0.0239977 -1.36942e-06 -27 2 1 -0.737137031092285 -6.89360441260218 0 -0.00585200588070723 -0.00671807951430636 0.999960309929755 100 -0.656244089282268 1 1 0 0 -28 2 1 -1.05584661786842 -6.54629559503002 0 0.00401577588793356 -0.00708834896543586 0.999966813875822 100 -0.658326568379948 1 0.999712 0.0239977 -1.41174e-06 -29 2 1 -1.03383630654876 -6.57479797677044 0 0.00325650063581292 -0.00709855492099948 0.99996950239577 100 -0.658042060640469 1 0.999712 0.0239977 -1.37103e-06 -30 2 1 -1.01176289233742 -6.60324849321658 0 0.00249716543540193 -0.00711249278814369 0.99997158790194 100 -0.657774493030388 1 0.999712 0.0239977 -1.41191e-06 -31 2 1 -0.989626387078067 -6.63164719543485 0 0.00173779843939852 -0.00713016369430863 0.999973070048527 100 -0.657523857312754 1 0.999712 0.0239977 -1.37122e-06 -32 2 1 -0.967426802131504 -6.65999413506797 0 0.000978427818084425 -0.00715156849140358 0.99997394853422 100 -0.657290145141246 1 0.999712 0.0239977 -1.37132e-06 -33 2 1 -0.945164148368727 -6.68828936433044 0 0.000219081755866889 -0.00717670775553164 0.999974223102264 100 -0.657073348085305 1 0.999712 0.0239977 -1.37144e-06 -34 2 1 -0.922838436164024 -6.71653293600102 0 -0.000540211552184827 -0.00720558178676139 0.999973893540523 100 -0.656873457613187 1 1 0 0 -35 2 1 -0.900449675388239 -6.74472490341892 0 -0.00129942390380702 -0.00723819060895531 0.999972959681524 100 -0.656690465095721 1 1 6.92866e-14 -4.07787e-08 -36 2 1 -0.877997875401861 -6.772865320476 0 -0.0020585270930124 -0.00727453396963812 0.999971421402498 100 -0.656524361801985 1 1 0 0 -37 2 1 -0.855483045048592 -6.80095424161294 0 -0.0028174929135635 -0.00731461133993133 0.999969278625413 100 -0.656375138918065 1 0.999712 0.0239977 -1.41273e-06 -38 2 1 -0.832905192648739 -6.82899172181103 0 -0.00357629316244747 -0.00735842191452746 0.999966531316996 100 -0.656242787535916 1 0.999712 0.0239977 -1.41288e-06 -39 2 1 -0.810264325992606 -6.85697781658798 0 -0.00433489964335128 -0.00740596461171644 0.999963179488751 100 -0.656127298647561 1 1 6.92293e-14 -4.07622e-08 -40 2 1 -0.787560452334325 -6.88491258199081 0 -0.00509328417013704 -0.00745723807347104 0.999959223196965 100 -0.656028663161578 1 0.999712 0.0239977 -1.41319e-06 -41 2 1 -0.764793578385417 -6.91279607458935 0 -0.00585141857031574 -0.00751224066557304 0.999954662542706 100 -0.655946871893775 1 0.999712 0.0239977 -1.37261e-06 -42 2 1 -1.08402174611844 -6.56464718490071 0 0.00396730615576123 -0.00787816887628884 0.999961096711779 100 -0.658302635942164 1 1 0 0 -43 2 1 -1.061976852078 -6.59321909925124 0 0.00321179712247974 -0.0078885799004742 0.999963726675322 100 -0.657995966572003 1 1 6.90628e-14 -4.07128e-08 -44 2 1 -1.03986885631526 -6.62173926571009 0 0.00245623004243696 -0.00790269521649195 0.999965756584841 100 -0.657706216994939 1 0.999712 0.0239977 -1.41484e-06 -45 2 1 -1.01769776987737 -6.65020773527506 0 0.00170063279469101 -0.00792051592871412 0.999967186099385 100 -0.657433378959922 1 1 6.9042e-14 -4.07075e-08 -46 2 1 -0.99546360333031 -6.67862455951125 0 0.00094503327553647 -0.00794204286933592 0.999968014922062 100 -0.657177444115064 1 0.999712 0.0239977 -1.37433e-06 -47 2 1 -0.97316636675196 -6.70698979054534 0 0.000189459395096066 -0.00796727659810192 0.999968242800114 100 -0.656938404012067 1 0.999712 0.0239977 -1.37445e-06 -48 2 1 -0.950806069725532 -6.73530348106066 0 -0.000566060926092655 -0.00799621740209044 0.99996786952496 100 -0.656716250109525 1 1 0 0 -49 2 1 -0.928382721332649 -6.7635656842904 0 -0.00132149976049449 -0.00802886529553465 0.999966894932252 100 -0.656510973770992 1 1 6.90004e-14 -4.06943e-08 -50 2 1 -0.905896330146938 -6.7917764540129 0 -0.00207682917699723 -0.00806522001970805 0.999965318901912 100 -0.656322566263043 1 1 0 0 -51 2 1 -0.883346904227442 -6.81993584454478 0 -0.00283202124433452 -0.00810528104284991 0.999963141358164 100 -0.656151018766991 1 0.999712 0.0239977 -1.41566e-06 -52 2 1 -0.860734451112147 -6.84804391073577 0 -0.00358704803451 -0.00814904756014484 0.999960362269556 100 -0.655996322361602 1 0.999712 0.0239977 -1.41581e-06 -53 2 1 -0.838058977811818 -6.87610070796206 0 -0.00434188162622243 -0.00819651849375619 0.999956981648973 100 -0.655858468044016 1 0.999712 0.0239977 -1.37529e-06 -54 2 1 -0.815320490803379 -6.90410629212133 0 -0.00509649410828997 -0.00824769249289736 0.999952999553652 100 -0.655737446710532 1 1 0 0 -55 2 1 -0.792518996024238 -6.93206071962383 0 -0.00585085758307378 -0.00830256793397227 0.999948416085172 100 -0.655633249179346 1 0.999712 0.0239977 -1.37563e-06 -56 2 1 -1.11226703270404 -6.5830713859591 0 0.00391916421544796 -0.00866419465719614 0.999954784919196 100 -0.658262322289488 1 0.999712 0.0239977 -1.37696e-06 -57 2 1 -1.09018745762777 -6.61171286127509 0 0.00316739427744232 -0.00867480816838773 0.999957356749143 100 -0.657933485830995 1 0.999712 0.0239977 -1.41767e-06 -58 2 1 -1.06804478183276 -6.64030270517909 0 0.00241556816522481 -0.00868909861893014 0.99995933147085 100 -0.657621548894895 1 0.999712 0.0239977 -1.37714e-06 -59 2 1 -1.04583901558021 -6.66884096859882 0 0.00166371348749746 -0.00870706709053193 0.999960708748155 100 -0.657326503216836 1 0.999712 0.0239977 -1.41786e-06 -60 2 1 -1.02357016865168 -6.69732770302039 0 0.000911857869858047 -0.00872871439602474 0.999961488288533 100 -0.657048340434017 1 0.999712 0.0239977 -1.41796e-06 -61 2 1 -1.00123825034254 -6.7257629604829 0 0.00016002895144106 -0.00875404107910382 0.99996166984316 100 -0.656787052083928 1 1 0 0 -62 2 1 -0.978843269455291 -6.75414679357268 0 -0.000591745618446383 -0.00878304741410912 0.999961253206965 100 -0.656542629620162 1 0.999712 0.0239977 -1.37758e-06 -63 2 1 -0.956385234293025 -6.78247925541702 0 -0.00134343818369215 -0.00881573340585839 0.999960238218682 100 -0.656315064399905 1 1 0 0 -64 2 1 -0.933864152652941 -6.81076039968028 0 -0.0020950210847502 -0.00885209878953075 0.999958624760882 100 -0.656104347676433 1 0.999712 0.0239977 -1.37784e-06 -65 2 1 -0.911280031819894 -6.83899028055478 0 -0.00284646666201387 -0.0088921430305931 0.999956412760009 100 -0.655910470625258 1 0.999712 0.0239977 -1.37799e-06 -66 2 1 -0.88863287856021 -6.86716895275864 0 -0.00359774725919044 -0.00893586532478841 0.9999536021864 100 -0.655733424323444 1 1 6.86742e-14 -4.05983e-08 -67 2 1 -0.865922699115296 -6.8952964715271 0 -0.00434883522667647 -0.00898326459815818 0.9999501930543 100 -0.655573199766422 1 0.999712 0.0239977 -1.3783e-06 -68 2 1 -0.843149499195667 -6.92337289260758 0 -0.00509970292493246 -0.00903433950712812 0.999946185421869 100 -0.655429787849016 1 1 6.86447e-14 -4.05893e-08 -69 2 1 -0.820313283974741 -6.95139827225183 0 -0.00585032272785689 -0.00908908843863071 0.999941579391184 100 -0.655303179390444 1 0.999712 0.0239977 -1.41922e-06 -70 2 1 -1.14058246484977 -6.60156812585859 0 0.0038713468987973 -0.0094464529865681 0.999947887241711 100 -0.658205585980227 1 1 6.85025e-14 -4.05477e-08 -71 2 1 -1.11846811138964 -6.63027919026245 0 0.00312328918902758 -0.00945726643722861 0.999950401358076 100 -0.657854576995192 1 0.999712 0.0239977 -1.38005e-06 -72 2 1 -1.09629065805104 -6.6589387388209 0 0.00237517714907408 -0.00947172973883892 0.999952321298004 100 -0.657520447326988 1 0.999712 0.0239977 -1.38014e-06 -73 2 1 -1.07405011431964 -6.68754682239201 0 0.00162703812051942 -0.00948984395084052 0.999953646730059 100 -0.657203188689323 1 0.999712 0.0239977 -1.42078e-06 -74 2 1 -1.05174648920293 -6.71610349238207 0 0.000878899461508121 -0.00951160986705063 0.999954377366024 100 -0.656902792718597 1 0.999712 0.0239977 -1.42088e-06 -75 2 1 -1.02937979122412 -6.74460880074155 0 0.000130788543435483 -0.00953702801541351 0.99995451296096 100 -0.656619250940139 1 0.999712 0.0239977 -1.421e-06 -76 2 1 -1.00695002841542 -6.77306279995845 0 -0.000617267252367543 -0.00956609865778457 0.999954053313255 100 -0.656352554793102 1 0.999712 0.0239977 -1.38058e-06 -77 2 1 -0.984457208311709 -6.80146554305505 0 -0.00136524053795369 -0.00959882178976956 0.99995299826468 100 -0.656102695627055 1 0.999712 0.0239977 -1.38071e-06 -78 2 1 -0.961901337944052 -6.82981708357975 0 -0.00211310392208157 -0.00963519714060673 0.999951347700415 100 -0.655869664697548 1 1 6.8421e-14 -4.0523e-08 -79 2 1 -0.939282423833573 -6.85811747560211 0 -0.00286083001354019 -0.0096752241731034 0.999949101549091 100 -0.655653453170089 1 0.999712 0.0239977 -1.381e-06 -80 2 1 -0.91660047198509 -6.88636677370759 0 -0.00360839142447488 -0.00971890208361481 0.999946259782803 100 -0.655454052114123 1 1 6.83915e-14 -4.05148e-08 -81 2 1 -0.893855487881185 -6.91456503299004 0 -0.00435576077371357 -0.00976622980207748 0.99994282241713 100 -0.655271452526563 1 1 6.83776e-14 -4.05104e-08 -82 2 1 -0.871047476476098 -6.94271230904788 0 -0.00510291069009293 -0.00981720599208935 0.999938789511137 100 -0.655105645299841 1 0.999712 0.0239977 -1.42198e-06 -83 2 1 -0.848176442189724 -6.97080865797528 0 -0.00584981381578308 -0.00987182905103212 0.999934161167378 100 -0.654956621247379 1 1 6.83446e-14 -4.0501e-08 -84 2 1 -1.16896802992071 -6.62013733317061 0 0.003823851074669 -0.0102249703009429 0.999940412297305 100 -0.658132386070633 1 0.999712 0.0239977 -1.38296e-06 -85 2 1 -1.14681880168388 -6.64891801455297 0 0.00307947897962932 -0.0102359811771024 0.999942869117309 100 -0.657759199122552 1 1 0 0 -86 2 1 -1.12460647424839 -6.67764729475692 0 0.00233505437036234 -0.0102506150767586 0.99994473467869 100 -0.657402871351678 1 0.999712 0.0239977 -1.38314e-06 -87 2 1 -1.10233105633421 -6.70632522456804 0 0.00159060432452249 -0.0102688730374653 0.999946008654679 100 -0.65706339446001 1 1 6.81972e-14 -4.04569e-08 -88 2 1 -1.07999255618522 -6.73495185531235 0 0.000846155935998097 -0.0102907558343712 0.999946690761307 100 -0.656740760058483 1 0.999712 0.0239977 -1.4238e-06 -89 2 1 -1.05759098156252 -6.76352723885018 0 0.000101736311648405 -0.0103162639799609 0.999946780757465 100 -0.656434959676176 1 1 0 0 -90 2 1 -1.03512633973834 -6.79205142757295 0 -0.000642627431964248 -0.0103453977238556 0.999946278444957 100 -0.656145984738146 1 0.999712 0.0239977 -1.38359e-06 -91 2 1 -1.01259863748944 -6.82052447439483 0 -0.00138690817184548 -0.0103781570526456 0.999945183668542 100 -0.65587382658714 1 1 0 0 -92 2 1 -0.990007881091032 -6.84894643274977 0 -0.00213107878184356 -0.0104145416897843 0.999943496315975 100 -0.655618476470295 1 0.999712 0.0239977 -1.38385e-06 -93 2 1 -0.967354076310591 -6.8773173565833 0 -0.00287511213592593 -0.0104545510955212 0.999941216318038 100 -0.655379925549141 1 0.999712 0.0239977 -1.384e-06 -94 2 1 -0.944637228401783 -6.90563730034879 0 -0.00361898111145692 -0.010498184466887 0.999938343648554 100 -0.655158164895965 1 0.999712 0.0239977 -1.38415e-06 -95 2 1 -0.921857342098419 -6.93390631899929 0 -0.00436265859247613 -0.0105454407377223 0.99993487832441 100 -0.654953185490285 1 0.999712 0.0239977 -1.38431e-06 -96 2 1 -0.899014421608582 -6.96212446798355 0 -0.00510611747297661 -0.0105963185787584 0.999930820405557 100 -0.654764978237267 1 0.999712 0.0239977 -1.4249e-06 -97 2 1 -0.876108470608871 -6.99029180323843 0 -0.00584933066018154 -0.0106508163977453 0.99992616999501 100 -0.654593533945331 1 0.999712 0.0239977 -1.42507e-06 -98 2 1 -1.19742371542015 -6.63877893737234 0 0.00377667364846629 -0.0109997727976267 0.999932368580273 100 -0.658042682059204 1 1 6.79439e-14 -4.03821e-08 -99 2 1 -1.17523951695785 -6.66762926339648 0 0.00303596080523571 -0.0110109786183928 0.999934768518354 100 -0.657647311743176 1 0.999712 0.0239977 -1.38604e-06 -100 2 1 -1.15299221981838 -6.69642830201939 0 0.00229519723610546 -0.011025780893046 0.999936580101631 100 -0.657268780513732 1 0.999712 0.0239977 -1.38613e-06 -101 2 1 -1.13068183196635 -6.72517610395282 0 0.00155440975794707 -0.0110441806376391 0.999937803007941 100 -0.656907080071846 1 1 0 0 -102 2 1 -1.10830836089189 -6.75387272044209 0 0.000813625203544628 -0.0110661786089848 0.999938436957507 100 -0.656562202018222 1 1 6.79075e-14 -4.03713e-08 -103 2 1 -1.08587181360417 -6.78251820325696 0 7.2870418378712e-05 -0.0110917753043981 0.999938481712999 100 -0.656234137865795 1 0.999712 0.0239977 -1.42683e-06 -104 2 1 -1.06337219662537 -6.81111260469039 0 -0.000667827742594642 -0.0111209709615057 0.999937937079587 100 -0.65592287903894 1 0.999712 0.0239977 -1.38658e-06 -105 2 1 -1.04080951598426 -6.83965597754929 0 -0.00140844241816801 -0.0111537655580807 0.999936802904978 100 -0.655628416868808 1 1 6.78728e-14 -4.03611e-08 -106 2 1 -1.01818377721027 -6.8681483751526 0 -0.00214894674411016 -0.0111901588119421 0.999935079079464 100 -0.655350742594351 1 0.999712 0.0239977 -1.38685e-06 -107 2 1 -0.995494985327185 -6.89658985132161 0 -0.00288931385639512 -0.0112301501808825 0.99993276553594 100 -0.655089847378122 1 0.999712 0.0239977 -1.387e-06 -108 2 1 -0.972743144847522 -6.9249804603767 0 -0.00362951689443328 -0.011273738862664 0.999929862249933 100 -0.654845722288087 1 0.999712 0.0239977 -1.4275e-06 -109 2 1 -0.949928259766392 -6.95332025713116 0 -0.00436952900430213 -0.0113209237950432 0.999926369239609 100 -0.65461835830115 1 1 6.7819e-14 -4.03447e-08 -110 2 1 -0.927050333555744 -6.98160929688429 0 -0.00510932334197728 -0.0113717036558493 0.999922286565787 100 -0.654407746315655 1 1 6.78017e-14 -4.03402e-08 -111 2 1 -0.904109369158816 -7.00984763541618 0 -0.00584887307656198 -0.011426076863116 0.999917614331927 100 -0.654213877143548 1 0.999712 0.0239977 -1.38765e-06 -112 2 1 -1.22594950898767 -6.65749286883399 0 0.00372981156163036 -0.0117708864373042 0.999923764463169 100 -0.657936433923169 1 0.999712 0.0239977 -1.38894e-06 -113 2 1 -1.20373024578362 -6.68641286693899 0 0.00299273185496552 -0.0117822847543658 0.999926107930987 100 -0.657518874828156 1 0.999712 0.0239977 -1.42933e-06 -114 2 1 -1.18144788426831 -6.71528169054006 0 0.00225560318353396 -0.0117972532105024 0.999927865933821 100 -0.657118134804364 1 0.999712 0.0239977 -1.38913e-06 -115 2 1 -1.15910243166077 -6.7440993902756 0 0.00151845210652559 -0.0118157928006384 0.999929038154055 100 -0.656734205536054 1 1 0 0 -116 2 1 -1.13669389470727 -6.77286601730747 0 0.000781305198727638 -0.0118379042635752 0.999929624316048 100 -0.656367078614721 1 1 0 0 -117 2 1 -1.11422227967499 -6.80158162331634 0 4.41890473544411e-05 -0.0118635880817462 0.9999296241862 100 -0.65601674554614 1 0.999712 0.0239977 -1.42974e-06 -118 2 1 -1.09168759234599 -6.83024626049453 0 -0.000692869751126884 -0.0118928444810198 0.999929037572996 100 -0.655683197742746 1 1 6.76108e-14 -4.02825e-08 -119 2 1 -1.06908983801092 -6.85885998154278 0 -0.00142984459417471 -0.011925673430545 0.999927864327055 100 -0.655366426528758 1 0.999712 0.0239977 -1.38971e-06 -120 2 1 -1.04642902146318 -6.88742283966266 0 -0.00216670887635397 -0.0119620746426473 0.99992610434116 100 -0.655066423152107 1 0.999712 0.0239977 -1.38985e-06 -121 2 1 -1.02370514699303 -6.91593488855256 0 -0.00290343599251905 -0.0120020475727722 0.999923757550294 100 -0.654783178748175 1 0.999712 0.0239977 -1.38999e-06 -122 2 1 -1.00091821838153 -6.94439618240045 0 -0.00363999934099817 -0.0120455914194633 0.999920823931652 100 -0.654516684390046 1 0.999712 0.0239977 -1.43041e-06 -123 2 1 -0.978068238894965 -6.97280677587847 0 -0.00437637232677806 -0.0120927051244013 0.999917303504661 100 -0.654266931055304 1 0.999712 0.0239977 -1.39031e-06 -124 2 1 -0.955155211279024 -7.00116672413805 0 -0.00511252836468827 -0.0121433873724797 0.999913196330983 100 -0.654033909640702 1 0.999712 0.0239977 -1.39047e-06 -125 2 1 -0.932179137753402 -7.02947608280158 0 -0.00584844088258451 -0.0121976365919313 0.999908502514512 100 -0.653817610964097 1 0.999712 0.0239977 -1.39065e-06 -126 2 1 -1.25454539839732 -6.67627905880932 0 0.00368326179114333 -0.0125383369466217 0.999914608198716 100 -0.657813602068018 1 0.999712 0.0239977 -1.43215e-06 -127 2 1 -1.23229097685682 -6.70526875621181 0 0.00294978935061 -0.0125499253437735 0.999916895605157 100 -0.65737384880947 1 0.999712 0.0239977 -1.39202e-06 -128 2 1 -1.20997345721763 -6.73420739113899 0 0.00221626967967569 -0.0125650578169715 0.999918600422436 100 -0.656950894658621 1 1 0 0 -129 2 1 -1.18759284596316 -6.76309501415493 0 0.00148272908290562 -0.012583735340384 0.999919722337423 100 -0.656544731299391 1 0.999712 0.0239977 -1.39222e-06 -130 2 1 -1.1651491491054 -6.79193167633801 0 0.000749193880153572 -0.0126059586351207 0.999920261078562 100 -0.656155350315885 1 0.999712 0.0239977 -1.39233e-06 -131 2 1 -1.14264237217941 -6.82071742927721 0 1.56904034364534e-05 -0.0126317281690118 0.999920216415928 100 -0.655782743192731 1 0.999712 0.0239977 -1.39245e-06 -132 2 1 -1.12007252023677 -6.84945232506605 0 -0.000717755006194474 -0.0126610441564003 0.999919588161279 100 -0.655426901337933 1 1 6.73333e-14 -4.02007e-08 -133 2 1 -1.09743959783983 -6.87813641629681 0 -0.00145111600178647 -0.0126939065579991 0.999918376168098 100 -0.655087816075707 1 0.999712 0.0239977 -1.3927e-06 -134 2 1 -1.07474360905579 -6.90676975605546 0 -0.00218436623362065 -0.0127303150807881 0.99991658033163 100 -0.654765478639092 1 0.999712 0.0239977 -1.43303e-06 -135 2 1 -1.05198455745088 -6.93535239791561 0 -0.00291747935234952 -0.0127702691779554 0.999914200588906 100 -0.654459880168588 1 1 6.72969e-14 -4.01894e-08 -136 2 1 -1.02916244608466 -6.96388439593331 0 -0.00365042901213569 -0.0128137680488876 0.999911236918766 100 -0.654171011730909 1 0.999712 0.0239977 -1.39314e-06 -137 2 1 -1.00627727750421 -6.99236580463998 0 -0.00438318887379066 -0.0128608106391952 0.999907689341871 100 -0.653898864304438 1 0.999712 0.0239977 -1.43348e-06 -138 2 1 -0.983329053738657 -7.02079667903811 0 -0.00511573260791383 -0.0129113956407972 0.999903557920708 100 -0.653643428780015 1 0.999712 0.0239977 -1.39347e-06 -139 2 1 -0.960317776293842 -7.04917707459516 0 -0.00584803389802974 -0.0129655214920475 0.99989884275959 100 -0.653404695972995 1 0.999712 0.0239977 -1.43381e-06 -140 2 1 -1.28321137155523 -6.69513743942334 0 0.00363702134903943 -0.0133021498207225 0.999904907921675 100 -0.657674147367061 1 0.999712 0.0239977 -1.39491e-06 -141 2 1 -1.2609216989941 -6.72419686312056 0 0.00290713054618408 -0.0133139259133879 0.99990713967286 100 -0.657212194559861 1 1 6.7113e-14 -4.01344e-08 -142 2 1 -1.23856892839603 -6.75320533551312 0 0.00217719422094568 -0.0133292202678912 0.99990879169671 100 -0.656767020976076 1 0.999712 0.0239977 -1.43523e-06 -143 2 1 -1.21615306551831 -6.78216290708898 0 0.00144723842627915 -0.0133480338380006 0.999909863684521 100 -0.656338618273139 1 0.999712 0.0239977 -1.3952e-06 -144 2 1 -1.19367411564846 -6.81106962884378 0 0.000717289230124848 -0.0133703673274577 0.999910355368765 100 -0.655926978024354 1 0.999712 0.0239977 -1.39531e-06 -145 2 1 -1.17113208359881 -6.83992555227348 0 -1.26272876724512e-05 -0.0133962211897557 0.999910266523145 100 -0.655532091722989 1 1 6.70731e-14 -4.01228e-08 -146 2 1 -1.14852697370019 -6.86873072937168 0 -0.00074248503844756 -0.0134255956279432 0.999909596962647 100 -0.655153950762951 1 0.999712 0.0239977 -1.39556e-06 -147 2 1 -1.12585878979628 -6.89748521262225 0 -0.00147225792780306 -0.013458490594483 0.999908346543578 100 -0.654792546451972 1 0.999712 0.0239977 -1.4358e-06 -148 2 1 -1.10312753523756 -6.92618905499545 0 -0.00220191985870001 -0.0134949057911467 0.999906515163605 100 -0.654447870026843 1 0.999712 0.0239977 -1.39583e-06 -149 2 1 -1.08033321287597 -6.95484230993958 0 -0.00293144473455043 -0.0135348406689657 0.999904102761777 100 -0.654119912626584 1 0.999712 0.0239977 -1.39597e-06 -150 2 1 -1.05747582505898 -6.98344503137928 0 -0.00366080646231118 -0.0135782944282157 0.99990110931855 100 -0.653808665303359 1 0.999712 0.0239977 -1.39613e-06 -151 2 1 -1.03455537362414 -7.01199727370559 0 -0.00438997895557809 -0.0136252660184492 0.999897534855795 100 -0.653514119040437 1 0.999712 0.0239977 -1.39629e-06 -152 2 1 -1.01157185989362 -7.04049909177254 0 -0.00511893613767965 -0.0136757541385754 0.999893379436808 100 -0.653236264735369 1 0.999712 0.0239977 -1.39646e-06 -153 2 1 -0.988525284668786 -7.06895054089132 0 -0.00584765194476977 -0.0137297572369823 0.999888643166301 100 -0.652975093197938 1 0.999712 0.0239977 -1.39663e-06 -154 2 1 -1.31194741649794 -6.71406794366084 0 0.00359108728192329 -0.0140623503257651 0.999894671650694 100 -0.657518031114705 1 0.999712 0.0239977 -1.39789e-06 -155 2 1 -1.28962240113177 -6.74319712043347 0 0.00286475272748302 -0.0140743117605337 0.999896848149987 100 -0.657033873396585 1 1 6.68424e-14 -4.00535e-08 -156 2 1 -1.26723428764195 -6.77227545622394 0 0.00213837433274231 -0.0140897658888252 0.999898447769778 100 -0.656566475068303 1 0.999712 0.0239977 -1.39808e-06 -157 2 1 -1.24478308106899 -6.80130300144412 0 0.00141197790201769 -0.0141087136443602 0.999899470205733 100 -0.65611582778638 1 0.999712 0.0239977 -1.43823e-06 -158 2 1 -1.22226878598556 -6.83027980700464 0 0.000685589254313549 -0.0141311557138246 0.999899915194299 100 -0.655681923107977 1 0.999712 0.0239977 -1.43834e-06 -159 2 1 -1.19969140649069 -6.85920592430928 0 -4.0765779714534e-05 -0.0141570925366433 0.999899782512758 100 -0.655264752507492 1 1 0 0 -160 2 1 -1.1770509462039 -6.88808140525083 0 -0.000767061360800432 -0.0141865243047935 0.999899071979277 100 -0.654864307387015 1 0.999712 0.0239977 -1.43858e-06 -161 2 1 -1.15434740825957 -6.91690630220468 0 -0.00149327164411142 -0.0142194509626667 0.999897783452948 100 -0.654480579047913 1 0.999712 0.0239977 -1.39867e-06 -162 2 1 -1.13158079530112 -6.94568066802387 0 -0.00221937078229488 -0.0142558722069682 0.999895916833822 100 -0.654113558710606 1 0.999712 0.0239977 -1.39881e-06 -163 2 1 -1.10875110947548 -6.97440455603311 0 -0.00294533292852666 -0.014295787486663 0.999893472062938 100 -0.653763237514795 1 0.999712 0.0239977 -1.43898e-06 -164 2 1 -1.08585835242752 -7.0030780200241 0 -0.00367113223956093 -0.0143391960029677 0.999890449122337 100 -0.653429606523105 1 0.999712 0.0239977 -1.43913e-06 -165 2 1 -1.06290252529473 -7.03170111424805 0 -0.00439674287877994 -0.0143860967093845 0.99988684803508 100 -0.653112656699932 1 0.999712 0.0239977 -1.43929e-06 -166 2 1 -1.03988362870162 -7.06027389341139 0 -0.00512213901924388 -0.0144364883117735 0.999882668865248 100 -0.652812378947601 1 0.999712 0.0239977 -1.39944e-06 -167 2 1 -1.01680166275467 -7.08879641266906 0 -0.00584729484673913 -0.0144903692684821 0.999877911717945 100 -0.652528764079079 1 1 0 0 -168 2 1 -1.34075352139053 -6.7330705053569 0 0.00354545667049626 -0.0148189635014079 0.999883907290113 100 -0.657345215033047 1 0.999712 0.0239977 -1.40087e-06 -169 2 1 -1.31839307232396 -6.76226946177101 0 0.00282265321164688 -0.0148311079555745 0.999886028938127 100 -0.656838847055724 1 0.999712 0.0239977 -1.40096e-06 -170 2 1 -1.29596952490091 -6.79141768668853 0 0.00209980756904966 -0.0148467197779593 0.999887576540487 100 -0.656349218698097 1 1 6.65665e-14 -3.99704e-08 -171 2 1 -1.27348288345448 -6.82051523044375 0 0.00137694530131284 -0.0148657998825836 0.99988854979717 100 -0.655876321602364 1 0.999712 0.0239977 -1.44113e-06 -172 2 1 -1.25093315185158 -6.84956214386103 0 0.000654091981440928 -0.0148883489393764 0.999888948448546 100 -0.655420147325685 1 0.999712 0.0239977 -1.40127e-06 -173 2 1 -1.22832033348742 -6.87855847825163 0 -6.87268061591214e-05 -0.0149143673739601 0.999888772275427 100 -0.654980687334728 1 1 6.65353e-14 -3.99613e-08 -174 2 1 -1.20564443127956 -6.90750428540764 0 -0.000791485468675056 -0.014943855367462 0.999888021099118 100 -0.654557933016804 1 0.999712 0.0239977 -1.44148e-06 -175 2 1 -1.18290544766238 -6.93639961759472 0 -0.00151415840789029 -0.0149768128563787 0.999886694781454 100 -0.654151875670095 1 0.999712 0.0239977 -1.40165e-06 -176 2 1 -1.16010338458143 -6.96524452754939 0 -0.00223672002318701 -0.0150132395324807 0.999884793224839 100 -0.653762506513885 1 0.999712 0.0239977 -1.44174e-06 -177 2 1 -1.13723824348809 -6.99403906847243 0 -0.00295914471455154 -0.0150531348427632 0.999882316372264 100 -0.653389816683102 1 1 6.6485e-14 -3.99466e-08 -178 2 1 -1.11431002533397 -7.02278329402236 0 -0.00368140688558041 -0.0150964979894326 0.999879264207333 100 -0.653033797232638 1 0.999712 0.0239977 -1.40209e-06 -179 2 1 -1.09131873056556 -7.05147725831081 0 -0.00440348094648692 -0.0151433279299416 0.999875636754272 100 -0.652694439135985 1 0.999712 0.0239977 -1.44219e-06 -180 2 1 -1.06826435911921 -7.08012101589681 0 -0.00512534131710753 -0.0151936233770717 0.999871434077931 100 -0.652371733285008 1 1 6.64434e-14 -3.99335e-08 -181 2 1 -1.04514691041563 -7.10871462177977 0 -0.00584696242990664 -0.0152473827990456 0.999866656283788 100 -0.652065670502225 1 0.999712 0.0239977 -1.4026e-06 -182 2 1 -1.3696296745246 -6.7521450591835 0 0.00350012662908993 -0.0155720141632544 0.999872622631743 100 -0.657155661270281 1 0.999712 0.0239977 -1.40384e-06 -183 2 1 -1.34723370174095 -6.78141382159509 0 0.00278082934673156 -0.0155843393443738 0.999874689826352 100 -0.656627077696612 1 0.999712 0.0239977 -1.44383e-06 -184 2 1 -1.32477463022408 -6.81063196116715 0 0.00206149151204627 -0.0156001068085696 0.999876185795175 100 -0.656115214033889 1 0.999712 0.0239977 -1.40403e-06 -185 2 1 -1.30225246360884 -6.839799528156 0 0.00134213844082329 -0.0156193174505035 0.999877110242447 100 -0.655620061914306 1 1 6.62907e-14 -3.98874e-08 -186 2 1 -1.27966720506574 -6.86891657330051 0 0.000622795462961707 -0.0156419719236536 0.999877462912407 100 -0.655141612888883 1 1 0 0 -187 2 1 -1.25701885729512 -6.89798314781783 0 -9.65120804802414e-05 -0.0156680706400902 0.99987724358935 100 -0.65467985841633 1 0.999712 0.0239977 -1.44425e-06 -188 2 1 -1.23430742252191 -6.92699930339783 0 -0.000815758840240645 -0.0156976137703095 0.999876452097675 100 -0.654234789875318 1 0.999712 0.0239977 -1.40449e-06 -189 2 1 -1.21153290248965 -6.95596509219734 0 -0.00153491946181168 -0.0157306012430865 0.999875088301922 100 -0.65380639856221 1 0.999712 0.0239977 -1.40463e-06 -190 2 1 -1.18869529845526 -6.98488056683662 0 -0.00225396858840053 -0.0157670327453917 0.99987315210681 100 -0.653394675688105 1 1 6.62335e-14 -3.98705e-08 -191 2 1 -1.16579461118361 -7.01374578039096 0 -0.00297288086389185 -0.0158069077223348 0.999870643457256 100 -0.652999612386793 1 0.999712 0.0239977 -1.44478e-06 -192 2 1 -1.14283084094216 -7.04256078638691 0 -0.0036916309358113 -0.0158502253771608 0.999867562338397 100 -0.652621199710893 1 0.999712 0.0239977 -1.44493e-06 -193 2 1 -1.11980398749581 -7.0713256387963 0 -0.0044101934582894 -0.0158969846712839 0.9998639087756 100 -0.652259428634579 1 0.999712 0.0239977 -1.44509e-06 -194 2 1 -1.09671405010162 -7.10004039203087 0 -0.00512854309502497 -0.0159471843243634 0.99985968283447 100 -0.651914290046534 1 0.999712 0.0239977 -1.4054e-06 -195 2 1 -1.07356102750377 -7.12870510093567 0 -0.00584665452224754 -0.0160008228144232 0.999854884620843 100 -0.651585774774048 1 1 0 0 -196 2 1 -0.999706888191881 -6.5098105428976 0 0.00411371158906159 -0.00549721881479964 0.999976428703329 100 -0.658325457697856 1 0.999712 0.0239977 -1.40588e-06 -197 2 1 -0.977765443441836 -6.53817394543293 0 0.00334682148727753 -0.00550700674938459 0.999979235615717 100 -0.65808525681382 1 1 6.99284e-14 -4.09673e-08 -198 2 1 -0.95576089295319 -6.56648524505283 0 0.00257986754533321 -0.00552058264981287 0.999981433552971 100 -0.657862036918914 1 0.999712 0.0239977 -1.40605e-06 -199 2 1 -0.933693250194873 -6.59474449295807 0 0.00181287847324792 -0.00553794769090044 0.999983022159384 100 -0.657655789799264 1 0.999712 0.0239977 -1.36518e-06 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -0.999706888191881 -6.5098105428976 0 0.00411371158906159 -0.00549721881479964 0.999976428703329 100 -0.658325457697856 1 0.999712 0.0239977 -1.40588e-06 +1 2 1 -0.977765443441836 -6.53817394543293 0 0.00334682148727753 -0.00550700674938459 0.999979235615717 100 -0.65808525681382 1 1 6.99284e-14 -4.09673e-08 +2 2 1 -0.95576089295319 -6.56648524505283 0 0.00257986754533321 -0.00552058264981287 0.999981433552971 100 -0.657862036918914 1 0.999712 0.0239977 -1.40605e-06 +3 2 1 -0.933693250194873 -6.59474449295807 0 0.00181287847324792 -0.00553794769090044 0.999983022159384 100 -0.657655789799264 1 0.999712 0.0239977 -1.36518e-06 +4 2 1 -0.911562528149523 -6.62295174094468 0 0.00104588299934056 -0.00555910276507499 0.999984001124618 100 -0.657466507147888 1 1 6.99007e-14 -4.0959e-08 +5 2 1 -0.889368739306478 -6.65110704139842 0 0.000278909866668283 -0.00558404848209365 0.999984370183773 100 -0.657294180543659 1 0.999712 0.0239977 -1.3654e-06 +6 2 1 -0.867111895654595 -6.6792104472889 0 -0.000488012170539801 -0.00561278516880498 0.999984129117443 100 -0.657138801479618 1 1 0 0 +7 2 1 -0.844792008674996 -6.70726201216396 0 -0.00125485435045336 -0.00564531286896008 0.999983277751769 100 -0.657000361346036 1 0.999712 0.0239977 -1.36565e-06 +8 2 1 -0.822409089334367 -6.73526179014296 0 -0.00202158790721535 -0.00568163134308841 0.999981815958478 100 -0.656878851428246 1 0.999712 0.0239977 -1.36578e-06 +9 2 1 -0.799963148077868 -6.76320983591234 0 -0.00278818407451853 -0.00572174006841536 0.999979743654918 100 -0.656774262922795 1 1 0 0 +10 2 1 -0.777454194822279 -6.79110620471798 0 -0.003554614089184 -0.00576563823883447 0.999977060804085 100 -0.656686586932437 1 0.999712 0.0239977 -1.36607e-06 +11 2 1 -0.754882238949506 -6.81895095235962 0 -0.00432084919474022 -0.00581332476494123 0.999973767414633 100 -0.656615814458519 1 0.999712 0.0239977 -1.36623e-06 +12 2 1 -0.732247289299794 -6.84674413518538 0 -0.00508686064500176 -0.00586479827411068 0.999969863540888 100 -0.656561936407456 1 0.999712 0.0239977 -1.36639e-06 +13 2 1 -0.709549354165175 -6.87448581008332 0 -0.00585261970764687 -0.00592005711062737 0.999965349282847 100 -0.656524943603813 1 0.999712 0.0239977 -1.40749e-06 +14 2 1 -1.02774166087204 -6.5280166896232 0 0.00406457661773941 -0.00629470800168053 0.999971927540015 100 -0.658334161495645 1 0.999712 0.0239977 -1.36793e-06 +15 2 1 -1.00576583297938 -6.55644956734554 0 0.00330150776366109 -0.0063047062724147 0.999974675041976 100 -0.65807180992465 1 0.999712 0.0239977 -1.36801e-06 +16 2 1 -0.983726900857219 -6.58483046143578 0 0.00253837703031754 -0.00631846434497574 0.999976816556451 100 -0.657826418882792 1 1 6.96283e-14 -4.08795e-08 +17 2 1 -0.961624877156332 -6.6131594230284 0 0.00177521284737778 -0.00633598337027957 0.999978351732715 100 -0.657597980140963 1 0.999712 0.0239977 -1.40908e-06 +18 2 1 -0.939459774043103 -6.64143650384386 0 0.00101204366244869 -0.00635726422031352 0.999979280264976 100 -0.657386485366942 1 0.999712 0.0239977 -1.36831e-06 +19 2 1 -0.917231603192267 -6.66966175618163 0 0.000248897937566095 -0.00638230748784779 0.999979601892432 100 -0.657191926150631 1 0.999712 0.0239977 -1.40929e-06 +20 2 1 -0.894940375779925 -6.69783523291721 0 -0.000514195854319689 -0.00641111348620677 0.99997931639934 100 -0.657014293962675 1 0.999712 0.0239977 -1.40941e-06 +21 2 1 -0.872586102476708 -6.72595698749315 0 -0.00127720923286293 -0.0064436822490897 0.999978423615054 100 -0.65685358017663 1 0.999712 0.0239977 -1.36867e-06 +22 2 1 -0.850168793440711 -6.75402707391672 0 -0.00204011371384439 -0.00648001353043953 0.999976923414075 100 -0.656709776083744 1 0.999712 0.0239977 -1.3688e-06 +23 2 1 -0.82768845831098 -6.78204554675063 0 -0.00280288081269596 -0.00652010680437187 0.999974815716081 100 -0.65658287287124 1 0.999712 0.0239977 -1.36894e-06 +24 2 1 -0.805145106200702 -6.81001246110894 0 -0.00356548204802691 -0.00656396126514913 0.999972100485946 100 -0.656472861629254 1 1 6.95347e-14 -4.08515e-08 +25 2 1 -0.782538745690555 -6.83792787265009 0 -0.00432788894515059 -0.00661157582720584 0.999968777733765 100 -0.656379733365497 1 0.999712 0.0239977 -1.36925e-06 +26 2 1 -0.759869384822231 -6.8657918375716 0 -0.00509007303961078 -0.00666294912523113 0.999964847514855 100 -0.656303478975587 1 0.999712 0.0239977 -1.36942e-06 +27 2 1 -0.737137031092285 -6.89360441260218 0 -0.00585200588070723 -0.00671807951430636 0.999960309929755 100 -0.656244089282268 1 1 0 0 +28 2 1 -1.05584661786842 -6.54629559503002 0 0.00401577588793356 -0.00708834896543586 0.999966813875822 100 -0.658326568379948 1 0.999712 0.0239977 -1.41174e-06 +29 2 1 -1.03383630654876 -6.57479797677044 0 0.00325650063581292 -0.00709855492099948 0.99996950239577 100 -0.658042060640469 1 0.999712 0.0239977 -1.37103e-06 +30 2 1 -1.01176289233742 -6.60324849321658 0 0.00249716543540193 -0.00711249278814369 0.99997158790194 100 -0.657774493030388 1 0.999712 0.0239977 -1.41191e-06 +31 2 1 -0.989626387078067 -6.63164719543485 0 0.00173779843939852 -0.00713016369430863 0.999973070048527 100 -0.657523857312754 1 0.999712 0.0239977 -1.37122e-06 +32 2 1 -0.967426802131504 -6.65999413506797 0 0.000978427818084425 -0.00715156849140358 0.99997394853422 100 -0.657290145141246 1 0.999712 0.0239977 -1.37132e-06 +33 2 1 -0.945164148368727 -6.68828936433044 0 0.000219081755866889 -0.00717670775553164 0.999974223102264 100 -0.657073348085305 1 0.999712 0.0239977 -1.37144e-06 +34 2 1 -0.922838436164024 -6.71653293600102 0 -0.000540211552184827 -0.00720558178676139 0.999973893540523 100 -0.656873457613187 1 1 0 0 +35 2 1 -0.900449675388239 -6.74472490341892 0 -0.00129942390380702 -0.00723819060895531 0.999972959681524 100 -0.656690465095721 1 1 6.92866e-14 -4.07787e-08 +36 2 1 -0.877997875401861 -6.772865320476 0 -0.0020585270930124 -0.00727453396963812 0.999971421402498 100 -0.656524361801985 1 1 0 0 +37 2 1 -0.855483045048592 -6.80095424161294 0 -0.0028174929135635 -0.00731461133993133 0.999969278625413 100 -0.656375138918065 1 0.999712 0.0239977 -1.41273e-06 +38 2 1 -0.832905192648739 -6.82899172181103 0 -0.00357629316244747 -0.00735842191452746 0.999966531316996 100 -0.656242787535916 1 0.999712 0.0239977 -1.41288e-06 +39 2 1 -0.810264325992606 -6.85697781658798 0 -0.00433489964335128 -0.00740596461171644 0.999963179488751 100 -0.656127298647561 1 1 6.92293e-14 -4.07622e-08 +40 2 1 -0.787560452334325 -6.88491258199081 0 -0.00509328417013704 -0.00745723807347104 0.999959223196965 100 -0.656028663161578 1 0.999712 0.0239977 -1.41319e-06 +41 2 1 -0.764793578385417 -6.91279607458935 0 -0.00585141857031574 -0.00751224066557304 0.999954662542706 100 -0.655946871893775 1 0.999712 0.0239977 -1.37261e-06 +42 2 1 -1.08402174611844 -6.56464718490071 0 0.00396730615576123 -0.00787816887628884 0.999961096711779 100 -0.658302635942164 1 1 0 0 +43 2 1 -1.061976852078 -6.59321909925124 0 0.00321179712247974 -0.0078885799004742 0.999963726675322 100 -0.657995966572003 1 1 6.90628e-14 -4.07128e-08 +44 2 1 -1.03986885631526 -6.62173926571009 0 0.00245623004243696 -0.00790269521649195 0.999965756584841 100 -0.657706216994939 1 0.999712 0.0239977 -1.41484e-06 +45 2 1 -1.01769776987737 -6.65020773527506 0 0.00170063279469101 -0.00792051592871412 0.999967186099385 100 -0.657433378959922 1 1 6.9042e-14 -4.07075e-08 +46 2 1 -0.99546360333031 -6.67862455951125 0 0.00094503327553647 -0.00794204286933592 0.999968014922062 100 -0.657177444115064 1 0.999712 0.0239977 -1.37433e-06 +47 2 1 -0.97316636675196 -6.70698979054534 0 0.000189459395096066 -0.00796727659810192 0.999968242800114 100 -0.656938404012067 1 0.999712 0.0239977 -1.37445e-06 +48 2 1 -0.950806069725532 -6.73530348106066 0 -0.000566060926092655 -0.00799621740209044 0.99996786952496 100 -0.656716250109525 1 1 0 0 +49 2 1 -0.928382721332649 -6.7635656842904 0 -0.00132149976049449 -0.00802886529553465 0.999966894932252 100 -0.656510973770992 1 1 6.90004e-14 -4.06943e-08 +50 2 1 -0.905896330146938 -6.7917764540129 0 -0.00207682917699723 -0.00806522001970805 0.999965318901912 100 -0.656322566263043 1 1 0 0 +51 2 1 -0.883346904227442 -6.81993584454478 0 -0.00283202124433452 -0.00810528104284991 0.999963141358164 100 -0.656151018766991 1 0.999712 0.0239977 -1.41566e-06 +52 2 1 -0.860734451112147 -6.84804391073577 0 -0.00358704803451 -0.00814904756014484 0.999960362269556 100 -0.655996322361602 1 0.999712 0.0239977 -1.41581e-06 +53 2 1 -0.838058977811818 -6.87610070796206 0 -0.00434188162622243 -0.00819651849375619 0.999956981648973 100 -0.655858468044016 1 0.999712 0.0239977 -1.37529e-06 +54 2 1 -0.815320490803379 -6.90410629212133 0 -0.00509649410828997 -0.00824769249289736 0.999952999553652 100 -0.655737446710532 1 1 0 0 +55 2 1 -0.792518996024238 -6.93206071962383 0 -0.00585085758307378 -0.00830256793397227 0.999948416085172 100 -0.655633249179346 1 0.999712 0.0239977 -1.37563e-06 +56 2 1 -1.11226703270404 -6.5830713859591 0 0.00391916421544796 -0.00866419465719614 0.999954784919196 100 -0.658262322289488 1 0.999712 0.0239977 -1.37696e-06 +57 2 1 -1.09018745762777 -6.61171286127509 0 0.00316739427744232 -0.00867480816838773 0.999957356749143 100 -0.657933485830995 1 0.999712 0.0239977 -1.41767e-06 +58 2 1 -1.06804478183276 -6.64030270517909 0 0.00241556816522481 -0.00868909861893014 0.99995933147085 100 -0.657621548894895 1 0.999712 0.0239977 -1.37714e-06 +59 2 1 -1.04583901558021 -6.66884096859882 0 0.00166371348749746 -0.00870706709053193 0.999960708748155 100 -0.657326503216836 1 0.999712 0.0239977 -1.41786e-06 +60 2 1 -1.02357016865168 -6.69732770302039 0 0.000911857869858047 -0.00872871439602474 0.999961488288533 100 -0.657048340434017 1 0.999712 0.0239977 -1.41796e-06 +61 2 1 -1.00123825034254 -6.7257629604829 0 0.00016002895144106 -0.00875404107910382 0.99996166984316 100 -0.656787052083928 1 1 0 0 +62 2 1 -0.978843269455291 -6.75414679357268 0 -0.000591745618446383 -0.00878304741410912 0.999961253206965 100 -0.656542629620162 1 0.999712 0.0239977 -1.37758e-06 +63 2 1 -0.956385234293025 -6.78247925541702 0 -0.00134343818369215 -0.00881573340585839 0.999960238218682 100 -0.656315064399905 1 1 0 0 +64 2 1 -0.933864152652941 -6.81076039968028 0 -0.0020950210847502 -0.00885209878953075 0.999958624760882 100 -0.656104347676433 1 0.999712 0.0239977 -1.37784e-06 +65 2 1 -0.911280031819894 -6.83899028055478 0 -0.00284646666201387 -0.0088921430305931 0.999956412760009 100 -0.655910470625258 1 0.999712 0.0239977 -1.37799e-06 +66 2 1 -0.88863287856021 -6.86716895275864 0 -0.00359774725919044 -0.00893586532478841 0.9999536021864 100 -0.655733424323444 1 1 6.86742e-14 -4.05983e-08 +67 2 1 -0.865922699115296 -6.8952964715271 0 -0.00434883522667647 -0.00898326459815818 0.9999501930543 100 -0.655573199766422 1 0.999712 0.0239977 -1.3783e-06 +68 2 1 -0.843149499195667 -6.92337289260758 0 -0.00509970292493246 -0.00903433950712812 0.999946185421869 100 -0.655429787849016 1 1 6.86447e-14 -4.05893e-08 +69 2 1 -0.820313283974741 -6.95139827225183 0 -0.00585032272785689 -0.00908908843863071 0.999941579391184 100 -0.655303179390444 1 0.999712 0.0239977 -1.41922e-06 +70 2 1 -1.14058246484977 -6.60156812585859 0 0.0038713468987973 -0.0094464529865681 0.999947887241711 100 -0.658205585980227 1 1 6.85025e-14 -4.05477e-08 +71 2 1 -1.11846811138964 -6.63027919026245 0 0.00312328918902758 -0.00945726643722861 0.999950401358076 100 -0.657854576995192 1 0.999712 0.0239977 -1.38005e-06 +72 2 1 -1.09629065805104 -6.6589387388209 0 0.00237517714907408 -0.00947172973883892 0.999952321298004 100 -0.657520447326988 1 0.999712 0.0239977 -1.38014e-06 +73 2 1 -1.07405011431964 -6.68754682239201 0 0.00162703812051942 -0.00948984395084052 0.999953646730059 100 -0.657203188689323 1 0.999712 0.0239977 -1.42078e-06 +74 2 1 -1.05174648920293 -6.71610349238207 0 0.000878899461508121 -0.00951160986705063 0.999954377366024 100 -0.656902792718597 1 0.999712 0.0239977 -1.42088e-06 +75 2 1 -1.02937979122412 -6.74460880074155 0 0.000130788543435483 -0.00953702801541351 0.99995451296096 100 -0.656619250940139 1 0.999712 0.0239977 -1.421e-06 +76 2 1 -1.00695002841542 -6.77306279995845 0 -0.000617267252367543 -0.00956609865778457 0.999954053313255 100 -0.656352554793102 1 0.999712 0.0239977 -1.38058e-06 +77 2 1 -0.984457208311709 -6.80146554305505 0 -0.00136524053795369 -0.00959882178976956 0.99995299826468 100 -0.656102695627055 1 0.999712 0.0239977 -1.38071e-06 +78 2 1 -0.961901337944052 -6.82981708357975 0 -0.00211310392208157 -0.00963519714060673 0.999951347700415 100 -0.655869664697548 1 1 6.8421e-14 -4.0523e-08 +79 2 1 -0.939282423833573 -6.85811747560211 0 -0.00286083001354019 -0.0096752241731034 0.999949101549091 100 -0.655653453170089 1 0.999712 0.0239977 -1.381e-06 +80 2 1 -0.91660047198509 -6.88636677370759 0 -0.00360839142447488 -0.00971890208361481 0.999946259782803 100 -0.655454052114123 1 1 6.83915e-14 -4.05148e-08 +81 2 1 -0.893855487881185 -6.91456503299004 0 -0.00435576077371357 -0.00976622980207748 0.99994282241713 100 -0.655271452526563 1 1 6.83776e-14 -4.05104e-08 +82 2 1 -0.871047476476098 -6.94271230904788 0 -0.00510291069009293 -0.00981720599208935 0.999938789511137 100 -0.655105645299841 1 0.999712 0.0239977 -1.42198e-06 +83 2 1 -0.848176442189724 -6.97080865797528 0 -0.00584981381578308 -0.00987182905103212 0.999934161167378 100 -0.654956621247379 1 1 6.83446e-14 -4.0501e-08 +84 2 1 -1.16896802992071 -6.62013733317061 0 0.003823851074669 -0.0102249703009429 0.999940412297305 100 -0.658132386070633 1 0.999712 0.0239977 -1.38296e-06 +85 2 1 -1.14681880168388 -6.64891801455297 0 0.00307947897962932 -0.0102359811771024 0.999942869117309 100 -0.657759199122552 1 1 0 0 +86 2 1 -1.12460647424839 -6.67764729475692 0 0.00233505437036234 -0.0102506150767586 0.99994473467869 100 -0.657402871351678 1 0.999712 0.0239977 -1.38314e-06 +87 2 1 -1.10233105633421 -6.70632522456804 0 0.00159060432452249 -0.0102688730374653 0.999946008654679 100 -0.65706339446001 1 1 6.81972e-14 -4.04569e-08 +88 2 1 -1.07999255618522 -6.73495185531235 0 0.000846155935998097 -0.0102907558343712 0.999946690761307 100 -0.656740760058483 1 0.999712 0.0239977 -1.4238e-06 +89 2 1 -1.05759098156252 -6.76352723885018 0 0.000101736311648405 -0.0103162639799609 0.999946780757465 100 -0.656434959676176 1 1 0 0 +90 2 1 -1.03512633973834 -6.79205142757295 0 -0.000642627431964248 -0.0103453977238556 0.999946278444957 100 -0.656145984738146 1 0.999712 0.0239977 -1.38359e-06 +91 2 1 -1.01259863748944 -6.82052447439483 0 -0.00138690817184548 -0.0103781570526456 0.999945183668542 100 -0.65587382658714 1 1 0 0 +92 2 1 -0.990007881091032 -6.84894643274977 0 -0.00213107878184356 -0.0104145416897843 0.999943496315975 100 -0.655618476470295 1 0.999712 0.0239977 -1.38385e-06 +93 2 1 -0.967354076310591 -6.8773173565833 0 -0.00287511213592593 -0.0104545510955212 0.999941216318038 100 -0.655379925549141 1 0.999712 0.0239977 -1.384e-06 +94 2 1 -0.944637228401783 -6.90563730034879 0 -0.00361898111145692 -0.010498184466887 0.999938343648554 100 -0.655158164895965 1 0.999712 0.0239977 -1.38415e-06 +95 2 1 -0.921857342098419 -6.93390631899929 0 -0.00436265859247613 -0.0105454407377223 0.99993487832441 100 -0.654953185490285 1 0.999712 0.0239977 -1.38431e-06 +96 2 1 -0.899014421608582 -6.96212446798355 0 -0.00510611747297661 -0.0105963185787584 0.999930820405557 100 -0.654764978237267 1 0.999712 0.0239977 -1.4249e-06 +97 2 1 -0.876108470608871 -6.99029180323843 0 -0.00584933066018154 -0.0106508163977453 0.99992616999501 100 -0.654593533945331 1 0.999712 0.0239977 -1.42507e-06 +98 2 1 -1.19742371542015 -6.63877893737234 0 0.00377667364846629 -0.0109997727976267 0.999932368580273 100 -0.658042682059204 1 1 6.79439e-14 -4.03821e-08 +99 2 1 -1.17523951695785 -6.66762926339648 0 0.00303596080523571 -0.0110109786183928 0.999934768518354 100 -0.657647311743176 1 0.999712 0.0239977 -1.38604e-06 +100 2 1 -1.15299221981838 -6.69642830201939 0 0.00229519723610546 -0.011025780893046 0.999936580101631 100 -0.657268780513732 1 0.999712 0.0239977 -1.38613e-06 +101 2 1 -1.13068183196635 -6.72517610395282 0 0.00155440975794707 -0.0110441806376391 0.999937803007941 100 -0.656907080071846 1 1 0 0 +102 2 1 -1.10830836089189 -6.75387272044209 0 0.000813625203544628 -0.0110661786089848 0.999938436957507 100 -0.656562202018222 1 1 6.79075e-14 -4.03713e-08 +103 2 1 -1.08587181360417 -6.78251820325696 0 7.2870418378712e-05 -0.0110917753043981 0.999938481712999 100 -0.656234137865795 1 0.999712 0.0239977 -1.42683e-06 +104 2 1 -1.06337219662537 -6.81111260469039 0 -0.000667827742594642 -0.0111209709615057 0.999937937079587 100 -0.65592287903894 1 0.999712 0.0239977 -1.38658e-06 +105 2 1 -1.04080951598426 -6.83965597754929 0 -0.00140844241816801 -0.0111537655580807 0.999936802904978 100 -0.655628416868808 1 1 6.78728e-14 -4.03611e-08 +106 2 1 -1.01818377721027 -6.8681483751526 0 -0.00214894674411016 -0.0111901588119421 0.999935079079464 100 -0.655350742594351 1 0.999712 0.0239977 -1.38685e-06 +107 2 1 -0.995494985327185 -6.89658985132161 0 -0.00288931385639512 -0.0112301501808825 0.99993276553594 100 -0.655089847378122 1 0.999712 0.0239977 -1.387e-06 +108 2 1 -0.972743144847522 -6.9249804603767 0 -0.00362951689443328 -0.011273738862664 0.999929862249933 100 -0.654845722288087 1 0.999712 0.0239977 -1.4275e-06 +109 2 1 -0.949928259766392 -6.95332025713116 0 -0.00436952900430213 -0.0113209237950432 0.999926369239609 100 -0.65461835830115 1 1 6.7819e-14 -4.03447e-08 +110 2 1 -0.927050333555744 -6.98160929688429 0 -0.00510932334197728 -0.0113717036558493 0.999922286565787 100 -0.654407746315655 1 1 6.78017e-14 -4.03402e-08 +111 2 1 -0.904109369158816 -7.00984763541618 0 -0.00584887307656198 -0.011426076863116 0.999917614331927 100 -0.654213877143548 1 0.999712 0.0239977 -1.38765e-06 +112 2 1 -1.22594950898767 -6.65749286883399 0 0.00372981156163036 -0.0117708864373042 0.999923764463169 100 -0.657936433923169 1 0.999712 0.0239977 -1.38894e-06 +113 2 1 -1.20373024578362 -6.68641286693899 0 0.00299273185496552 -0.0117822847543658 0.999926107930987 100 -0.657518874828156 1 0.999712 0.0239977 -1.42933e-06 +114 2 1 -1.18144788426831 -6.71528169054006 0 0.00225560318353396 -0.0117972532105024 0.999927865933821 100 -0.657118134804364 1 0.999712 0.0239977 -1.38913e-06 +115 2 1 -1.15910243166077 -6.7440993902756 0 0.00151845210652559 -0.0118157928006384 0.999929038154055 100 -0.656734205536054 1 1 0 0 +116 2 1 -1.13669389470727 -6.77286601730747 0 0.000781305198727638 -0.0118379042635752 0.999929624316048 100 -0.656367078614721 1 1 0 0 +117 2 1 -1.11422227967499 -6.80158162331634 0 4.41890473544411e-05 -0.0118635880817462 0.9999296241862 100 -0.65601674554614 1 0.999712 0.0239977 -1.42974e-06 +118 2 1 -1.09168759234599 -6.83024626049453 0 -0.000692869751126884 -0.0118928444810198 0.999929037572996 100 -0.655683197742746 1 1 6.76108e-14 -4.02825e-08 +119 2 1 -1.06908983801092 -6.85885998154278 0 -0.00142984459417471 -0.011925673430545 0.999927864327055 100 -0.655366426528758 1 0.999712 0.0239977 -1.38971e-06 +120 2 1 -1.04642902146318 -6.88742283966266 0 -0.00216670887635397 -0.0119620746426473 0.99992610434116 100 -0.655066423152107 1 0.999712 0.0239977 -1.38985e-06 +121 2 1 -1.02370514699303 -6.91593488855256 0 -0.00290343599251905 -0.0120020475727722 0.999923757550294 100 -0.654783178748175 1 0.999712 0.0239977 -1.38999e-06 +122 2 1 -1.00091821838153 -6.94439618240045 0 -0.00363999934099817 -0.0120455914194633 0.999920823931652 100 -0.654516684390046 1 0.999712 0.0239977 -1.43041e-06 +123 2 1 -0.978068238894965 -6.97280677587847 0 -0.00437637232677806 -0.0120927051244013 0.999917303504661 100 -0.654266931055304 1 0.999712 0.0239977 -1.39031e-06 +124 2 1 -0.955155211279024 -7.00116672413805 0 -0.00511252836468827 -0.0121433873724797 0.999913196330983 100 -0.654033909640702 1 0.999712 0.0239977 -1.39047e-06 +125 2 1 -0.932179137753402 -7.02947608280158 0 -0.00584844088258451 -0.0121976365919313 0.999908502514512 100 -0.653817610964097 1 0.999712 0.0239977 -1.39065e-06 +126 2 1 -1.25454539839732 -6.67627905880932 0 0.00368326179114333 -0.0125383369466217 0.999914608198716 100 -0.657813602068018 1 0.999712 0.0239977 -1.43215e-06 +127 2 1 -1.23229097685682 -6.70526875621181 0 0.00294978935061 -0.0125499253437735 0.999916895605157 100 -0.65737384880947 1 0.999712 0.0239977 -1.39202e-06 +128 2 1 -1.20997345721763 -6.73420739113899 0 0.00221626967967569 -0.0125650578169715 0.999918600422436 100 -0.656950894658621 1 1 0 0 +129 2 1 -1.18759284596316 -6.76309501415493 0 0.00148272908290562 -0.012583735340384 0.999919722337423 100 -0.656544731299391 1 0.999712 0.0239977 -1.39222e-06 +130 2 1 -1.1651491491054 -6.79193167633801 0 0.000749193880153572 -0.0126059586351207 0.999920261078562 100 -0.656155350315885 1 0.999712 0.0239977 -1.39233e-06 +131 2 1 -1.14264237217941 -6.82071742927721 0 1.56904034364534e-05 -0.0126317281690118 0.999920216415928 100 -0.655782743192731 1 0.999712 0.0239977 -1.39245e-06 +132 2 1 -1.12007252023677 -6.84945232506605 0 -0.000717755006194474 -0.0126610441564003 0.999919588161279 100 -0.655426901337933 1 1 6.73333e-14 -4.02007e-08 +133 2 1 -1.09743959783983 -6.87813641629681 0 -0.00145111600178647 -0.0126939065579991 0.999918376168098 100 -0.655087816075707 1 0.999712 0.0239977 -1.3927e-06 +134 2 1 -1.07474360905579 -6.90676975605546 0 -0.00218436623362065 -0.0127303150807881 0.99991658033163 100 -0.654765478639092 1 0.999712 0.0239977 -1.43303e-06 +135 2 1 -1.05198455745088 -6.93535239791561 0 -0.00291747935234952 -0.0127702691779554 0.999914200588906 100 -0.654459880168588 1 1 6.72969e-14 -4.01894e-08 +136 2 1 -1.02916244608466 -6.96388439593331 0 -0.00365042901213569 -0.0128137680488876 0.999911236918766 100 -0.654171011730909 1 0.999712 0.0239977 -1.39314e-06 +137 2 1 -1.00627727750421 -6.99236580463998 0 -0.00438318887379066 -0.0128608106391952 0.999907689341871 100 -0.653898864304438 1 0.999712 0.0239977 -1.43348e-06 +138 2 1 -0.983329053738657 -7.02079667903811 0 -0.00511573260791383 -0.0129113956407972 0.999903557920708 100 -0.653643428780015 1 0.999712 0.0239977 -1.39347e-06 +139 2 1 -0.960317776293842 -7.04917707459516 0 -0.00584803389802974 -0.0129655214920475 0.99989884275959 100 -0.653404695972995 1 0.999712 0.0239977 -1.43381e-06 +140 2 1 -1.28321137155523 -6.69513743942334 0 0.00363702134903943 -0.0133021498207225 0.999904907921675 100 -0.657674147367061 1 0.999712 0.0239977 -1.39491e-06 +141 2 1 -1.2609216989941 -6.72419686312056 0 0.00290713054618408 -0.0133139259133879 0.99990713967286 100 -0.657212194559861 1 1 6.7113e-14 -4.01344e-08 +142 2 1 -1.23856892839603 -6.75320533551312 0 0.00217719422094568 -0.0133292202678912 0.99990879169671 100 -0.656767020976076 1 0.999712 0.0239977 -1.43523e-06 +143 2 1 -1.21615306551831 -6.78216290708898 0 0.00144723842627915 -0.0133480338380006 0.999909863684521 100 -0.656338618273139 1 0.999712 0.0239977 -1.3952e-06 +144 2 1 -1.19367411564846 -6.81106962884378 0 0.000717289230124848 -0.0133703673274577 0.999910355368765 100 -0.655926978024354 1 0.999712 0.0239977 -1.39531e-06 +145 2 1 -1.17113208359881 -6.83992555227348 0 -1.26272876724512e-05 -0.0133962211897557 0.999910266523145 100 -0.655532091722989 1 1 6.70731e-14 -4.01228e-08 +146 2 1 -1.14852697370019 -6.86873072937168 0 -0.00074248503844756 -0.0134255956279432 0.999909596962647 100 -0.655153950762951 1 0.999712 0.0239977 -1.39556e-06 +147 2 1 -1.12585878979628 -6.89748521262225 0 -0.00147225792780306 -0.013458490594483 0.999908346543578 100 -0.654792546451972 1 0.999712 0.0239977 -1.4358e-06 +148 2 1 -1.10312753523756 -6.92618905499545 0 -0.00220191985870001 -0.0134949057911467 0.999906515163605 100 -0.654447870026843 1 0.999712 0.0239977 -1.39583e-06 +149 2 1 -1.08033321287597 -6.95484230993958 0 -0.00293144473455043 -0.0135348406689657 0.999904102761777 100 -0.654119912626584 1 0.999712 0.0239977 -1.39597e-06 +150 2 1 -1.05747582505898 -6.98344503137928 0 -0.00366080646231118 -0.0135782944282157 0.99990110931855 100 -0.653808665303359 1 0.999712 0.0239977 -1.39613e-06 +151 2 1 -1.03455537362414 -7.01199727370559 0 -0.00438997895557809 -0.0136252660184492 0.999897534855795 100 -0.653514119040437 1 0.999712 0.0239977 -1.39629e-06 +152 2 1 -1.01157185989362 -7.04049909177254 0 -0.00511893613767965 -0.0136757541385754 0.999893379436808 100 -0.653236264735369 1 0.999712 0.0239977 -1.39646e-06 +153 2 1 -0.988525284668786 -7.06895054089132 0 -0.00584765194476977 -0.0137297572369823 0.999888643166301 100 -0.652975093197938 1 0.999712 0.0239977 -1.39663e-06 +154 2 1 -1.31194741649794 -6.71406794366084 0 0.00359108728192329 -0.0140623503257651 0.999894671650694 100 -0.657518031114705 1 0.999712 0.0239977 -1.39789e-06 +155 2 1 -1.28962240113177 -6.74319712043347 0 0.00286475272748302 -0.0140743117605337 0.999896848149987 100 -0.657033873396585 1 1 6.68424e-14 -4.00535e-08 +156 2 1 -1.26723428764195 -6.77227545622394 0 0.00213837433274231 -0.0140897658888252 0.999898447769778 100 -0.656566475068303 1 0.999712 0.0239977 -1.39808e-06 +157 2 1 -1.24478308106899 -6.80130300144412 0 0.00141197790201769 -0.0141087136443602 0.999899470205733 100 -0.65611582778638 1 0.999712 0.0239977 -1.43823e-06 +158 2 1 -1.22226878598556 -6.83027980700464 0 0.000685589254313549 -0.0141311557138246 0.999899915194299 100 -0.655681923107977 1 0.999712 0.0239977 -1.43834e-06 +159 2 1 -1.19969140649069 -6.85920592430928 0 -4.0765779714534e-05 -0.0141570925366433 0.999899782512758 100 -0.655264752507492 1 1 0 0 +160 2 1 -1.1770509462039 -6.88808140525083 0 -0.000767061360800432 -0.0141865243047935 0.999899071979277 100 -0.654864307387015 1 0.999712 0.0239977 -1.43858e-06 +161 2 1 -1.15434740825957 -6.91690630220468 0 -0.00149327164411142 -0.0142194509626667 0.999897783452948 100 -0.654480579047913 1 0.999712 0.0239977 -1.39867e-06 +162 2 1 -1.13158079530112 -6.94568066802387 0 -0.00221937078229488 -0.0142558722069682 0.999895916833822 100 -0.654113558710606 1 0.999712 0.0239977 -1.39881e-06 +163 2 1 -1.10875110947548 -6.97440455603311 0 -0.00294533292852666 -0.014295787486663 0.999893472062938 100 -0.653763237514795 1 0.999712 0.0239977 -1.43898e-06 +164 2 1 -1.08585835242752 -7.0030780200241 0 -0.00367113223956093 -0.0143391960029677 0.999890449122337 100 -0.653429606523105 1 0.999712 0.0239977 -1.43913e-06 +165 2 1 -1.06290252529473 -7.03170111424805 0 -0.00439674287877994 -0.0143860967093845 0.99988684803508 100 -0.653112656699932 1 0.999712 0.0239977 -1.43929e-06 +166 2 1 -1.03988362870162 -7.06027389341139 0 -0.00512213901924388 -0.0144364883117735 0.999882668865248 100 -0.652812378947601 1 0.999712 0.0239977 -1.39944e-06 +167 2 1 -1.01680166275467 -7.08879641266906 0 -0.00584729484673913 -0.0144903692684821 0.999877911717945 100 -0.652528764079079 1 1 0 0 +168 2 1 -1.34075352139053 -6.7330705053569 0 0.00354545667049626 -0.0148189635014079 0.999883907290113 100 -0.657345215033047 1 0.999712 0.0239977 -1.40087e-06 +169 2 1 -1.31839307232396 -6.76226946177101 0 0.00282265321164688 -0.0148311079555745 0.999886028938127 100 -0.656838847055724 1 0.999712 0.0239977 -1.40096e-06 +170 2 1 -1.29596952490091 -6.79141768668853 0 0.00209980756904966 -0.0148467197779593 0.999887576540487 100 -0.656349218698097 1 1 6.65665e-14 -3.99704e-08 +171 2 1 -1.27348288345448 -6.82051523044375 0 0.00137694530131284 -0.0148657998825836 0.99988854979717 100 -0.655876321602364 1 0.999712 0.0239977 -1.44113e-06 +172 2 1 -1.25093315185158 -6.84956214386103 0 0.000654091981440928 -0.0148883489393764 0.999888948448546 100 -0.655420147325685 1 0.999712 0.0239977 -1.40127e-06 +173 2 1 -1.22832033348742 -6.87855847825163 0 -6.87268061591214e-05 -0.0149143673739601 0.999888772275427 100 -0.654980687334728 1 1 6.65353e-14 -3.99613e-08 +174 2 1 -1.20564443127956 -6.90750428540764 0 -0.000791485468675056 -0.014943855367462 0.999888021099118 100 -0.654557933016804 1 0.999712 0.0239977 -1.44148e-06 +175 2 1 -1.18290544766238 -6.93639961759472 0 -0.00151415840789029 -0.0149768128563787 0.999886694781454 100 -0.654151875670095 1 0.999712 0.0239977 -1.40165e-06 +176 2 1 -1.16010338458143 -6.96524452754939 0 -0.00223672002318701 -0.0150132395324807 0.999884793224839 100 -0.653762506513885 1 0.999712 0.0239977 -1.44174e-06 +177 2 1 -1.13723824348809 -6.99403906847243 0 -0.00295914471455154 -0.0150531348427632 0.999882316372264 100 -0.653389816683102 1 1 6.6485e-14 -3.99466e-08 +178 2 1 -1.11431002533397 -7.02278329402236 0 -0.00368140688558041 -0.0150964979894326 0.999879264207333 100 -0.653033797232638 1 0.999712 0.0239977 -1.40209e-06 +179 2 1 -1.09131873056556 -7.05147725831081 0 -0.00440348094648692 -0.0151433279299416 0.999875636754272 100 -0.652694439135985 1 0.999712 0.0239977 -1.44219e-06 +180 2 1 -1.06826435911921 -7.08012101589681 0 -0.00512534131710753 -0.0151936233770717 0.999871434077931 100 -0.652371733285008 1 1 6.64434e-14 -3.99335e-08 +181 2 1 -1.04514691041563 -7.10871462177977 0 -0.00584696242990664 -0.0152473827990456 0.999866656283788 100 -0.652065670502225 1 0.999712 0.0239977 -1.4026e-06 +182 2 1 -1.3696296745246 -6.7521450591835 0 0.00350012662908993 -0.0155720141632544 0.999872622631743 100 -0.657155661270281 1 0.999712 0.0239977 -1.40384e-06 +183 2 1 -1.34723370174095 -6.78141382159509 0 0.00278082934673156 -0.0155843393443738 0.999874689826352 100 -0.656627077696612 1 0.999712 0.0239977 -1.44383e-06 +184 2 1 -1.32477463022408 -6.81063196116715 0 0.00206149151204627 -0.0156001068085696 0.999876185795175 100 -0.656115214033889 1 0.999712 0.0239977 -1.40403e-06 +185 2 1 -1.30225246360884 -6.839799528156 0 0.00134213844082329 -0.0156193174505035 0.999877110242447 100 -0.655620061914306 1 1 6.62907e-14 -3.98874e-08 +186 2 1 -1.27966720506574 -6.86891657330051 0 0.000622795462961707 -0.0156419719236536 0.999877462912407 100 -0.655141612888883 1 1 0 0 +187 2 1 -1.25701885729512 -6.89798314781783 0 -9.65120804802414e-05 -0.0156680706400902 0.99987724358935 100 -0.65467985841633 1 0.999712 0.0239977 -1.44425e-06 +188 2 1 -1.23430742252191 -6.92699930339783 0 -0.000815758840240645 -0.0156976137703095 0.999876452097675 100 -0.654234789875318 1 0.999712 0.0239977 -1.40449e-06 +189 2 1 -1.21153290248965 -6.95596509219734 0 -0.00153491946181168 -0.0157306012430865 0.999875088301922 100 -0.65380639856221 1 0.999712 0.0239977 -1.40463e-06 +190 2 1 -1.18869529845526 -6.98488056683662 0 -0.00225396858840053 -0.0157670327453917 0.99987315210681 100 -0.653394675688105 1 1 6.62335e-14 -3.98705e-08 +191 2 1 -1.16579461118361 -7.01374578039096 0 -0.00297288086389185 -0.0158069077223348 0.999870643457256 100 -0.652999612386793 1 0.999712 0.0239977 -1.44478e-06 +192 2 1 -1.14283084094216 -7.04256078638691 0 -0.0036916309358113 -0.0158502253771608 0.999867562338397 100 -0.652621199710893 1 0.999712 0.0239977 -1.44493e-06 +193 2 1 -1.11980398749581 -7.0713256387963 0 -0.0044101934582894 -0.0158969846712839 0.9998639087756 100 -0.652259428634579 1 0.999712 0.0239977 -1.44509e-06 +194 2 1 -1.09671405010162 -7.10004039203087 0 -0.00512854309502497 -0.0159471843243634 0.99985968283447 100 -0.651914290046534 1 0.999712 0.0239977 -1.4054e-06 +195 2 1 -1.07356102750377 -7.12870510093567 0 -0.00584665452224754 -0.0160008228144232 0.999854884620843 100 -0.651585774774048 1 1 0 0 +196 2 1 -0.999706888191881 -6.5098105428976 0 0.00411371158906159 -0.00549721881479964 0.999976428703329 100 -0.658325457697856 1 0.999712 0.0239977 -1.40588e-06 +197 2 1 -0.977765443441836 -6.53817394543293 0 0.00334682148727753 -0.00550700674938459 0.999979235615717 100 -0.65808525681382 1 1 6.99284e-14 -4.09673e-08 +198 2 1 -0.95576089295319 -6.56648524505283 0 0.00257986754533321 -0.00552058264981287 0.999981433552971 100 -0.657862036918914 1 0.999712 0.0239977 -1.40605e-06 +199 2 1 -0.933693250194873 -6.59474449295807 0 0.00181287847324792 -0.00553794769090044 0.999983022159384 100 -0.657655789799264 1 0.999712 0.0239977 -1.36518e-06 diff --git a/Tests/input/ellipsoid_ip_200mirrormis.rml b/Intern/RayCore/tests/input/ellipsoid_ip_200mirrormis.rml similarity index 100% rename from Tests/input/ellipsoid_ip_200mirrormis.rml rename to Intern/RayCore/tests/input/ellipsoid_ip_200mirrormis.rml diff --git a/Tests/input/globalCoordinates_20rays.csv b/Intern/RayCore/tests/input/globalCoordinates_20rays.csv similarity index 99% rename from Tests/input/globalCoordinates_20rays.csv rename to Intern/RayCore/tests/input/globalCoordinates_20rays.csv index 33a9dabf6..2e23c2512 100644 --- a/Tests/input/globalCoordinates_20rays.csv +++ b/Intern/RayCore/tests/input/globalCoordinates_20rays.csv @@ -1,22 +1,22 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -0.616709716448437 0.418240997338503 0 -0.000564720499429021 0.000425547474857858 0.999999750000021 100 0.000260000043226682 1 0.71934 0.694658 -7.09317e-06 -1 2 1 -0.251960928431904 0.469503038117522 0 -0.000234631204309514 0.000471938499920371 0.999999861111115 100 0.000144444459920123 1 0.71934 0.694658 -7.94314e-06 -2 2 1 0.112787813399909 0.520765130751111 0 9.54581091483454e-05 0.000518329527559979 0.999999861111116 100 0.000144444459920123 1 0.766044 0.642788 2.15269e-05 -3 2 1 0.477536585334193 0.572027285961181 0 0.000425547404267833 0.000564720552622543 0.999999750000021 100 0.000260000043340369 1 0.559193 0.829038 -6.80067e-05 -4 2 1 -0.570318670956779 0.0881515568573938 0 -0.000518329523582612 9.54581307453254e-05 0.999999861111116 100 0.000144444459920123 1 0.913545 0.406737 -2.58447e-06 -5 2 1 -0.205569888301007 0.139413635780137 0 -0.00018824019178653 0.000141849160962453 0.999999972222222 100 2.88888894601769e-05 1 0.374607 0.927184 -2.32571e-05 -6 2 1 0.159178853530808 0.19067572841373 0 0.000141849158347925 0.000188240193756624 0.999999972222223 100 2.88888894601769e-05 1 0.961262 0.275637 0.000157003 -7 2 1 0.523927630825886 0.241937845479976 0 0.000471938490144056 0.000234631223973592 0.999999861111115 100 0.00014444446003381 1 0.882948 0.469472 -2.83244e-05 -8 2 1 -0.523927630825852 -0.241937845480082 0 -0.000471938490144021 -0.000234631223973698 0.999999861111115 100 0.000144444459920123 1 0.615661 0.788011 -4.14971e-06 -9 2 1 -0.159178853530788 -0.190675728413782 0 -0.000141849158347906 -0.000188240193756676 0.999999972222223 100 2.88888894601769e-05 1 0.173648 0.984808 -8.64739e-05 -10 2 1 0.20556988830099 -0.139413635780083 0 0.000188240191786513 -0.0001418491609624 0.999999972222222 100 2.88888894601769e-05 1 0.71934 0.694658 -7.47901e-06 -11 2 1 0.57031867095678 -0.0881515568573912 0 0.000518329523582613 -9.54581307453251e-05 0.999999861111115 100 0.00014444446003381 1 0.913545 0.406737 -3.34629e-06 -12 2 1 -0.477536585334213 -0.572027285961131 0 -0.000425547404267853 -0.000564720552622491 0.999999750000021 100 0.000260000043340369 1 0.961262 0.275637 -1.23644e-05 -13 2 1 -0.112787813399873 -0.520765130751218 0 -9.54581091483099e-05 -0.000518329527560084 0.999999861111115 100 0.000144444459920123 1 0.961262 0.275637 0.000151222 -14 2 1 0.251960928431905 -0.46950303811752 0 0.000234631204309515 -0.000471938499920371 0.999999861111116 100 0.000144444459920123 1 0.961262 0.275637 -1.23688e-05 -15 2 1 0.616709716448453 -0.418240997338558 0 0.000564720499429037 -0.000425547474857911 0.999999750000021 100 0.000260000043454056 1 0.615661 0.788011 -0.000138184 -16 2 1 -0.616709716448437 0.418240997338503 0 -0.000564720499429021 0.000425547474857858 0.999999750000021 100 0.000260000043226682 1 0.71934 0.694658 -7.09317e-06 -17 2 1 -0.251960928431904 0.469503038117522 0 -0.000234631204309514 0.000471938499920371 0.999999861111115 100 0.000144444459920123 1 0.71934 0.694658 -7.94314e-06 -18 2 1 0.112787813399909 0.520765130751111 0 9.54581091483454e-05 0.000518329527559979 0.999999861111116 100 0.000144444459920123 1 0.766044 0.642788 2.15269e-05 -19 2 1 0.477536585334193 0.572027285961181 0 0.000425547404267833 0.000564720552622543 0.999999750000021 100 0.000260000043340369 1 0.559193 0.829038 -6.80067e-05 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -0.616709716448437 0.418240997338503 0 -0.000564720499429021 0.000425547474857858 0.999999750000021 100 0.000260000043226682 1 0.71934 0.694658 -7.09317e-06 +1 2 1 -0.251960928431904 0.469503038117522 0 -0.000234631204309514 0.000471938499920371 0.999999861111115 100 0.000144444459920123 1 0.71934 0.694658 -7.94314e-06 +2 2 1 0.112787813399909 0.520765130751111 0 9.54581091483454e-05 0.000518329527559979 0.999999861111116 100 0.000144444459920123 1 0.766044 0.642788 2.15269e-05 +3 2 1 0.477536585334193 0.572027285961181 0 0.000425547404267833 0.000564720552622543 0.999999750000021 100 0.000260000043340369 1 0.559193 0.829038 -6.80067e-05 +4 2 1 -0.570318670956779 0.0881515568573938 0 -0.000518329523582612 9.54581307453254e-05 0.999999861111116 100 0.000144444459920123 1 0.913545 0.406737 -2.58447e-06 +5 2 1 -0.205569888301007 0.139413635780137 0 -0.00018824019178653 0.000141849160962453 0.999999972222222 100 2.88888894601769e-05 1 0.374607 0.927184 -2.32571e-05 +6 2 1 0.159178853530808 0.19067572841373 0 0.000141849158347925 0.000188240193756624 0.999999972222223 100 2.88888894601769e-05 1 0.961262 0.275637 0.000157003 +7 2 1 0.523927630825886 0.241937845479976 0 0.000471938490144056 0.000234631223973592 0.999999861111115 100 0.00014444446003381 1 0.882948 0.469472 -2.83244e-05 +8 2 1 -0.523927630825852 -0.241937845480082 0 -0.000471938490144021 -0.000234631223973698 0.999999861111115 100 0.000144444459920123 1 0.615661 0.788011 -4.14971e-06 +9 2 1 -0.159178853530788 -0.190675728413782 0 -0.000141849158347906 -0.000188240193756676 0.999999972222223 100 2.88888894601769e-05 1 0.173648 0.984808 -8.64739e-05 +10 2 1 0.20556988830099 -0.139413635780083 0 0.000188240191786513 -0.0001418491609624 0.999999972222222 100 2.88888894601769e-05 1 0.71934 0.694658 -7.47901e-06 +11 2 1 0.57031867095678 -0.0881515568573912 0 0.000518329523582613 -9.54581307453251e-05 0.999999861111115 100 0.00014444446003381 1 0.913545 0.406737 -3.34629e-06 +12 2 1 -0.477536585334213 -0.572027285961131 0 -0.000425547404267853 -0.000564720552622491 0.999999750000021 100 0.000260000043340369 1 0.961262 0.275637 -1.23644e-05 +13 2 1 -0.112787813399873 -0.520765130751218 0 -9.54581091483099e-05 -0.000518329527560084 0.999999861111115 100 0.000144444459920123 1 0.961262 0.275637 0.000151222 +14 2 1 0.251960928431905 -0.46950303811752 0 0.000234631204309515 -0.000471938499920371 0.999999861111116 100 0.000144444459920123 1 0.961262 0.275637 -1.23688e-05 +15 2 1 0.616709716448453 -0.418240997338558 0 0.000564720499429037 -0.000425547474857911 0.999999750000021 100 0.000260000043454056 1 0.615661 0.788011 -0.000138184 +16 2 1 -0.616709716448437 0.418240997338503 0 -0.000564720499429021 0.000425547474857858 0.999999750000021 100 0.000260000043226682 1 0.71934 0.694658 -7.09317e-06 +17 2 1 -0.251960928431904 0.469503038117522 0 -0.000234631204309514 0.000471938499920371 0.999999861111115 100 0.000144444459920123 1 0.71934 0.694658 -7.94314e-06 +18 2 1 0.112787813399909 0.520765130751111 0 9.54581091483454e-05 0.000518329527559979 0.999999861111116 100 0.000144444459920123 1 0.766044 0.642788 2.15269e-05 +19 2 1 0.477536585334193 0.572027285961181 0 0.000425547404267833 0.000564720552622543 0.999999750000021 100 0.000260000043340369 1 0.559193 0.829038 -6.80067e-05 diff --git a/Tests/input/globalCoordinates_20rays.rml b/Intern/RayCore/tests/input/globalCoordinates_20rays.rml similarity index 100% rename from Tests/input/globalCoordinates_20rays.rml rename to Intern/RayCore/tests/input/globalCoordinates_20rays.rml diff --git a/Tests/input/groupRZPTest.rml b/Intern/RayCore/tests/input/groupRZPTest.rml similarity index 100% rename from Tests/input/groupRZPTest.rml rename to Intern/RayCore/tests/input/groupRZPTest.rml diff --git a/Tests/input/groupTransform.rml b/Intern/RayCore/tests/input/groupTransform.rml similarity index 100% rename from Tests/input/groupTransform.rml rename to Intern/RayCore/tests/input/groupTransform.rml diff --git a/Tests/input/groupTransform2.rml b/Intern/RayCore/tests/input/groupTransform2.rml similarity index 100% rename from Tests/input/groupTransform2.rml rename to Intern/RayCore/tests/input/groupTransform2.rml diff --git a/Tests/input/groupTransformMisalignment.rml b/Intern/RayCore/tests/input/groupTransformMisalignment.rml similarity index 100% rename from Tests/input/groupTransformMisalignment.rml rename to Intern/RayCore/tests/input/groupTransformMisalignment.rml diff --git a/Tests/input/loadDatFile.DAT b/Intern/RayCore/tests/input/loadDatFile.DAT similarity index 85% rename from Tests/input/loadDatFile.DAT rename to Intern/RayCore/tests/input/loadDatFile.DAT index 36af825d4..04ef45517 100644 --- a/Tests/input/loadDatFile.DAT +++ b/Intern/RayCore/tests/input/loadDatFile.DAT @@ -1,13 +1,13 @@ -comment line -11 10 20 1 -10 0 -11 0 -12 1 -13 0 -14 0 -15 1 -16 0 -17 1 -18 0 -19 0 -20 0 +comment line +11 10 20 1 +10 0 +11 0 +12 1 +13 0 +14 0 +15 1 +16 0 +17 1 +18 0 +19 0 +20 0 diff --git a/Tests/input/loadDatFile.rml b/Intern/RayCore/tests/input/loadDatFile.rml similarity index 100% rename from Tests/input/loadDatFile.rml rename to Intern/RayCore/tests/input/loadDatFile.rml diff --git a/Tests/input/loadGroups.rml b/Intern/RayCore/tests/input/loadGroups.rml similarity index 100% rename from Tests/input/loadGroups.rml rename to Intern/RayCore/tests/input/loadGroups.rml diff --git a/Tests/input/pm_ell_ip_200mirrormis.csv b/Intern/RayCore/tests/input/pm_ell_ip_200mirrormis.csv similarity index 99% rename from Tests/input/pm_ell_ip_200mirrormis.csv rename to Intern/RayCore/tests/input/pm_ell_ip_200mirrormis.csv index b3b904a56..e5f7dc50e 100644 --- a/Tests/input/pm_ell_ip_200mirrormis.csv +++ b/Intern/RayCore/tests/input/pm_ell_ip_200mirrormis.csv @@ -1,202 +1,202 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -2.45635889637051 1.88566694638419 0 0.00263151831936288 -0.00398271283672563 0.999988606489992 100 -1.18365745854726 1 0.999712 0.0239977 -1.29406e-06 -1 2 1 -2.47529753939204 1.84980941156583 0 0.00184958271503833 -0.00399120450094326 0.9999903246184 100 -1.18355463789283 1 1 4.64363e-10 3.33845e-06 -2 2 1 -2.49415522687709 1.81390152454616 0 0.00106752486454876 -0.00400341344254973 0.999991416498898 100 -1.1834367013679 1 0.999712 0.0239977 -1.97392e-06 -3 2 1 -2.51293200883655 1.77794322296657 0 0.000285371872333516 -0.00401934161829565 0.999991881694972 100 -1.18330363858911 1 0.999712 0.0239977 -1.33651e-06 -4 2 1 -2.5316279347348 1.74193444318747 0 -0.000496849128368752 -0.00403899072872632 0.999991719813138 100 -1.183155438943 1 1 4.72302e-10 3.36687e-06 -5 2 1 -2.55024305347502 1.70587512029685 0 -0.0012791109786313 -0.00406236221774148 0.99999093050303 100 -1.18299209160512 1 1 4.84243e-10 3.40916e-06 -6 2 1 -2.56877741338392 1.66976518811361 0 -0.00206138649695708 -0.00408945727218885 0.999989513457481 100 -1.18281358553008 1 1 4.84271e-10 3.40926e-06 -7 2 1 -2.58723106219728 1.63360457919397 0 -0.0028436484824051 -0.00412027682151422 0.999987468412591 100 -1.1826199094545 1 1 7.4175e-14 -4.21937e-08 -8 2 1 -2.60560404704486 1.59739322483754 0 -0.00362586971772215 -0.0041548215374439 0.999984795147797 100 -1.18241105189952 1 0.999712 0.0239977 -1.29485e-06 -9 2 1 -2.62389641443587 1.56113105509377 0 -0.00440802297248096 -0.00419309183371985 0.999981493485929 100 -1.18218700117143 1 1 4.6458e-10 3.33923e-06 -10 2 1 -2.64210821024423 1.52481799876715 0 -0.00519008100622287 -0.00423508786587479 0.999977563293256 100 -1.18194774535766 1 1 4.64616e-10 3.33936e-06 -11 2 1 -2.66023947969421 1.48845398342508 0 -0.00597201657160508 -0.00428080953105631 0.999973004479535 100 -1.18169327234614 1 0.999712 0.0239977 -1.29526e-06 -12 2 1 -2.67829026734584 1.45203893540435 0 -0.00675380241755095 -0.0043302564678907 0.999967816998041 100 -1.18142356979376 1 0.999712 0.0239977 -1.97388e-06 -13 2 1 -2.6962606170806 1.41557277981757 0 -0.00753541129240319 -0.00438342805639574 0.999962000845597 100 -1.18113862515554 1 0.999712 0.0239977 -2.01604e-06 -14 2 1 -2.42099268935324 1.86553106897005 0 0.00269455834696468 -0.00324532763431706 0.999991103562357 100 -1.18349192033133 1 0.999712 0.0239977 -2.0007e-06 -15 2 1 -2.43987479459938 1.82976189824854 0 0.00190904146953959 -0.00325352342047808 0.999992885047699 100 -1.18341686285055 1 1 4.83057e-10 3.40498e-06 -16 2 1 -2.45867593688345 1.79394250152063 0 0.00112339953909116 -0.00326546241971265 0.999994037346554 100 -1.1833267099812 1 0.999712 0.0239977 -2.00069e-06 -17 2 1 -2.47739616714448 1.75807281642762 0 0.000337659911309086 -0.00328114662318096 0.999994560016514 100 -1.18322145135949 1 0.999712 0.0239977 -2.01478e-06 -18 2 1 -2.49603553577419 1.72215277932054 0 -0.000448150028802459 -0.00330057776284542 0.999994452658605 100 -1.18310107640548 1 0.999712 0.0239977 -2.01477e-06 -19 2 1 -2.51459409260191 1.6861823252634 0 -0.00123400287007897 -0.00332375731101958 0.999993714917376 100 -1.18296557431847 1 1 4.75182e-10 3.37712e-06 -20 2 1 -2.53307188687939 1.65016138804118 0 -0.00201987117835761 -0.00335068647995695 0.99999234648098 100 -1.18281493406892 1 1 4.63386e-10 3.33494e-06 -21 2 1 -2.55146896726596 1.61408990016428 0 -0.00280572749964688 -0.00338136622149021 0.999990347081247 100 -1.18264914441818 1 0.999712 0.0239977 -2.01475e-06 -22 2 1 -2.56978538181336 1.57796779287383 0 -0.00359154436330257 -0.00341579722671059 0.999987716493754 100 -1.18246819390504 1 1 4.63448e-10 3.33516e-06 -23 2 1 -2.58802117795103 1.54179499614988 0 -0.00437729428520974 -0.00345397992569435 0.999984454537876 100 -1.18227207085238 1 1 4.63481e-10 3.33528e-06 -24 2 1 -2.60617640247128 1.50557143871608 0 -0.00516294977096982 -0.00349591448727615 0.999980561076844 100 -1.1820607633698 1 1 2.06821e-13 -7.04544e-08 -25 2 1 -2.62425110151455 1.46929704804676 0 -0.00594848331909175 -0.00354160081886529 0.999976036017785 100 -1.18183425934933 1 1 3.31228e-14 -2.81943e-08 -26 2 1 -2.64224532055484 1.43297175037445 0 -0.00673386742418692 -0.00359103856630805 0.999970879311757 100 -1.18159254647048 1 0.999712 0.0239977 -1.32098e-06 -27 2 1 -2.66015910438515 1.39659547069594 0 -0.00751907458016668 -0.00364422711379669 0.99996509095378 100 -1.18133561219634 1 0.999712 0.0239977 -1.32113e-06 -28 2 1 -2.38571543529158 1.84541499925932 0 0.00275802610325512 -0.00250446973046631 0.999993060437613 100 -1.18333909066689 1 0.999712 0.0239977 -1.97109e-06 -29 2 1 -2.404540925932 1.8097341573312 0 0.00196890308186925 -0.00251236611072198 0.999994905705614 100 -1.18329179061368 1 0.999712 0.0239977 -1.97108e-06 -30 2 1 -2.42328544595106 1.77400321632422 0 0.00117965216017962 -0.00252403188164996 0.999996118834389 100 -1.18322941567499 1 1 4.74022e-10 3.37299e-06 -31 2 1 -2.44194904722545 1.73822211388379 0 0.000390300948040588 -0.00253946906938707 0.999996699375561 100 -1.18315195551759 1 1 4.62211e-10 3.33071e-06 -32 2 1 -2.46053178108378 1.70239078635005 0 -0.000399122914854304 -0.00255867943784099 0.999996646924595 100 -1.18305939958657 1 1 4.62235e-10 3.33079e-06 -33 2 1 -2.47903369829109 1.66650916876729 0 -0.00118859176217015 -0.00258166448822278 0.99999596112089 100 -1.18295173710203 1 1 4.62261e-10 3.33088e-06 -34 2 1 -2.49745484903374 1.63057719488689 0 -0.00197807790413759 -0.0026084254586341 0.99999464164786 100 -1.18282895706159 1 0.999712 0.0239977 -1.31758e-06 -35 2 1 -2.51579528290413 1.59459479717427 0 -0.00276755363076647 -0.00263896332369384 0.999992688233007 100 -1.18269104824537 1 0.999712 0.0239977 -1.31769e-06 -36 2 1 -2.53405504888565 1.55856190681428 0 -0.00355699121506678 -0.00267327879421592 0.999990100647994 100 -1.1825379992132 1 1 4.82144e-10 3.40176e-06 -37 2 1 -2.55223419533759 1.52247845371829 0 -0.00434636291627527 -0.00271137231692659 0.999986878708696 100 -1.18236979830613 1 1 4.70248e-10 3.35954e-06 -38 2 1 -2.5703327699801 1.48634436652987 0 -0.0051356409830873 -0.00275324407423133 0.999983022275259 100 -1.18218643364889 1 1 4.70284e-10 3.35967e-06 -39 2 1 -2.5883508198795 1.45015957263141 0 -0.00592479765689327 -0.00279889398403127 0.999978531252142 100 -1.18198789314692 1 1 4.70321e-10 3.3598e-06 -40 2 1 -2.60628839143333 1.41392399815115 0 -0.00671380517501834 -0.00284832169957927 0.999973405588153 100 -1.18177416449248 1 0.999712 0.0239977 -1.29016e-06 -41 2 1 -2.62414553035573 1.37763756797125 0 -0.00750263577396524 -0.00290152660938481 0.999967645276475 100 -1.18154523516614 1 1 4.74362e-10 3.3742e-06 -42 2 1 -2.3505271485373 1.82531870675543 0 0.00282192572665766 -0.00176011522309871 0.999994469349503 100 -1.18319900641382 1 0.999712 0.0239977 -1.28619e-06 -43 2 1 -2.36929594705376 1.78972615805556 0 0.002029171461441 -0.00176770862412379 0.999996378828144 100 -1.18317945803472 1 1 4.61073e-10 3.3266e-06 -44 2 1 -2.38798376705267 1.7540836379474 0 0.00123628640759624 -0.00177909783813957 0.999997653200647 100 -1.18314485530061 1 0.999712 0.0239977 -1.28635e-06 -45 2 1 -2.40659066135805 1.71839108407957 0 0.000443298432097156 -0.00179428492684081 0.999998292012592 100 -1.18309518791045 1 1 4.72955e-10 3.36919e-06 -46 2 1 -2.42511668224491 1.68264843278538 0 -0.00034976456770857 -0.00181327168661222 0.999998294853815 100 -1.18303044532797 1 0.999712 0.0239977 -1.31476e-06 -47 2 1 -2.44356188142382 1.64685561908965 0 -0.00114287466734243 -0.00183605964805839 0.999997661358497 100 -1.18295061680067 1 1 4.69024e-10 3.35516e-06 -48 2 1 -2.46192631002535 1.61101257671263 0 -0.0019360039184466 -0.00186265007557751 0.99999639120525 100 -1.18285569134935 1 0.999712 0.0239977 -1.3574e-06 -49 2 1 -2.48021001858482 1.57511923807548 0 -0.00272912435204317 -0.00189304396698542 0.999994484117192 100 -1.18274565777676 1 0.999712 0.0239977 -1.96963e-06 -50 2 1 -2.49841305702686 1.53917553430871 0 -0.00352220798180014 -0.00192724205317901 0.999991939862018 100 -1.18262050466274 1 1 4.61252e-10 3.32725e-06 -51 2 1 -2.51653547465034 1.50318139525574 0 -0.00431522680730374 -0.00196524479785543 0.999988758252055 100 -1.18248022036141 1 1 4.61285e-10 3.32737e-06 -52 2 1 -2.53457732011305 1.46713674948063 0 -0.00510815281733587 -0.00200705239726989 0.99998493914432 100 -1.18232479301901 1 1 4.61321e-10 3.3275e-06 -53 2 1 -2.55253864141687 1.43104152427455 0 -0.00590095799315624 -0.0020526647800484 0.999980482440564 100 -1.18215421056073 1 0.999712 0.0239977 -1.28737e-06 -54 2 1 -2.57041948589263 1.39489564566328 0 -0.00669361431178784 -0.00210208160703845 0.999975388087308 100 -1.18196846068327 1 1 4.73231e-10 3.37018e-06 -55 2 1 -2.58821990018531 1.3586990384129 0 -0.00748609374930575 -0.00215530227121474 0.999969656075871 100 -1.18176753088414 1 0.999712 0.0239977 -1.33008e-06 -56 2 1 -2.31542784359175 1.8052421601884 0 0.00288626140402464 -0.00101223999675404 0.999995322421709 100 -1.1830717047294 1 0.999712 0.0239977 -1.99649e-06 -57 2 1 -2.33413987176989 1.76973786888863 0 0.00208985056348089 -0.00101952679908157 0.99999729654121 100 -1.18307990227618 1 1 0 0 -58 2 1 -2.35277091329395 1.73418373460004 0 0.00129330600430862 -0.00103063608428294 0.999998632573486 100 -1.18307306602151 1 1 4.67852e-10 3.35097e-06 -59 2 1 -2.37132102194515 1.69857969497755 0 0.000496655853596716 -0.00104556995020005 0.999999330057996 100 -1.18305118569356 1 0.999712 0.0239977 -1.96822e-06 -60 2 1 -2.3897902509548 1.66292568635032 0 -0.000300071730647287 -0.00106433022624192 0.999999388578876 100 -1.18301425078516 1 0.999712 0.0239977 -1.32642e-06 -61 2 1 -2.40817865298865 1.6272216437241 0 -0.00109684856278613 -0.00108691847290748 0.999998807765021 100 -1.18296225056508 1 1 4.60068e-10 3.32297e-06 -62 2 1 -2.42648628013143 1.59146750079018 0 -0.00189364643285023 -0.00111333598135122 0.999997587290179 100 -1.18289517408402 1 0.999712 0.0239977 -1.96821e-06 -63 2 1 -2.44471318387109 1.5556631899274 0 -0.00269043710984265 -0.00114358377299734 0.999995726873026 100 -1.18281301015963 1 1 3.32512e-14 -2.82489e-08 -64 2 1 -2.46285941508346 1.51980864221186 0 -0.00348719234505142 -0.00117766259920027 0.999993226277234 100 -1.18271574739458 1 0.999712 0.0239977 -1.32684e-06 -65 2 1 -2.48092502401677 1.48390378742087 0 -0.00428388387536801 -0.00121557294095259 0.999990085311534 100 -1.18260337416598 1 1 4.60188e-10 3.32341e-06 -66 2 1 -2.4989100602764 1.44794855403998 0 -0.0050804834266112 -0.00125731500864362 0.999986303829768 100 -1.1824758786305 1 0.999712 0.0239977 -1.3271e-06 -67 2 1 -2.51681457280954 1.41194286926991 0 -0.00587696271685546 -0.00130288874185958 0.99998188173094 100 -1.18233324873086 1 1 4.6026e-10 3.32367e-06 -68 2 1 -2.53463860989028 1.37588665903401 0 -0.00667329345976344 -0.00135229380923957 0.999976818959247 100 -1.18217547218069 1 1 4.68156e-10 3.35206e-06 -69 2 1 -2.55238221910416 1.3397798479841 0 -0.00746944736792093 -0.00140552960836915 0.999971115504112 100 -1.18200253648854 1 0.999712 0.0239977 -1.31329e-06 -70 2 1 -2.28041753510856 1.78518532750665 0 0.00295103737130868 -0.000260819720287908 0.999995611666124 100 -1.18295722310359 1 0.999712 0.0239977 -2.00943e-06 -71 2 1 -2.29907271402913 1.74976925751021 0 0.00215094438966401 -0.000267796257629516 0.999997650858939 100 -1.18299316081823 1 1 4.58883e-10 3.31869e-06 -72 2 1 -2.31764689791562 1.714303473703 0 0.00135071471707056 -0.00027862219817959 0.99999904896926 100 -1.18301408531431 1 1 4.58902e-10 3.31876e-06 -73 2 1 -2.3361401415162 1.67878791374885 0 0.000550376743770319 -0.000293299676524805 0.999999805530351 100 -1.18301998635059 1 1 4.58924e-10 3.31884e-06 -74 2 1 -2.3545524990284 1.64322251397354 0 -0.000250041108521564 -0.000311830555654258 0.999999920120571 100 -1.18301085343842 1 1 4.58947e-10 3.31892e-06 -75 2 1 -2.37288402408321 1.60760720936682 0 -0.00105051038995199 -0.000334216426473244 0.999999392363466 100 -1.18298667587794 1 1 4.66823e-10 3.34728e-06 -76 2 1 -2.39113476972935 1.57194193359092 0 -0.00185100262587376 -0.000360458607359115 0.999998221927855 100 -1.18294744274067 1 1 4.66851e-10 3.34738e-06 -77 2 1 -2.40930478841748 1.53622661898529 0 -0.00265148932019735 -0.00039055814376765 0.999996408527911 100 -1.18289314287051 1 0.999712 0.0239977 -1.30985e-06 -78 2 1 -2.42739413198452 1.50046119657223 0 -0.00345194195875007 -0.000424515807886716 0.999993951923232 100 -1.18282376488401 1 0.999712 0.0239977 -1.30997e-06 -79 2 1 -2.44540285163814 1.46464559606399 0 -0.00425233201264161 -0.000462332098340235 0.999990851918899 100 -1.18273929718396 1 0.999712 0.0239977 -1.99504e-06 -80 2 1 -2.46333099794116 1.4287797458687 0 -0.00505263094163488 -0.000504007239935433 0.999987108365538 100 -1.18263972794273 1 1 4.78933e-10 3.39042e-06 -81 2 1 -2.48117862079626 1.39286357309837 0 -0.00585281019752199 -0.000549541183465119 0.999982721159361 100 -1.18252504511997 1 0.999712 0.0239977 -1.96677e-06 -82 2 1 -2.49894576943055 1.35689700357317 0 -0.00665284122750352 -0.000598933605554797 0.999977690242206 100 -1.18239523644206 1 1 2.0906e-13 -7.08361e-08 -83 2 1 -2.51663249238046 1.32087996183238 0 -0.00745269547757151 -0.000652183908558035 0.999972015601571 100 -1.182250289428 1 1 4.59242e-10 3.31999e-06 -84 2 1 -2.24549623789567 1.76514817586544 0 0.00301625791424627 0.000494170155463436 0.999995328981117 100 -1.18285559935009 1 1 4.57771e-10 3.31467e-06 -85 2 1 -2.2640944879261 1.72982029080462 0 0.00221245698876102 0.000487507596904746 0.999997433681915 100 -1.18291927147914 1 1 4.57789e-10 3.31473e-06 -86 2 1 -2.28261173429543 1.69444282187827 0 0.00140851635703272 0.000476968461428084 0.999998894290768 100 -1.1829679509965 1 1 4.57808e-10 3.3148e-06 -87 2 1 -2.30104803272884 1.65901570676155 0 0.000604464675536642 0.000462550577092324 0.999999710334668 100 -1.18300162768287 1 0.999712 0.0239977 -1.99367e-06 -88 2 1 -2.31940343840018 1.62353888177809 0 -0.000199669367214132 0.000444252046760851 0.999999881386125 100 -1.1830202910927 1 0.999712 0.0239977 -1.99366e-06 -89 2 1 -2.33767800591573 1.5880122819041 0 -0.00100385705405048 0.000422071248602718 0.999999407063262 100 -1.18302393053818 1 0.999712 0.0239977 -1.307e-06 -90 2 1 -2.35587178929831 1.55243584077501 0 -0.0018080696425388 0.000396006836541896 0.999998287029909 100 -1.18301253511868 1 1 4.69768e-10 3.35782e-06 -91 2 1 -2.37398484197134 1.51680949069048 0 -0.00261227836838015 0.00036605774066073 0.999996520995676 100 -1.18298609370186 1 1 4.57933e-10 3.31525e-06 -92 2 1 -2.392017216743 1.48113316262173 0 -0.00341645444881708 0.000332223167552492 0.999994108716029 100 -1.18294459492552 1 1 4.57964e-10 3.31537e-06 -93 2 1 -2.40996896579047 1.44540678621677 0 -0.0042205690860469 0.000294502600624746 0.999991049992352 100 -1.18288802721077 1 0.999712 0.0239977 -1.27918e-06 -94 2 1 -2.42784014064426 1.40963028980815 0 -0.0050245934706406 0.000252895800355812 0.999987344672006 100 -1.18281637875248 1 1 4.58031e-10 3.31561e-06 -95 2 1 -2.44563079217248 1.37380360041763 0 -0.00582849878496654 0.000207402804500822 0.99998299264837 100 -1.18272963751383 1 0.999712 0.0239977 -1.27945e-06 -96 2 1 -2.46334097056561 1.33792664376537 0 -0.00663225620661833 0.000158023928243489 0.999977993860889 100 -1.18262779125553 1 1 3.33379e-14 -2.82861e-08 -97 2 1 -2.48097072532082 1.30199934427718 0 -0.00743583691184548 0.00010475976431068 0.999972348295097 100 -1.18251082749657 1 0.999712 0.0239977 -2.00798e-06 -98 2 1 -2.2106639669178 1.74513067161788 0 0.00308192736905157 0.00125275440004496 0.999994466149741 100 -1.18276687160267 1 1 7.62133e-14 -4.27692e-08 -99 2 1 -2.2292052077033 1.70989093485006 0 0.00227439245729592 0.00124640958227695 0.999996636795396 100 -1.18285827238924 1 1 4.56695e-10 3.31077e-06 -100 2 1 -2.24766543595027 1.67460174493844 0 0.00146671478036313 0.00123616075754002 0.999998160325475 100 -1.18293470119693 1 1 3.33761e-14 -2.83033e-08 -101 2 1 -2.26604470837109 1.63926303957161 0 0.000658923264085033 0.00122200571591768 0.999999036260617 100 -1.18299614783461 1 0.999712 0.0239977 -1.96397e-06 -102 2 1 -2.28434308112601 1.60387475507239 0 -0.000148953133093242 0.00120394252555162 0.999999264167409 100 -1.18304260188086 1 0.999712 0.0239977 -1.96396e-06 -103 2 1 -2.30256060980688 1.56843682640558 0 -0.00095688542354321 0.00118196953315319 0.999998843658486 100 -1.18307405267558 1 0.999712 0.0239977 -1.27607e-06 -104 2 1 -2.32069734942086 1.532949187181 0 -0.00176484459389226 0.00115608536446421 0.999997774392618 100 -1.18309048935225 1 1 4.56809e-10 3.31119e-06 -105 2 1 -2.33875335437437 1.4974117696608 0 -0.00257280160847123 0.0011262889246666 0.999996056074794 100 -1.18309190078753 1 0.999712 0.0239977 -2.0067e-06 -106 2 1 -2.35672867845709 1.46182450476654 0 -0.00338072741276976 0.00109257939874335 0.999993688456291 100 -1.18307827565047 1 1 4.6874e-10 3.35415e-06 -107 2 1 -2.37462337482599 1.42618732208263 0 -0.00418859293689812 0.00105495625178659 0.999990671334746 100 -1.18304960237879 1 0.999712 0.0239977 -2.00668e-06 -108 2 1 -2.39243749598944 1.39050014986659 0 -0.00499636909905476 0.00101341922926262 0.999987004554205 100 -1.18300586918076 1 0.999712 0.0239977 -1.3194e-06 -109 2 1 -2.41017109379143 1.35476291505241 0 -0.0058040268089989 0.000967968357219018 0.999982688005177 100 -1.1829470640464 1 1 4.64816e-10 3.34008e-06 -110 2 1 -2.4278242193959 1.31897554325983 0 -0.00661153697152724 0.00091860394244625 0.999977721624673 100 -1.18287317474051 1 1 4.76824e-10 3.38295e-06 -111 2 1 -2.44539692327111 1.28313795880111 0 -0.00741887048995375 0.000865326572588865 0.999972105396234 100 -1.18278418880732 1 0.999712 0.0239977 -1.30541e-06 -112 2 1 -2.17592073729879 1.72513278030353 0 0.00314805012312138 0.00201495800577434 0.999993014837932 100 -1.18269107834158 1 0.999712 0.0239977 -1.27301e-06 -113 2 1 -2.19440488775356 1.68998115490886 0 0.00233675494021345 0.00200893473972552 0.999995251867508 100 -1.18281020203153 1 0.999712 0.0239977 -1.96256e-06 -114 2 1 -2.21280801653839 1.65478020787675 0 0.0015253138888773 0.00199897977731039 0.999996838743698 100 -1.18291437439495 1 0.999712 0.0239977 -2.0054e-06 -115 2 1 -2.23113018136319 1.61952987691125 0 0.000713756167468464 0.00198509087000315 0.99999777498071 100 -1.18300358527449 1 0.999712 0.0239977 -1.30156e-06 -116 2 1 -2.24937143938499 1.58423009833803 0 -9.78889924580449e-05 0.00196726605063735 0.999998060139134 100 -1.18307782427473 1 1 4.63503e-10 3.33536e-06 -117 2 1 -2.26753184719149 1.5488808071103 0 -0.000909592329626336 0.00194550363392787 0.999997693826043 100 -1.18313708076937 1 1 4.63527e-10 3.33544e-06 -118 2 1 -2.28561146078456 1.51348193681539 0 -0.00172132455652774 0.0019198022169411 0.999996675695084 100 -1.18318134390552 1 0.999712 0.0239977 -1.34468e-06 -119 2 1 -2.30361033556403 1.47803341967978 0 -0.00253305636291763 0.00189016067951253 0.999995005446561 100 -1.18321060259245 1 1 4.63583e-10 3.33564e-06 -120 2 1 -2.32152852631152 1.44253518657498 0 -0.00334475841931992 0.00185657818461227 0.99999268282751 100 -1.18322484551868 1 0.999712 0.0239977 -1.30208e-06 -121 2 1 -2.3393660871741 1.40698716702476 0 -0.00415640138053799 0.0018190541786684 0.999989707631763 100 -1.18322406114203 1 1 4.67686e-10 3.35037e-06 -122 2 1 -2.35712307164848 1.37138928921163 0 -0.00496795588917222 0.00177758839182757 0.999986079700009 100 -1.18320823768909 1 1 4.55841e-10 3.30767e-06 -123 2 1 -2.37479953256482 1.33574147998277 0 -0.00577939257914198 0.00173218083817428 0.999981798919841 100 -1.18317736316828 1 0.999712 0.0239977 -1.27415e-06 -124 2 1 -2.39239552207111 1.30004366485894 0 -0.00659068207921216 0.00168283181589196 0.999976865225796 100 -1.18313142535771 1 1 4.55915e-10 3.30794e-06 -125 2 1 -2.409911091617 1.26429576803964 0 -0.00740179501652263 0.00162954190738257 0.999971278599393 100 -1.18307041181583 1 1 4.67831e-10 3.35089e-06 -126 2 1 -2.14126656432408 1.7051544666395 0 0.00321463061575192 0.0027808061901628 0.999990966592667 100 -1.18262825837269 1 0.999712 0.0239977 -1.31329e-06 -127 2 1 -2.15969354262224 1.67009091541544 0 0.00239954863155817 0.00277510833640737 0.999993270447399 100 -1.18277509920836 1 1 7.67858e-14 -4.29295e-08 -128 2 1 -2.1780394898615 1.63497817485537 0 0.00158431763067912 0.00276545083449276 0.999994921096766 100 -1.1829070093977 1 1 4.62362e-10 3.33125e-06 -129 2 1 -2.19630446475975 1.59981618267991 0 0.000768967087205756 0.0027518313966392 0.99999591804846 100 -1.1830239788128 1 1 4.62383e-10 3.33132e-06 -130 2 1 -2.21448852548132 1.56460487521938 0 -4.64734909742994e-05 0.00273424801977523 0.999996260857 100 -1.18312599708395 1 1 4.54572e-10 3.30307e-06 -131 2 1 -2.23259172962025 1.52934418741857 0 -0.000861974565704916 0.00271269898606918 0.999995949123824 100 -1.18321305362019 1 0.999712 0.0239977 -1.96112e-06 -132 2 1 -2.2506141341836 1.49403405284306 0 -0.00167750657209916 0.0026871828634098 0.999994982497392 100 -1.18328513758695 1 1 4.54622e-10 3.30325e-06 -133 2 1 -2.26855579557514 1.45867440368478 0 -0.00249303992208617 0.0026576985058307 0.999993360673259 100 -1.18334223792226 1 0.999712 0.0239977 -1.27098e-06 -134 2 1 -2.2864167695789 1.42326517076758 0 -0.00330854500796556 0.00262424505388459 0.999991083394161 100 -1.18338434333714 1 0.999712 0.0239977 -1.2711e-06 -135 2 1 -2.30419711134275 1.38780628355534 0 -0.00412399220596874 0.00258682193497239 0.999988150450075 100 -1.18341144230953 1 0.999712 0.0239977 -1.96111e-06 -136 2 1 -2.32189687536213 1.35229767015722 0 -0.00493935187982652 0.00254542886361331 0.999984561678283 100 -1.18342352308093 1 1 4.66633e-10 3.3466e-06 -137 2 1 -2.33951611546405 1.31673925733442 0 -0.00575459438434188 0.00250006584166379 0.999980316963419 100 -1.18342057368045 1 0.999712 0.0239977 -1.9611e-06 -138 2 1 -2.35705488479093 1.28113097050825 0 -0.00656969006896678 0.00245073315848743 0.999975416237511 100 -1.18340258190369 1 0.999712 0.0239977 -2.00399e-06 -139 2 1 -2.37451323578454 1.24547273376749 0 -0.0073846092813826 0.00239743139107446 0.999969859480018 100 -1.183369535319 1 1 4.5486e-10 3.30411e-06 -140 2 1 -2.10670146344338 1.68519569450811 0 0.00328167333886619 0.00355032439836089 0.999988312840087 100 -1.18257845086544 1 1 3.35044e-14 -2.83581e-08 -141 2 1 -2.12507118700972 1.65022017996778 0 0.00246277777516358 0.00354495586785758 0.999990683963368 100 -1.18275300308824 1 1 2.12223e-13 -7.13696e-08 -142 2 1 -2.14335986986706 1.61519560919576 0 0.0016437300008115 0.00353559947191368 0.99999239881514 100 -1.18291264537061 1 0.999712 0.0239977 -1.95973e-06 -143 2 1 -2.16156757175195 1.58012191993203 0 0.000824559768893423 0.00352225288283886 0.999993456896503 100 -1.18305736761533 1 1 4.53457e-10 3.29901e-06 -144 2 1 -2.1796943518465 1.54499904851413 0 5.29686689801009e-06 0.00350491406105136 0.99999385775582 100 -1.18318715947794 1 1 4.53479e-10 3.29909e-06 -145 2 1 -2.19774026876169 1.50982692987929 0 -0.000814028886859721 0.00348358125561304 0.99999360098883 100 -1.18330201039771 1 0.999712 0.0239977 -1.95971e-06 -146 2 1 -2.21570538052055 1.47460549757393 0 -0.00163338764682655 0.00345825300472186 0.99999268623873 100 -1.18340190956553 1 1 4.53529e-10 3.29928e-06 -147 2 1 -2.23358974454139 1.43933468375667 0 -0.00245274954380846 0.00342892813614676 0.999991113196269 100 -1.18348684594537 1 1 4.65455e-10 3.34237e-06 -148 2 1 -2.25139341762132 1.40401441920578 0 -0.00327208468857609 0.0033956057676095 0.999988881599822 100 -1.18355680827017 1 0.999712 0.0239977 -1.98805e-06 -149 2 1 -2.26911645591964 1.36864463332585 0 -0.00409136317547707 0.00335828530711768 0.999985991235458 100 -1.18361178503596 1 1 7.69922e-14 -4.29867e-08 -150 2 1 -2.28675891494137 1.33322525415346 0 -0.00491055508605489 0.00331696645324325 0.999982441937005 100 -1.18365176451152 1 0.999712 0.0239977 -1.34004e-06 -151 2 1 -2.30432084952096 1.29775620836581 0 -0.00572963049267271 0.00327164919534823 0.999978233586092 100 -1.18367673474063 1 0.999712 0.0239977 -1.29719e-06 -152 2 1 -2.32180231380599 1.26223742128516 0 -0.00654855946214193 0.00322233381375653 0.9999733661122 100 -1.18368668353025 1 0.999712 0.0239977 -1.31195e-06 -153 2 1 -2.33920336124102 1.22666881688953 0 -0.00736731205935389 0.00316902087987653 0.999967839492692 100 -1.18368159846739 1 1 4.53766e-10 3.30014e-06 -154 2 1 -2.07222545027287 1.66525642694701 0 0.00334918283775462 0.00432353830564908 0.999985044883592 100 -1.18254169533691 1 1 4.60136e-10 3.32322e-06 -155 2 1 -2.0905378357737 1.63036891131461 0 0.00252644666535319 0.00431850306048587 0.999987483720953 100 -1.18274395319077 1 0.999712 0.0239977 -1.29349e-06 -156 2 1 -2.10876917065061 1.59543247336736 0 0.00170355504191794 0.00430945146397771 0.99998926320651 100 -1.18293132183044 1 1 4.60171e-10 3.32335e-06 -157 2 1 -2.12691951566941 1.56044705086778 0 0.000880538002828119 0.0042963811478593 0.999990382834684 100 -1.18310379118816 1 0.999712 0.0239977 -1.29365e-06 -158 2 1 -2.14498893104096 1.52541258016067 0 5.74256184876121e-05 0.0042792900354135 0.999990842147613 100 -1.18326135096379 1 0.999712 0.0239977 -1.29373e-06 -159 2 1 -2.1629774764039 1.49032899618029 0 -0.000765752009304371 0.00425817634202952 0.999990640735252 100 -1.18340399060799 1 1 4.60237e-10 3.32359e-06 -160 2 1 -2.1808852108079 1.45519623245382 0 -0.00158896475099341 0.00423303857569368 0.999989778235476 100 -1.1835316993479 1 0.999712 0.0239977 -1.33701e-06 -161 2 1 -2.19871219269675 1.4200142211095 0 -0.00241218245291876 0.0042038755374374 0.99998825433416 100 -1.18364446616818 1 0.999712 0.0239977 -1.26566e-06 -162 2 1 -2.21645847989148 1.38478289288058 0 -0.00323537494097031 0.00417068632172707 0.999986068765259 100 -1.18374227982326 1 0.999712 0.0239977 -2.00136e-06 -163 2 1 -2.23412412957357 1.34950217711383 0 -0.00405851202425295 0.00413347031680611 0.999983221310882 100 -1.18382512883443 1 1 4.52527e-10 3.29563e-06 -164 2 1 -2.25170919826848 1.31417200177548 0 -0.00488156349875754 0.00409222720497593 0.99997971180135 100 -1.18389300149147 1 1 2.1266e-13 -7.14426e-08 -165 2 1 -2.26921374182894 1.27879229345777 0 -0.00570449915103685 0.0040469569628292 0.999975540115245 100 -1.18394588584954 1 0.999712 0.0239977 -1.95827e-06 -166 2 1 -2.28663781541862 1.24336297738672 0 -0.00652728876188643 0.00399765986142536 0.999970706179462 100 -1.18398376974596 1 1 2.12613e-13 -7.1434e-08 -167 2 1 -2.30398147349561 1.20788397742946 0 -0.00734990211002853 0.00394433646641951 0.999965209969233 100 -1.18400664077114 1 1 3.35548e-14 -2.83779e-08 -168 2 1 -2.03783854059815 1.64533662613837 0 0.00341716371182619 0.00510047381994189 0.999981153901902 100 -1.1825180316564 1 1 4.59041e-10 3.31927e-06 -169 2 1 -2.05609350393171 1.61053707134564 0 0.00259055964765261 0.00509577587410087 0.999983660900993 100 -1.18274798938376 1 0.999712 0.0239977 -1.26245e-06 -170 2 1 -2.07426740645789 1.57568872897686 0 0.00176379684491497 0.00508703281920803 0.999985505453847 100 -1.18296307864921 1 0.999712 0.0239977 -2.00008e-06 -171 2 1 -2.09236030998268 1.54079153681902 0 0.000936905624638193 0.00507424224574188 0.999986687048124 100 -1.18316328941819 1 1 2.13399e-13 -7.15668e-08 -172 2 1 -2.11037227575637 1.50584543122841 0 0.000109916343503312 0.00505740203922622 0.999987205219653 100 -1.18334861141693 1 0.999712 0.0239977 -1.95689e-06 -173 2 1 -2.1283033644564 1.47085034713601 0 -0.000717140609834242 0.00503651038079039 0.999987059552537 100 -1.18351903413145 1 0.999712 0.0239977 -1.95689e-06 -174 2 1 -2.14615363617002 1.43580621805289 0 -0.00154423481843655 0.00501156574767969 0.999986249679256 100 -1.18367454680742 1 1 4.51346e-10 3.29133e-06 -175 2 1 -2.16392315037736 1.40071297607798 0 -0.00237133584078458 0.00498256691370857 0.999984775280745 100 -1.18381513846225 1 1 4.63289e-10 3.33459e-06 -176 2 1 -2.1816119659343 1.36557055190149 0 -0.0031984132144879 0.00494951294965867 0.999982636086483 100 -1.18394079787072 1 0.999712 0.0239977 -1.30627e-06 -177 2 1 -2.19922014105566 1.33037887481405 0 -0.00402543646000197 0.00491240322362563 0.99997983187456 100 -1.18405151357729 1 0.999712 0.0239977 -2.00002e-06 -178 2 1 -2.21674773329817 1.29513787271124 0 -0.00485237508435154 0.0048712374013119 0.999976362471744 100 -1.18414727389211 1 0.999712 0.0239977 -1.30651e-06 -179 2 1 -2.23419479954395 1.25984747210338 0 -0.00567919858486015 0.00482601544626121 0.999972227753524 100 -1.18422806688613 1 1 4.51503e-10 3.2919e-06 -180 2 1 -2.25156139598362 1.22450759811922 0 -0.00650587645288371 0.00477673762004205 0.999967427644165 100 -1.18429388041341 1 0.999712 0.0239977 -1.30678e-06 -181 2 1 -2.26884757809996 1.18911817451654 0 -0.0073323781775481 0.00472340448237374 0.999961962116739 100 -1.18434470208877 1 0.999712 0.0239977 -2.02838e-06 -182 2 1 -2.00354075037655 1.62543625339795 0 0.00348562061537297 0.00588115708433873 0.999976630947082 100 -1.18250750006405 1 0.999712 0.0239977 -1.9555e-06 -183 2 1 -2.02173820666356 1.59072462107984 0 0.0026551211195133 0.00587680050446748 0.999979206557652 100 -1.1827651519086 1 0.999712 0.0239977 -1.9555e-06 -184 2 1 -2.03985459168733 1.5559643367566 0 0.00182445954967525 0.00586836978281241 0.999981116613431 100 -1.18300795606797 1 1 4.62092e-10 3.33027e-06 -185 2 1 -2.05788996830502 1.5211553382418 0 0.000993666515926937 0.00585586246790465 0.999982360595232 100 -1.18323590253681 1 1 2.14008e-13 -7.16683e-08 -186 2 1 -2.07584439881757 1.48629756190497 0 0.000162772664635711 0.00583927640686299 0.999982938032497 100 -1.18344898107648 1 1 2.13994e-13 -7.16657e-08 -187 2 1 -2.09371794495213 1.45139094267679 0 -0.000668191325266123 0.00581860974597004 0.999982848503402 100 -1.18364718119938 1 1 7.79359e-14 -4.32492e-08 -188 2 1 -2.11151066784465 1.41643541405385 0 -0.00149919474602656 0.00579386093118855 0.999982091634957 100 -1.18383049218221 1 1 4.70099e-10 3.35901e-06 -189 2 1 -2.12922262802276 1.38143090810698 0 -0.00233020686482868 0.00576502870862416 0.999980667103097 100 -1.18399890306557 1 0.999712 0.0239977 -1.98388e-06 -190 2 1 -2.14685388538834 1.34637735548526 0 -0.00316119692755356 0.00573211212493524 0.999978574632763 100 -1.18415240264881 1 0.999712 0.0239977 -1.33209e-06 -191 2 1 -2.16440449920056 1.31127468542422 0 -0.00399213416255136 0.00569511052768396 0.999975813997972 100 -1.18429097949718 1 0.999712 0.0239977 -1.3038e-06 -192 2 1 -2.18187452805873 1.27612282575135 0 -0.00482298778441871 0.00565402356563571 0.999972385021882 100 -1.18441462194255 1 0.999712 0.0239977 -1.99868e-06 -193 2 1 -2.19926402988534 1.24092170289403 0 -0.00565372699778176 0.00560885118900151 0.999968287576848 100 -1.18452331808089 1 0.999712 0.0239977 -1.95545e-06 -194 2 1 -2.21657306190929 1.20567124188633 0 -0.00648432100108423 0.00555959364962266 0.999963521584466 100 -1.18461705577477 1 1 4.50449e-10 3.28805e-06 -195 2 1 -2.23380168064894 1.17037136637646 0 -0.00731473899037878 0.00550625150110634 0.999958087015606 100 -1.184695822653 1 0.999712 0.0239977 -1.26112e-06 -196 2 1 -2.45635889637051 1.88566694638419 0 0.00263151831936288 -0.00398271283672563 0.999988606489992 100 -1.18365745854726 1 0.999712 0.0239977 -1.29406e-06 -197 2 1 -2.47529753939204 1.84980941156583 0 0.00184958271503833 -0.00399120450094326 0.9999903246184 100 -1.18355463789283 1 1 4.64363e-10 3.33845e-06 -198 2 1 -2.49415522687709 1.81390152454616 0 0.00106752486454876 -0.00400341344254973 0.999991416498898 100 -1.1834367013679 1 0.999712 0.0239977 -1.97392e-06 -199 2 1 -2.51293200883655 1.77794322296657 0 0.000285371872333516 -0.00401934161829565 0.999991881694972 100 -1.18330363858911 1 0.999712 0.0239977 -1.33651e-06 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -2.45635889637051 1.88566694638419 0 0.00263151831936288 -0.00398271283672563 0.999988606489992 100 -1.18365745854726 1 0.999712 0.0239977 -1.29406e-06 +1 2 1 -2.47529753939204 1.84980941156583 0 0.00184958271503833 -0.00399120450094326 0.9999903246184 100 -1.18355463789283 1 1 4.64363e-10 3.33845e-06 +2 2 1 -2.49415522687709 1.81390152454616 0 0.00106752486454876 -0.00400341344254973 0.999991416498898 100 -1.1834367013679 1 0.999712 0.0239977 -1.97392e-06 +3 2 1 -2.51293200883655 1.77794322296657 0 0.000285371872333516 -0.00401934161829565 0.999991881694972 100 -1.18330363858911 1 0.999712 0.0239977 -1.33651e-06 +4 2 1 -2.5316279347348 1.74193444318747 0 -0.000496849128368752 -0.00403899072872632 0.999991719813138 100 -1.183155438943 1 1 4.72302e-10 3.36687e-06 +5 2 1 -2.55024305347502 1.70587512029685 0 -0.0012791109786313 -0.00406236221774148 0.99999093050303 100 -1.18299209160512 1 1 4.84243e-10 3.40916e-06 +6 2 1 -2.56877741338392 1.66976518811361 0 -0.00206138649695708 -0.00408945727218885 0.999989513457481 100 -1.18281358553008 1 1 4.84271e-10 3.40926e-06 +7 2 1 -2.58723106219728 1.63360457919397 0 -0.0028436484824051 -0.00412027682151422 0.999987468412591 100 -1.1826199094545 1 1 7.4175e-14 -4.21937e-08 +8 2 1 -2.60560404704486 1.59739322483754 0 -0.00362586971772215 -0.0041548215374439 0.999984795147797 100 -1.18241105189952 1 0.999712 0.0239977 -1.29485e-06 +9 2 1 -2.62389641443587 1.56113105509377 0 -0.00440802297248096 -0.00419309183371985 0.999981493485929 100 -1.18218700117143 1 1 4.6458e-10 3.33923e-06 +10 2 1 -2.64210821024423 1.52481799876715 0 -0.00519008100622287 -0.00423508786587479 0.999977563293256 100 -1.18194774535766 1 1 4.64616e-10 3.33936e-06 +11 2 1 -2.66023947969421 1.48845398342508 0 -0.00597201657160508 -0.00428080953105631 0.999973004479535 100 -1.18169327234614 1 0.999712 0.0239977 -1.29526e-06 +12 2 1 -2.67829026734584 1.45203893540435 0 -0.00675380241755095 -0.0043302564678907 0.999967816998041 100 -1.18142356979376 1 0.999712 0.0239977 -1.97388e-06 +13 2 1 -2.6962606170806 1.41557277981757 0 -0.00753541129240319 -0.00438342805639574 0.999962000845597 100 -1.18113862515554 1 0.999712 0.0239977 -2.01604e-06 +14 2 1 -2.42099268935324 1.86553106897005 0 0.00269455834696468 -0.00324532763431706 0.999991103562357 100 -1.18349192033133 1 0.999712 0.0239977 -2.0007e-06 +15 2 1 -2.43987479459938 1.82976189824854 0 0.00190904146953959 -0.00325352342047808 0.999992885047699 100 -1.18341686285055 1 1 4.83057e-10 3.40498e-06 +16 2 1 -2.45867593688345 1.79394250152063 0 0.00112339953909116 -0.00326546241971265 0.999994037346554 100 -1.1833267099812 1 0.999712 0.0239977 -2.00069e-06 +17 2 1 -2.47739616714448 1.75807281642762 0 0.000337659911309086 -0.00328114662318096 0.999994560016514 100 -1.18322145135949 1 0.999712 0.0239977 -2.01478e-06 +18 2 1 -2.49603553577419 1.72215277932054 0 -0.000448150028802459 -0.00330057776284542 0.999994452658605 100 -1.18310107640548 1 0.999712 0.0239977 -2.01477e-06 +19 2 1 -2.51459409260191 1.6861823252634 0 -0.00123400287007897 -0.00332375731101958 0.999993714917376 100 -1.18296557431847 1 1 4.75182e-10 3.37712e-06 +20 2 1 -2.53307188687939 1.65016138804118 0 -0.00201987117835761 -0.00335068647995695 0.99999234648098 100 -1.18281493406892 1 1 4.63386e-10 3.33494e-06 +21 2 1 -2.55146896726596 1.61408990016428 0 -0.00280572749964688 -0.00338136622149021 0.999990347081247 100 -1.18264914441818 1 0.999712 0.0239977 -2.01475e-06 +22 2 1 -2.56978538181336 1.57796779287383 0 -0.00359154436330257 -0.00341579722671059 0.999987716493754 100 -1.18246819390504 1 1 4.63448e-10 3.33516e-06 +23 2 1 -2.58802117795103 1.54179499614988 0 -0.00437729428520974 -0.00345397992569435 0.999984454537876 100 -1.18227207085238 1 1 4.63481e-10 3.33528e-06 +24 2 1 -2.60617640247128 1.50557143871608 0 -0.00516294977096982 -0.00349591448727615 0.999980561076844 100 -1.1820607633698 1 1 2.06821e-13 -7.04544e-08 +25 2 1 -2.62425110151455 1.46929704804676 0 -0.00594848331909175 -0.00354160081886529 0.999976036017785 100 -1.18183425934933 1 1 3.31228e-14 -2.81943e-08 +26 2 1 -2.64224532055484 1.43297175037445 0 -0.00673386742418692 -0.00359103856630805 0.999970879311757 100 -1.18159254647048 1 0.999712 0.0239977 -1.32098e-06 +27 2 1 -2.66015910438515 1.39659547069594 0 -0.00751907458016668 -0.00364422711379669 0.99996509095378 100 -1.18133561219634 1 0.999712 0.0239977 -1.32113e-06 +28 2 1 -2.38571543529158 1.84541499925932 0 0.00275802610325512 -0.00250446973046631 0.999993060437613 100 -1.18333909066689 1 0.999712 0.0239977 -1.97109e-06 +29 2 1 -2.404540925932 1.8097341573312 0 0.00196890308186925 -0.00251236611072198 0.999994905705614 100 -1.18329179061368 1 0.999712 0.0239977 -1.97108e-06 +30 2 1 -2.42328544595106 1.77400321632422 0 0.00117965216017962 -0.00252403188164996 0.999996118834389 100 -1.18322941567499 1 1 4.74022e-10 3.37299e-06 +31 2 1 -2.44194904722545 1.73822211388379 0 0.000390300948040588 -0.00253946906938707 0.999996699375561 100 -1.18315195551759 1 1 4.62211e-10 3.33071e-06 +32 2 1 -2.46053178108378 1.70239078635005 0 -0.000399122914854304 -0.00255867943784099 0.999996646924595 100 -1.18305939958657 1 1 4.62235e-10 3.33079e-06 +33 2 1 -2.47903369829109 1.66650916876729 0 -0.00118859176217015 -0.00258166448822278 0.99999596112089 100 -1.18295173710203 1 1 4.62261e-10 3.33088e-06 +34 2 1 -2.49745484903374 1.63057719488689 0 -0.00197807790413759 -0.0026084254586341 0.99999464164786 100 -1.18282895706159 1 0.999712 0.0239977 -1.31758e-06 +35 2 1 -2.51579528290413 1.59459479717427 0 -0.00276755363076647 -0.00263896332369384 0.999992688233007 100 -1.18269104824537 1 0.999712 0.0239977 -1.31769e-06 +36 2 1 -2.53405504888565 1.55856190681428 0 -0.00355699121506678 -0.00267327879421592 0.999990100647994 100 -1.1825379992132 1 1 4.82144e-10 3.40176e-06 +37 2 1 -2.55223419533759 1.52247845371829 0 -0.00434636291627527 -0.00271137231692659 0.999986878708696 100 -1.18236979830613 1 1 4.70248e-10 3.35954e-06 +38 2 1 -2.5703327699801 1.48634436652987 0 -0.0051356409830873 -0.00275324407423133 0.999983022275259 100 -1.18218643364889 1 1 4.70284e-10 3.35967e-06 +39 2 1 -2.5883508198795 1.45015957263141 0 -0.00592479765689327 -0.00279889398403127 0.999978531252142 100 -1.18198789314692 1 1 4.70321e-10 3.3598e-06 +40 2 1 -2.60628839143333 1.41392399815115 0 -0.00671380517501834 -0.00284832169957927 0.999973405588153 100 -1.18177416449248 1 0.999712 0.0239977 -1.29016e-06 +41 2 1 -2.62414553035573 1.37763756797125 0 -0.00750263577396524 -0.00290152660938481 0.999967645276475 100 -1.18154523516614 1 1 4.74362e-10 3.3742e-06 +42 2 1 -2.3505271485373 1.82531870675543 0 0.00282192572665766 -0.00176011522309871 0.999994469349503 100 -1.18319900641382 1 0.999712 0.0239977 -1.28619e-06 +43 2 1 -2.36929594705376 1.78972615805556 0 0.002029171461441 -0.00176770862412379 0.999996378828144 100 -1.18317945803472 1 1 4.61073e-10 3.3266e-06 +44 2 1 -2.38798376705267 1.7540836379474 0 0.00123628640759624 -0.00177909783813957 0.999997653200647 100 -1.18314485530061 1 0.999712 0.0239977 -1.28635e-06 +45 2 1 -2.40659066135805 1.71839108407957 0 0.000443298432097156 -0.00179428492684081 0.999998292012592 100 -1.18309518791045 1 1 4.72955e-10 3.36919e-06 +46 2 1 -2.42511668224491 1.68264843278538 0 -0.00034976456770857 -0.00181327168661222 0.999998294853815 100 -1.18303044532797 1 0.999712 0.0239977 -1.31476e-06 +47 2 1 -2.44356188142382 1.64685561908965 0 -0.00114287466734243 -0.00183605964805839 0.999997661358497 100 -1.18295061680067 1 1 4.69024e-10 3.35516e-06 +48 2 1 -2.46192631002535 1.61101257671263 0 -0.0019360039184466 -0.00186265007557751 0.99999639120525 100 -1.18285569134935 1 0.999712 0.0239977 -1.3574e-06 +49 2 1 -2.48021001858482 1.57511923807548 0 -0.00272912435204317 -0.00189304396698542 0.999994484117192 100 -1.18274565777676 1 0.999712 0.0239977 -1.96963e-06 +50 2 1 -2.49841305702686 1.53917553430871 0 -0.00352220798180014 -0.00192724205317901 0.999991939862018 100 -1.18262050466274 1 1 4.61252e-10 3.32725e-06 +51 2 1 -2.51653547465034 1.50318139525574 0 -0.00431522680730374 -0.00196524479785543 0.999988758252055 100 -1.18248022036141 1 1 4.61285e-10 3.32737e-06 +52 2 1 -2.53457732011305 1.46713674948063 0 -0.00510815281733587 -0.00200705239726989 0.99998493914432 100 -1.18232479301901 1 1 4.61321e-10 3.3275e-06 +53 2 1 -2.55253864141687 1.43104152427455 0 -0.00590095799315624 -0.0020526647800484 0.999980482440564 100 -1.18215421056073 1 0.999712 0.0239977 -1.28737e-06 +54 2 1 -2.57041948589263 1.39489564566328 0 -0.00669361431178784 -0.00210208160703845 0.999975388087308 100 -1.18196846068327 1 1 4.73231e-10 3.37018e-06 +55 2 1 -2.58821990018531 1.3586990384129 0 -0.00748609374930575 -0.00215530227121474 0.999969656075871 100 -1.18176753088414 1 0.999712 0.0239977 -1.33008e-06 +56 2 1 -2.31542784359175 1.8052421601884 0 0.00288626140402464 -0.00101223999675404 0.999995322421709 100 -1.1830717047294 1 0.999712 0.0239977 -1.99649e-06 +57 2 1 -2.33413987176989 1.76973786888863 0 0.00208985056348089 -0.00101952679908157 0.99999729654121 100 -1.18307990227618 1 1 0 0 +58 2 1 -2.35277091329395 1.73418373460004 0 0.00129330600430862 -0.00103063608428294 0.999998632573486 100 -1.18307306602151 1 1 4.67852e-10 3.35097e-06 +59 2 1 -2.37132102194515 1.69857969497755 0 0.000496655853596716 -0.00104556995020005 0.999999330057996 100 -1.18305118569356 1 0.999712 0.0239977 -1.96822e-06 +60 2 1 -2.3897902509548 1.66292568635032 0 -0.000300071730647287 -0.00106433022624192 0.999999388578876 100 -1.18301425078516 1 0.999712 0.0239977 -1.32642e-06 +61 2 1 -2.40817865298865 1.6272216437241 0 -0.00109684856278613 -0.00108691847290748 0.999998807765021 100 -1.18296225056508 1 1 4.60068e-10 3.32297e-06 +62 2 1 -2.42648628013143 1.59146750079018 0 -0.00189364643285023 -0.00111333598135122 0.999997587290179 100 -1.18289517408402 1 0.999712 0.0239977 -1.96821e-06 +63 2 1 -2.44471318387109 1.5556631899274 0 -0.00269043710984265 -0.00114358377299734 0.999995726873026 100 -1.18281301015963 1 1 3.32512e-14 -2.82489e-08 +64 2 1 -2.46285941508346 1.51980864221186 0 -0.00348719234505142 -0.00117766259920027 0.999993226277234 100 -1.18271574739458 1 0.999712 0.0239977 -1.32684e-06 +65 2 1 -2.48092502401677 1.48390378742087 0 -0.00428388387536801 -0.00121557294095259 0.999990085311534 100 -1.18260337416598 1 1 4.60188e-10 3.32341e-06 +66 2 1 -2.4989100602764 1.44794855403998 0 -0.0050804834266112 -0.00125731500864362 0.999986303829768 100 -1.1824758786305 1 0.999712 0.0239977 -1.3271e-06 +67 2 1 -2.51681457280954 1.41194286926991 0 -0.00587696271685546 -0.00130288874185958 0.99998188173094 100 -1.18233324873086 1 1 4.6026e-10 3.32367e-06 +68 2 1 -2.53463860989028 1.37588665903401 0 -0.00667329345976344 -0.00135229380923957 0.999976818959247 100 -1.18217547218069 1 1 4.68156e-10 3.35206e-06 +69 2 1 -2.55238221910416 1.3397798479841 0 -0.00746944736792093 -0.00140552960836915 0.999971115504112 100 -1.18200253648854 1 0.999712 0.0239977 -1.31329e-06 +70 2 1 -2.28041753510856 1.78518532750665 0 0.00295103737130868 -0.000260819720287908 0.999995611666124 100 -1.18295722310359 1 0.999712 0.0239977 -2.00943e-06 +71 2 1 -2.29907271402913 1.74976925751021 0 0.00215094438966401 -0.000267796257629516 0.999997650858939 100 -1.18299316081823 1 1 4.58883e-10 3.31869e-06 +72 2 1 -2.31764689791562 1.714303473703 0 0.00135071471707056 -0.00027862219817959 0.99999904896926 100 -1.18301408531431 1 1 4.58902e-10 3.31876e-06 +73 2 1 -2.3361401415162 1.67878791374885 0 0.000550376743770319 -0.000293299676524805 0.999999805530351 100 -1.18301998635059 1 1 4.58924e-10 3.31884e-06 +74 2 1 -2.3545524990284 1.64322251397354 0 -0.000250041108521564 -0.000311830555654258 0.999999920120571 100 -1.18301085343842 1 1 4.58947e-10 3.31892e-06 +75 2 1 -2.37288402408321 1.60760720936682 0 -0.00105051038995199 -0.000334216426473244 0.999999392363466 100 -1.18298667587794 1 1 4.66823e-10 3.34728e-06 +76 2 1 -2.39113476972935 1.57194193359092 0 -0.00185100262587376 -0.000360458607359115 0.999998221927855 100 -1.18294744274067 1 1 4.66851e-10 3.34738e-06 +77 2 1 -2.40930478841748 1.53622661898529 0 -0.00265148932019735 -0.00039055814376765 0.999996408527911 100 -1.18289314287051 1 0.999712 0.0239977 -1.30985e-06 +78 2 1 -2.42739413198452 1.50046119657223 0 -0.00345194195875007 -0.000424515807886716 0.999993951923232 100 -1.18282376488401 1 0.999712 0.0239977 -1.30997e-06 +79 2 1 -2.44540285163814 1.46464559606399 0 -0.00425233201264161 -0.000462332098340235 0.999990851918899 100 -1.18273929718396 1 0.999712 0.0239977 -1.99504e-06 +80 2 1 -2.46333099794116 1.4287797458687 0 -0.00505263094163488 -0.000504007239935433 0.999987108365538 100 -1.18263972794273 1 1 4.78933e-10 3.39042e-06 +81 2 1 -2.48117862079626 1.39286357309837 0 -0.00585281019752199 -0.000549541183465119 0.999982721159361 100 -1.18252504511997 1 0.999712 0.0239977 -1.96677e-06 +82 2 1 -2.49894576943055 1.35689700357317 0 -0.00665284122750352 -0.000598933605554797 0.999977690242206 100 -1.18239523644206 1 1 2.0906e-13 -7.08361e-08 +83 2 1 -2.51663249238046 1.32087996183238 0 -0.00745269547757151 -0.000652183908558035 0.999972015601571 100 -1.182250289428 1 1 4.59242e-10 3.31999e-06 +84 2 1 -2.24549623789567 1.76514817586544 0 0.00301625791424627 0.000494170155463436 0.999995328981117 100 -1.18285559935009 1 1 4.57771e-10 3.31467e-06 +85 2 1 -2.2640944879261 1.72982029080462 0 0.00221245698876102 0.000487507596904746 0.999997433681915 100 -1.18291927147914 1 1 4.57789e-10 3.31473e-06 +86 2 1 -2.28261173429543 1.69444282187827 0 0.00140851635703272 0.000476968461428084 0.999998894290768 100 -1.1829679509965 1 1 4.57808e-10 3.3148e-06 +87 2 1 -2.30104803272884 1.65901570676155 0 0.000604464675536642 0.000462550577092324 0.999999710334668 100 -1.18300162768287 1 0.999712 0.0239977 -1.99367e-06 +88 2 1 -2.31940343840018 1.62353888177809 0 -0.000199669367214132 0.000444252046760851 0.999999881386125 100 -1.1830202910927 1 0.999712 0.0239977 -1.99366e-06 +89 2 1 -2.33767800591573 1.5880122819041 0 -0.00100385705405048 0.000422071248602718 0.999999407063262 100 -1.18302393053818 1 0.999712 0.0239977 -1.307e-06 +90 2 1 -2.35587178929831 1.55243584077501 0 -0.0018080696425388 0.000396006836541896 0.999998287029909 100 -1.18301253511868 1 1 4.69768e-10 3.35782e-06 +91 2 1 -2.37398484197134 1.51680949069048 0 -0.00261227836838015 0.00036605774066073 0.999996520995676 100 -1.18298609370186 1 1 4.57933e-10 3.31525e-06 +92 2 1 -2.392017216743 1.48113316262173 0 -0.00341645444881708 0.000332223167552492 0.999994108716029 100 -1.18294459492552 1 1 4.57964e-10 3.31537e-06 +93 2 1 -2.40996896579047 1.44540678621677 0 -0.0042205690860469 0.000294502600624746 0.999991049992352 100 -1.18288802721077 1 0.999712 0.0239977 -1.27918e-06 +94 2 1 -2.42784014064426 1.40963028980815 0 -0.0050245934706406 0.000252895800355812 0.999987344672006 100 -1.18281637875248 1 1 4.58031e-10 3.31561e-06 +95 2 1 -2.44563079217248 1.37380360041763 0 -0.00582849878496654 0.000207402804500822 0.99998299264837 100 -1.18272963751383 1 0.999712 0.0239977 -1.27945e-06 +96 2 1 -2.46334097056561 1.33792664376537 0 -0.00663225620661833 0.000158023928243489 0.999977993860889 100 -1.18262779125553 1 1 3.33379e-14 -2.82861e-08 +97 2 1 -2.48097072532082 1.30199934427718 0 -0.00743583691184548 0.00010475976431068 0.999972348295097 100 -1.18251082749657 1 0.999712 0.0239977 -2.00798e-06 +98 2 1 -2.2106639669178 1.74513067161788 0 0.00308192736905157 0.00125275440004496 0.999994466149741 100 -1.18276687160267 1 1 7.62133e-14 -4.27692e-08 +99 2 1 -2.2292052077033 1.70989093485006 0 0.00227439245729592 0.00124640958227695 0.999996636795396 100 -1.18285827238924 1 1 4.56695e-10 3.31077e-06 +100 2 1 -2.24766543595027 1.67460174493844 0 0.00146671478036313 0.00123616075754002 0.999998160325475 100 -1.18293470119693 1 1 3.33761e-14 -2.83033e-08 +101 2 1 -2.26604470837109 1.63926303957161 0 0.000658923264085033 0.00122200571591768 0.999999036260617 100 -1.18299614783461 1 0.999712 0.0239977 -1.96397e-06 +102 2 1 -2.28434308112601 1.60387475507239 0 -0.000148953133093242 0.00120394252555162 0.999999264167409 100 -1.18304260188086 1 0.999712 0.0239977 -1.96396e-06 +103 2 1 -2.30256060980688 1.56843682640558 0 -0.00095688542354321 0.00118196953315319 0.999998843658486 100 -1.18307405267558 1 0.999712 0.0239977 -1.27607e-06 +104 2 1 -2.32069734942086 1.532949187181 0 -0.00176484459389226 0.00115608536446421 0.999997774392618 100 -1.18309048935225 1 1 4.56809e-10 3.31119e-06 +105 2 1 -2.33875335437437 1.4974117696608 0 -0.00257280160847123 0.0011262889246666 0.999996056074794 100 -1.18309190078753 1 0.999712 0.0239977 -2.0067e-06 +106 2 1 -2.35672867845709 1.46182450476654 0 -0.00338072741276976 0.00109257939874335 0.999993688456291 100 -1.18307827565047 1 1 4.6874e-10 3.35415e-06 +107 2 1 -2.37462337482599 1.42618732208263 0 -0.00418859293689812 0.00105495625178659 0.999990671334746 100 -1.18304960237879 1 0.999712 0.0239977 -2.00668e-06 +108 2 1 -2.39243749598944 1.39050014986659 0 -0.00499636909905476 0.00101341922926262 0.999987004554205 100 -1.18300586918076 1 0.999712 0.0239977 -1.3194e-06 +109 2 1 -2.41017109379143 1.35476291505241 0 -0.0058040268089989 0.000967968357219018 0.999982688005177 100 -1.1829470640464 1 1 4.64816e-10 3.34008e-06 +110 2 1 -2.4278242193959 1.31897554325983 0 -0.00661153697152724 0.00091860394244625 0.999977721624673 100 -1.18287317474051 1 1 4.76824e-10 3.38295e-06 +111 2 1 -2.44539692327111 1.28313795880111 0 -0.00741887048995375 0.000865326572588865 0.999972105396234 100 -1.18278418880732 1 0.999712 0.0239977 -1.30541e-06 +112 2 1 -2.17592073729879 1.72513278030353 0 0.00314805012312138 0.00201495800577434 0.999993014837932 100 -1.18269107834158 1 0.999712 0.0239977 -1.27301e-06 +113 2 1 -2.19440488775356 1.68998115490886 0 0.00233675494021345 0.00200893473972552 0.999995251867508 100 -1.18281020203153 1 0.999712 0.0239977 -1.96256e-06 +114 2 1 -2.21280801653839 1.65478020787675 0 0.0015253138888773 0.00199897977731039 0.999996838743698 100 -1.18291437439495 1 0.999712 0.0239977 -2.0054e-06 +115 2 1 -2.23113018136319 1.61952987691125 0 0.000713756167468464 0.00198509087000315 0.99999777498071 100 -1.18300358527449 1 0.999712 0.0239977 -1.30156e-06 +116 2 1 -2.24937143938499 1.58423009833803 0 -9.78889924580449e-05 0.00196726605063735 0.999998060139134 100 -1.18307782427473 1 1 4.63503e-10 3.33536e-06 +117 2 1 -2.26753184719149 1.5488808071103 0 -0.000909592329626336 0.00194550363392787 0.999997693826043 100 -1.18313708076937 1 1 4.63527e-10 3.33544e-06 +118 2 1 -2.28561146078456 1.51348193681539 0 -0.00172132455652774 0.0019198022169411 0.999996675695084 100 -1.18318134390552 1 0.999712 0.0239977 -1.34468e-06 +119 2 1 -2.30361033556403 1.47803341967978 0 -0.00253305636291763 0.00189016067951253 0.999995005446561 100 -1.18321060259245 1 1 4.63583e-10 3.33564e-06 +120 2 1 -2.32152852631152 1.44253518657498 0 -0.00334475841931992 0.00185657818461227 0.99999268282751 100 -1.18322484551868 1 0.999712 0.0239977 -1.30208e-06 +121 2 1 -2.3393660871741 1.40698716702476 0 -0.00415640138053799 0.0018190541786684 0.999989707631763 100 -1.18322406114203 1 1 4.67686e-10 3.35037e-06 +122 2 1 -2.35712307164848 1.37138928921163 0 -0.00496795588917222 0.00177758839182757 0.999986079700009 100 -1.18320823768909 1 1 4.55841e-10 3.30767e-06 +123 2 1 -2.37479953256482 1.33574147998277 0 -0.00577939257914198 0.00173218083817428 0.999981798919841 100 -1.18317736316828 1 0.999712 0.0239977 -1.27415e-06 +124 2 1 -2.39239552207111 1.30004366485894 0 -0.00659068207921216 0.00168283181589196 0.999976865225796 100 -1.18313142535771 1 1 4.55915e-10 3.30794e-06 +125 2 1 -2.409911091617 1.26429576803964 0 -0.00740179501652263 0.00162954190738257 0.999971278599393 100 -1.18307041181583 1 1 4.67831e-10 3.35089e-06 +126 2 1 -2.14126656432408 1.7051544666395 0 0.00321463061575192 0.0027808061901628 0.999990966592667 100 -1.18262825837269 1 0.999712 0.0239977 -1.31329e-06 +127 2 1 -2.15969354262224 1.67009091541544 0 0.00239954863155817 0.00277510833640737 0.999993270447399 100 -1.18277509920836 1 1 7.67858e-14 -4.29295e-08 +128 2 1 -2.1780394898615 1.63497817485537 0 0.00158431763067912 0.00276545083449276 0.999994921096766 100 -1.1829070093977 1 1 4.62362e-10 3.33125e-06 +129 2 1 -2.19630446475975 1.59981618267991 0 0.000768967087205756 0.0027518313966392 0.99999591804846 100 -1.1830239788128 1 1 4.62383e-10 3.33132e-06 +130 2 1 -2.21448852548132 1.56460487521938 0 -4.64734909742994e-05 0.00273424801977523 0.999996260857 100 -1.18312599708395 1 1 4.54572e-10 3.30307e-06 +131 2 1 -2.23259172962025 1.52934418741857 0 -0.000861974565704916 0.00271269898606918 0.999995949123824 100 -1.18321305362019 1 0.999712 0.0239977 -1.96112e-06 +132 2 1 -2.2506141341836 1.49403405284306 0 -0.00167750657209916 0.0026871828634098 0.999994982497392 100 -1.18328513758695 1 1 4.54622e-10 3.30325e-06 +133 2 1 -2.26855579557514 1.45867440368478 0 -0.00249303992208617 0.0026576985058307 0.999993360673259 100 -1.18334223792226 1 0.999712 0.0239977 -1.27098e-06 +134 2 1 -2.2864167695789 1.42326517076758 0 -0.00330854500796556 0.00262424505388459 0.999991083394161 100 -1.18338434333714 1 0.999712 0.0239977 -1.2711e-06 +135 2 1 -2.30419711134275 1.38780628355534 0 -0.00412399220596874 0.00258682193497239 0.999988150450075 100 -1.18341144230953 1 0.999712 0.0239977 -1.96111e-06 +136 2 1 -2.32189687536213 1.35229767015722 0 -0.00493935187982652 0.00254542886361331 0.999984561678283 100 -1.18342352308093 1 1 4.66633e-10 3.3466e-06 +137 2 1 -2.33951611546405 1.31673925733442 0 -0.00575459438434188 0.00250006584166379 0.999980316963419 100 -1.18342057368045 1 0.999712 0.0239977 -1.9611e-06 +138 2 1 -2.35705488479093 1.28113097050825 0 -0.00656969006896678 0.00245073315848743 0.999975416237511 100 -1.18340258190369 1 0.999712 0.0239977 -2.00399e-06 +139 2 1 -2.37451323578454 1.24547273376749 0 -0.0073846092813826 0.00239743139107446 0.999969859480018 100 -1.183369535319 1 1 4.5486e-10 3.30411e-06 +140 2 1 -2.10670146344338 1.68519569450811 0 0.00328167333886619 0.00355032439836089 0.999988312840087 100 -1.18257845086544 1 1 3.35044e-14 -2.83581e-08 +141 2 1 -2.12507118700972 1.65022017996778 0 0.00246277777516358 0.00354495586785758 0.999990683963368 100 -1.18275300308824 1 1 2.12223e-13 -7.13696e-08 +142 2 1 -2.14335986986706 1.61519560919576 0 0.0016437300008115 0.00353559947191368 0.99999239881514 100 -1.18291264537061 1 0.999712 0.0239977 -1.95973e-06 +143 2 1 -2.16156757175195 1.58012191993203 0 0.000824559768893423 0.00352225288283886 0.999993456896503 100 -1.18305736761533 1 1 4.53457e-10 3.29901e-06 +144 2 1 -2.1796943518465 1.54499904851413 0 5.29686689801009e-06 0.00350491406105136 0.99999385775582 100 -1.18318715947794 1 1 4.53479e-10 3.29909e-06 +145 2 1 -2.19774026876169 1.50982692987929 0 -0.000814028886859721 0.00348358125561304 0.99999360098883 100 -1.18330201039771 1 0.999712 0.0239977 -1.95971e-06 +146 2 1 -2.21570538052055 1.47460549757393 0 -0.00163338764682655 0.00345825300472186 0.99999268623873 100 -1.18340190956553 1 1 4.53529e-10 3.29928e-06 +147 2 1 -2.23358974454139 1.43933468375667 0 -0.00245274954380846 0.00342892813614676 0.999991113196269 100 -1.18348684594537 1 1 4.65455e-10 3.34237e-06 +148 2 1 -2.25139341762132 1.40401441920578 0 -0.00327208468857609 0.0033956057676095 0.999988881599822 100 -1.18355680827017 1 0.999712 0.0239977 -1.98805e-06 +149 2 1 -2.26911645591964 1.36864463332585 0 -0.00409136317547707 0.00335828530711768 0.999985991235458 100 -1.18361178503596 1 1 7.69922e-14 -4.29867e-08 +150 2 1 -2.28675891494137 1.33322525415346 0 -0.00491055508605489 0.00331696645324325 0.999982441937005 100 -1.18365176451152 1 0.999712 0.0239977 -1.34004e-06 +151 2 1 -2.30432084952096 1.29775620836581 0 -0.00572963049267271 0.00327164919534823 0.999978233586092 100 -1.18367673474063 1 0.999712 0.0239977 -1.29719e-06 +152 2 1 -2.32180231380599 1.26223742128516 0 -0.00654855946214193 0.00322233381375653 0.9999733661122 100 -1.18368668353025 1 0.999712 0.0239977 -1.31195e-06 +153 2 1 -2.33920336124102 1.22666881688953 0 -0.00736731205935389 0.00316902087987653 0.999967839492692 100 -1.18368159846739 1 1 4.53766e-10 3.30014e-06 +154 2 1 -2.07222545027287 1.66525642694701 0 0.00334918283775462 0.00432353830564908 0.999985044883592 100 -1.18254169533691 1 1 4.60136e-10 3.32322e-06 +155 2 1 -2.0905378357737 1.63036891131461 0 0.00252644666535319 0.00431850306048587 0.999987483720953 100 -1.18274395319077 1 0.999712 0.0239977 -1.29349e-06 +156 2 1 -2.10876917065061 1.59543247336736 0 0.00170355504191794 0.00430945146397771 0.99998926320651 100 -1.18293132183044 1 1 4.60171e-10 3.32335e-06 +157 2 1 -2.12691951566941 1.56044705086778 0 0.000880538002828119 0.0042963811478593 0.999990382834684 100 -1.18310379118816 1 0.999712 0.0239977 -1.29365e-06 +158 2 1 -2.14498893104096 1.52541258016067 0 5.74256184876121e-05 0.0042792900354135 0.999990842147613 100 -1.18326135096379 1 0.999712 0.0239977 -1.29373e-06 +159 2 1 -2.1629774764039 1.49032899618029 0 -0.000765752009304371 0.00425817634202952 0.999990640735252 100 -1.18340399060799 1 1 4.60237e-10 3.32359e-06 +160 2 1 -2.1808852108079 1.45519623245382 0 -0.00158896475099341 0.00423303857569368 0.999989778235476 100 -1.1835316993479 1 0.999712 0.0239977 -1.33701e-06 +161 2 1 -2.19871219269675 1.4200142211095 0 -0.00241218245291876 0.0042038755374374 0.99998825433416 100 -1.18364446616818 1 0.999712 0.0239977 -1.26566e-06 +162 2 1 -2.21645847989148 1.38478289288058 0 -0.00323537494097031 0.00417068632172707 0.999986068765259 100 -1.18374227982326 1 0.999712 0.0239977 -2.00136e-06 +163 2 1 -2.23412412957357 1.34950217711383 0 -0.00405851202425295 0.00413347031680611 0.999983221310882 100 -1.18382512883443 1 1 4.52527e-10 3.29563e-06 +164 2 1 -2.25170919826848 1.31417200177548 0 -0.00488156349875754 0.00409222720497593 0.99997971180135 100 -1.18389300149147 1 1 2.1266e-13 -7.14426e-08 +165 2 1 -2.26921374182894 1.27879229345777 0 -0.00570449915103685 0.0040469569628292 0.999975540115245 100 -1.18394588584954 1 0.999712 0.0239977 -1.95827e-06 +166 2 1 -2.28663781541862 1.24336297738672 0 -0.00652728876188643 0.00399765986142536 0.999970706179462 100 -1.18398376974596 1 1 2.12613e-13 -7.1434e-08 +167 2 1 -2.30398147349561 1.20788397742946 0 -0.00734990211002853 0.00394433646641951 0.999965209969233 100 -1.18400664077114 1 1 3.35548e-14 -2.83779e-08 +168 2 1 -2.03783854059815 1.64533662613837 0 0.00341716371182619 0.00510047381994189 0.999981153901902 100 -1.1825180316564 1 1 4.59041e-10 3.31927e-06 +169 2 1 -2.05609350393171 1.61053707134564 0 0.00259055964765261 0.00509577587410087 0.999983660900993 100 -1.18274798938376 1 0.999712 0.0239977 -1.26245e-06 +170 2 1 -2.07426740645789 1.57568872897686 0 0.00176379684491497 0.00508703281920803 0.999985505453847 100 -1.18296307864921 1 0.999712 0.0239977 -2.00008e-06 +171 2 1 -2.09236030998268 1.54079153681902 0 0.000936905624638193 0.00507424224574188 0.999986687048124 100 -1.18316328941819 1 1 2.13399e-13 -7.15668e-08 +172 2 1 -2.11037227575637 1.50584543122841 0 0.000109916343503312 0.00505740203922622 0.999987205219653 100 -1.18334861141693 1 0.999712 0.0239977 -1.95689e-06 +173 2 1 -2.1283033644564 1.47085034713601 0 -0.000717140609834242 0.00503651038079039 0.999987059552537 100 -1.18351903413145 1 0.999712 0.0239977 -1.95689e-06 +174 2 1 -2.14615363617002 1.43580621805289 0 -0.00154423481843655 0.00501156574767969 0.999986249679256 100 -1.18367454680742 1 1 4.51346e-10 3.29133e-06 +175 2 1 -2.16392315037736 1.40071297607798 0 -0.00237133584078458 0.00498256691370857 0.999984775280745 100 -1.18381513846225 1 1 4.63289e-10 3.33459e-06 +176 2 1 -2.1816119659343 1.36557055190149 0 -0.0031984132144879 0.00494951294965867 0.999982636086483 100 -1.18394079787072 1 0.999712 0.0239977 -1.30627e-06 +177 2 1 -2.19922014105566 1.33037887481405 0 -0.00402543646000197 0.00491240322362563 0.99997983187456 100 -1.18405151357729 1 0.999712 0.0239977 -2.00002e-06 +178 2 1 -2.21674773329817 1.29513787271124 0 -0.00485237508435154 0.0048712374013119 0.999976362471744 100 -1.18414727389211 1 0.999712 0.0239977 -1.30651e-06 +179 2 1 -2.23419479954395 1.25984747210338 0 -0.00567919858486015 0.00482601544626121 0.999972227753524 100 -1.18422806688613 1 1 4.51503e-10 3.2919e-06 +180 2 1 -2.25156139598362 1.22450759811922 0 -0.00650587645288371 0.00477673762004205 0.999967427644165 100 -1.18429388041341 1 0.999712 0.0239977 -1.30678e-06 +181 2 1 -2.26884757809996 1.18911817451654 0 -0.0073323781775481 0.00472340448237374 0.999961962116739 100 -1.18434470208877 1 0.999712 0.0239977 -2.02838e-06 +182 2 1 -2.00354075037655 1.62543625339795 0 0.00348562061537297 0.00588115708433873 0.999976630947082 100 -1.18250750006405 1 0.999712 0.0239977 -1.9555e-06 +183 2 1 -2.02173820666356 1.59072462107984 0 0.0026551211195133 0.00587680050446748 0.999979206557652 100 -1.1827651519086 1 0.999712 0.0239977 -1.9555e-06 +184 2 1 -2.03985459168733 1.5559643367566 0 0.00182445954967525 0.00586836978281241 0.999981116613431 100 -1.18300795606797 1 1 4.62092e-10 3.33027e-06 +185 2 1 -2.05788996830502 1.5211553382418 0 0.000993666515926937 0.00585586246790465 0.999982360595232 100 -1.18323590253681 1 1 2.14008e-13 -7.16683e-08 +186 2 1 -2.07584439881757 1.48629756190497 0 0.000162772664635711 0.00583927640686299 0.999982938032497 100 -1.18344898107648 1 1 2.13994e-13 -7.16657e-08 +187 2 1 -2.09371794495213 1.45139094267679 0 -0.000668191325266123 0.00581860974597004 0.999982848503402 100 -1.18364718119938 1 1 7.79359e-14 -4.32492e-08 +188 2 1 -2.11151066784465 1.41643541405385 0 -0.00149919474602656 0.00579386093118855 0.999982091634957 100 -1.18383049218221 1 1 4.70099e-10 3.35901e-06 +189 2 1 -2.12922262802276 1.38143090810698 0 -0.00233020686482868 0.00576502870862416 0.999980667103097 100 -1.18399890306557 1 0.999712 0.0239977 -1.98388e-06 +190 2 1 -2.14685388538834 1.34637735548526 0 -0.00316119692755356 0.00573211212493524 0.999978574632763 100 -1.18415240264881 1 0.999712 0.0239977 -1.33209e-06 +191 2 1 -2.16440449920056 1.31127468542422 0 -0.00399213416255136 0.00569511052768396 0.999975813997972 100 -1.18429097949718 1 0.999712 0.0239977 -1.3038e-06 +192 2 1 -2.18187452805873 1.27612282575135 0 -0.00482298778441871 0.00565402356563571 0.999972385021882 100 -1.18441462194255 1 0.999712 0.0239977 -1.99868e-06 +193 2 1 -2.19926402988534 1.24092170289403 0 -0.00565372699778176 0.00560885118900151 0.999968287576848 100 -1.18452331808089 1 0.999712 0.0239977 -1.95545e-06 +194 2 1 -2.21657306190929 1.20567124188633 0 -0.00648432100108423 0.00555959364962266 0.999963521584466 100 -1.18461705577477 1 1 4.50449e-10 3.28805e-06 +195 2 1 -2.23380168064894 1.17037136637646 0 -0.00731473899037878 0.00550625150110634 0.999958087015606 100 -1.184695822653 1 0.999712 0.0239977 -1.26112e-06 +196 2 1 -2.45635889637051 1.88566694638419 0 0.00263151831936288 -0.00398271283672563 0.999988606489992 100 -1.18365745854726 1 0.999712 0.0239977 -1.29406e-06 +197 2 1 -2.47529753939204 1.84980941156583 0 0.00184958271503833 -0.00399120450094326 0.9999903246184 100 -1.18355463789283 1 1 4.64363e-10 3.33845e-06 +198 2 1 -2.49415522687709 1.81390152454616 0 0.00106752486454876 -0.00400341344254973 0.999991416498898 100 -1.1834367013679 1 0.999712 0.0239977 -1.97392e-06 +199 2 1 -2.51293200883655 1.77794322296657 0 0.000285371872333516 -0.00401934161829565 0.999991881694972 100 -1.18330363858911 1 0.999712 0.0239977 -1.33651e-06 diff --git a/Tests/input/pm_ell_ip_200mirrormis.rml b/Intern/RayCore/tests/input/pm_ell_ip_200mirrormis.rml similarity index 100% rename from Tests/input/pm_ell_ip_200mirrormis.rml rename to Intern/RayCore/tests/input/pm_ell_ip_200mirrormis.rml diff --git a/Tests/input/slit.rml b/Intern/RayCore/tests/input/slit.rml similarity index 100% rename from Tests/input/slit.rml rename to Intern/RayCore/tests/input/slit.rml diff --git a/Tests/input/toroid.csv b/Intern/RayCore/tests/input/toroid.csv similarity index 99% rename from Tests/input/toroid.csv rename to Intern/RayCore/tests/input/toroid.csv index 668b97028..5f2cb4a20 100644 --- a/Tests/input/toroid.csv +++ b/Intern/RayCore/tests/input/toroid.csv @@ -1,202 +1,202 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -0 2 1 -0.069151302035487 -0.138465586916393 0 0.00511999075325057 0.00483541137152327 0.999975201938305 100 -0.000687528123080483 1 1 0 0 -1 2 1 -0.058523912748643 -0.129035320137364 0 0.00433260488091833 0.00486832767963155 0.999978763734785 100 -0.000589230105902061 1 1 0 0 -2 2 1 -0.047890900088146 -0.121178160523208 0 0.00354506650441356 0.00489575905078607 0.999981731856535 100 -0.000507059890082928 1 1 0 0 -3 2 1 -0.0372532747502148 -0.114893346639345 0 0.00275740334975018 0.00491770487711715 0.99998410632645 100 -0.000441156684928501 1 1 0 0 -4 2 1 -0.026612054472497 -0.110180269302885 0 0.00196964314415274 0.00493416467234956 0.999985887162849 100 -0.000391631844649964 1 1 0 0 -5 2 1 -0.0159682624690278 -0.107038471596382 0 0.00118181361578715 0.00494513807177832 0.999987074379478 100 -0.000358568889623712 1 1 0 0 -6 2 1 -0.00532292586549377 -0.105467648899164 0 0.000393942493491747 0.00495062483227404 0.999987667985502 100 -0.000342023491043619 1 1 0 0 -7 2 1 0.00532292586549377 -0.105467648899164 0 -0.000393942493491747 0.00495062483227404 0.999987667985502 100 -0.000342023491043619 1 1 0 0 -8 2 1 0.0159682624690278 -0.107038471596382 0 -0.00118181361578715 0.00494513807177832 0.999987074379478 100 -0.000358568889623712 1 1 0 0 -9 2 1 0.0266120544724968 -0.110180269302885 0 -0.00196964314415274 0.00493416467234956 0.999985887162849 100 -0.000391631844649964 1 1 0 0 -10 2 1 0.0372532747502148 -0.114893346639345 0 -0.00275740334975018 0.00491770487711715 0.99998410632645 100 -0.000441156684928501 1 1 0 0 -11 2 1 0.047890900088146 -0.121178160523208 0 -0.00354506650441356 0.00489575905078607 0.999981731856535 100 -0.000507059890082928 1 1 0 0 -12 2 1 0.0585239127486421 -0.129035320137364 0 -0.00433260488091833 0.00486832767963155 0.999978763734785 100 -0.000589230105902061 1 1 0 0 -13 2 1 0.069151302035487 -0.138465586916393 0 -0.00511999075325057 0.00483541137152327 0.999975201938305 100 -0.000687528123080483 1 1 0 0 -14 2 1 -0.0577609925286904 -0.109326765090657 0 0.0051068778001812 0.00407730460910771 0.999978647465164 100 -0.000500972024724433 1 1 0 0 -15 2 1 -0.0488847118053233 -0.099788245895696 0 0.00432150890463304 0.00411016569554754 0.999982215391225 100 -0.00041776709667829 1 1 0 0 -16 2 1 -0.0400034310725039 -0.0918408709061325 0 0.00353598770522072 0.00413755104784627 0.999985188621449 100 -0.000348174019563885 1 1 0 0 -17 2 1 -0.0311180476951338 -0.0854838814252696 0 0.00275034189153588 0.0041594600585643 0.999987567178463 100 -0.000292332243134297 1 1 0 0 -18 2 1 -0.022229466075038 -0.0807166704695632 0 0.00196459915438246 0.00417589224178067 0.999989351080374 100 -0.00025035330963874 1 1 0 0 -19 2 1 -0.0133385960867904 -0.0775387827674141 0 0.00117878718550683 0.00418684723305163 0.999990540340766 100 -0.000222320880766347 1 1 0 0 -20 2 1 -0.00444635151407002 -0.0759499147982661 0 0.000392933677328631 0.00419232478942483 0.999991134968698 100 -0.000208290723094251 1 1 0 0 -21 2 1 0.00444635151407002 -0.0759499147982661 0 -0.000392933677328631 0.00419232478942483 0.999991134968698 100 -0.000208290723094251 1 1 0 0 -22 2 1 0.0133385960867904 -0.0775387827674141 0 -0.00117878718550683 0.00418684723305163 0.999990540340766 100 -0.000222320880766347 1 1 0 0 -23 2 1 0.0222294660750384 -0.0807166704695632 0 -0.00196459915438246 0.00417589224178067 0.999989351080374 100 -0.00025035330963874 1 1 0 0 -24 2 1 0.0311180476951338 -0.0854838814252696 0 -0.00275034189153588 0.0041594600585643 0.999987567178463 100 -0.000292332243134297 1 1 0 0 -25 2 1 0.0400034310725039 -0.0918408709061325 0 -0.00353598770522072 0.00413755104784627 0.999985188621449 100 -0.000348174019563885 1 1 0 0 -26 2 1 0.0488847118053233 -0.099788245895696 0 -0.00432150890463304 0.00411016569554754 0.999982215391225 100 -0.00041776709667829 1 1 0 0 -27 2 1 0.0577609925286904 -0.109326765090657 0 -0.0051068778001812 0.00407730460910771 0.999978647465164 100 -0.000500972024724433 1 1 0 0 -28 2 1 -0.0464610105416243 -0.0849975978430773 0 0.00509375016303548 0.00331795763403814 0.999981522262494 100 -0.000354500547246062 1 1 0 0 -29 2 1 -0.0393219420521547 -0.0753509896778355 0 0.00431040050436463 0.00335076355300085 0.999985096304492 100 -0.000286456749336139 1 1 0 0 -30 2 1 -0.0321784968116301 -0.0673135355299714 0 0.00352689874163562 0.00337810293159821 0.999988074631818 100 -0.000229497515078947 1 1 0 0 -31 2 1 -0.0250314588727911 -0.0608844794425591 0 0.00274327252810933 0.0033999751628325 0.999990457266832 100 -0.000183762528536136 1 1 0 0 -32 2 1 -0.0178816193207143 -0.0560632166163559 0 0.00195954951826029 0.00341637976112852 0.999992244227431 100 -0.00014936352067707 1 1 0 0 -33 2 1 -0.0107297747097803 -0.0528492934225175 0 0.0011757573675067 0.00342731636230745 0.999993435527037 100 -0.000126384297914228 1 1 0 0 -34 2 1 -0.0035767255009469 -0.0512424074334947 0 0.000391923731940797 0.00343278472359046 0.999994031174601 100 -0.000114880719479515 1 1 0 0 -35 2 1 0.0035767255009469 -0.0512424074334947 0 -0.000391923731940797 0.00343278472359046 0.999994031174601 100 -0.000114880719479515 1 1 0 0 -36 2 1 0.0107297747097803 -0.0528492934225175 0 -0.0011757573675067 0.00342731636230745 0.999993435527037 100 -0.000126384297914228 1 1 0 0 -37 2 1 0.0178816193207147 -0.0560632166163559 0 -0.00195954951826029 0.00341637976112852 0.999992244227431 100 -0.00014936352067707 1 1 0 0 -38 2 1 0.0250314588727911 -0.0608844794425591 0 -0.00274327252810933 0.0033999751628325 0.999990457266832 100 -0.000183762528536136 1 1 0 0 -39 2 1 0.0321784968116301 -0.0673135355299714 0 -0.00352689874163562 0.00337810293159821 0.999988074631818 100 -0.000229497515078947 1 1 0 0 -40 2 1 0.0393219420521538 -0.0753509896778355 0 -0.00431040050436464 0.00335076355300085 0.999985096304492 100 -0.000286456749336139 1 1 0 0 -41 2 1 0.0464610105416243 -0.0849975978430773 0 -0.00509375016303548 0.00331795763403814 0.999981522262494 100 -0.000354500547246062 1 1 0 0 -42 2 1 -0.0352516439989943 -0.0655011979605549 0 0.00508060774906991 0.0025573634790971 0.999983823527629 100 -0.000240966286810362 1 1 0 0 -43 2 1 -0.029835847083155 -0.0557466618369689 0 0.0042992796016371 0.00259011428476172 0.999987403672116 100 -0.000188152159239507 1 1 0 0 -44 2 1 -0.0244162965861974 -0.0476192627268763 0 0.0035177995494502 0.00261740773480795 0.999990387085336 100 -0.00014388388444786 1 1 0 0 -45 2 1 -0.0189936632645886 -0.0411182474018448 0 0.00273619520953059 0.0026392432226798 0.999992773789384 100 -0.000108301377736097 1 1 0 0 -46 2 1 -0.0135686249026816 -0.0362430132398104 0 0.0019544942001147 0.00265562026314864 0.999994563801944 100 -8.15165665244422e-05 1 1 0 0 -47 2 1 -0.00814186475074474 -0.0329931082469517 0 0.00117272414038377 0.00266653849229653 0.999995757136279 100 -6.36133914895254e-05 1 1 0 0 -48 2 1 -0.00271406996318441 -0.031368231086716 0 0.000390912650193908 0.00267199766752121 0.999996353801235 100 -5.46478172509524e-05 1 1 0 0 -49 2 1 0.00271406996318441 -0.031368231086716 0 -0.000390912650193908 0.00267199766752121 0.999996353801235 100 -5.46478172509524e-05 1 1 0 0 -50 2 1 0.00814186475074474 -0.0329931082469517 0 -0.00117272414038377 0.00266653849229653 0.999995757136279 100 -6.36133914895254e-05 1 1 0 0 -51 2 1 0.0135686249026818 -0.0362430132398104 0 -0.0019544942001147 0.00265562026314864 0.999994563801944 100 -8.15165665244422e-05 1 1 0 0 -52 2 1 0.0189936632645886 -0.0411182474018448 0 -0.00273619520953059 0.0026392432226798 0.999992773789384 100 -0.000108301377736097 1 1 0 0 -53 2 1 0.0244162965861974 -0.0476192627268763 0 -0.0035177995494502 0.00261740773480795 0.999990387085336 100 -0.00014388388444786 1 1 0 0 -54 2 1 0.0298358470831541 -0.0557466618369689 0 -0.0042992796016371 0.00259011428476172 0.999987403672116 100 -0.000188152159239507 1 1 0 0 -55 2 1 0.0352516439989943 -0.0655011979605549 0 -0.00508060774906991 0.0025573634790971 0.999983823527629 100 -0.000240966286810362 1 1 0 0 -56 2 1 -0.0241331842480994 -0.0508609450882622 0 0.00506745046530147 0.00179551514632004 0.999985548431147 100 -0.000153139810095126 1 1 0 0 -57 2 1 -0.0204266733882399 -0.0409986395723441 0 0.00428814611777176 0.00182821089285268 0.999989134664874 100 -0.000115624400450542 1 1 0 0 -58 2 1 -0.0167170320461403 -0.0327814276622309 0 0.00350869006429055 0.00185545845949439 0.999992123152946 100 -8.41046196455864e-05 1 1 0 0 -59 2 1 -0.0130048176946449 -0.0262085588385217 0 0.0027291098857308 0.00187725724011881 0.999994513917194 100 -5.87206258160222e-05 1 1 0 0 -60 2 1 -0.00929059483028616 -0.0212794326542181 0 0.00194943316418206 0.0018936067498484 0.999996306975088 100 -3.95845274852036e-05 1 1 0 0 -61 2 1 -0.00557493341214199 -0.0179935987412232 0 0.0011696874826798 0.00190450662502467 0.999997502339735 100 -2.6780420967043e-05 1 1 0 0 -62 2 1 -0.00185840730107478 -0.0163507568490893 0 0.000389900424935203 0.00190995662321969 0.999998100019873 100 -2.03643520535479e-05 1 1 0 0 -63 2 1 0.00185840730107478 -0.0163507568490893 0 -0.000389900424935203 0.00190995662321969 0.999998100019873 100 -2.03643520535479e-05 1 1 0 0 -64 2 1 0.00557493341214199 -0.0179935987412232 0 -0.0011696874826798 0.00190450662502467 0.999997502339735 100 -2.6780420967043e-05 1 1 0 0 -65 2 1 0.00929059483028616 -0.0212794326542181 0 -0.00194943316418206 0.0018936067498484 0.999996306975088 100 -3.95845274852036e-05 1 1 0 0 -66 2 1 0.0130048176946449 -0.0262085588385217 0 -0.0027291098857308 0.00187725724011881 0.999994513917194 100 -5.87206258160222e-05 1 1 0 0 -67 2 1 0.0167170320461403 -0.0327814276622309 0 -0.00350869006429055 0.00185545845949439 0.999992123152946 100 -8.41046196455864e-05 1 1 0 0 -68 2 1 0.0204266733882399 -0.0409986395723441 0 -0.00428814611777176 0.00182821089285268 0.999989134664874 100 -0.000115624400450542 1 1 0 0 -69 2 1 0.0241331842480994 -0.0508609450882622 0 -0.00506745046530147 0.00179551514632004 0.999985548431147 100 -0.000153139810095126 1 1 0 0 -70 2 1 -0.0131059260823143 -0.0411004881235817 0 0.00505427821850703 0.001032405606818 0.999986694116653 100 -8.37085160583229e-05 1 1 0 0 -71 2 1 -0.0110946703732457 -0.0311305693342601 0 0.00427699997388696 0.00106504634838955 0.999990286426573 100 -6.1561381357933e-05 1 1 0 0 -72 2 1 -0.00908090722701571 -0.0228236747346213 0 0.00349957022161663 0.00109224807676317 0.999993279978622 100 -4.28480609571125e-05 1 1 0 0 -73 2 1 -0.00706508084255075 -0.0161790565194964 0 0.00272201650651188 0.00111401018625559 0.999995674794368 100 -2.77089477549453e-05 1 1 0 0 -74 2 1 -0.00504764243817291 -0.0111961163957837 0 0.00194436637460643 0.00113033219232972 0.99999747089107 100 -1.62563454750853e-05 1 1 0 0 -75 2 1 -0.00302904869159848 -0.007874405623989 0 0.00116664737288117 0.00114121373159284 0.999998668281676 100 -8.574487083024e-06 1 1 0 0 -76 2 1 -0.00100976017996829 -0.00621362503288947 0 0.000388887048993471 0.00114665456178814 0.999999266974821 100 -4.71952182579116e-06 1 1 0 0 -77 2 1 0.00100976017996829 -0.00621362503288947 0 -0.000388887048993471 0.00114665456178814 0.999999266974821 100 -4.71952182579116e-06 1 1 0 0 -78 2 1 0.00302904869159848 -0.007874405623989 0 -0.00116664737288117 0.00114121373159284 0.999998668281676 100 -8.574487083024e-06 1 1 0 0 -79 2 1 0.00504764243817202 -0.0111961163957837 0 -0.00194436637460643 0.00113033219232972 0.99999747089107 100 -1.62563454750853e-05 1 1 0 0 -80 2 1 0.00706508084255075 -0.0161790565194964 0 -0.00272201650651188 0.00111401018625559 0.999995674794368 100 -2.77089477549453e-05 1 1 0 0 -81 2 1 0.00908090722701571 -0.0228236747346213 0 -0.00349957022161663 0.00109224807676317 0.999993279978622 100 -4.28480609571125e-05 1 1 0 0 -82 2 1 0.0110946703732457 -0.0311305693342601 0 -0.00427699997388696 0.00106504634838955 0.999990286426573 100 -6.1561381357933e-05 1 1 0 0 -83 2 1 0.0131059260823143 -0.0411004881235817 0 -0.00505427821850703 0.001032405606818 0.999986694116653 100 -8.37085160583229e-05 1 1 0 0 -84 2 1 -0.00217016776514001 -0.0362437476570783 0 0.00504109091522312 0.000268027800631038 0.999987257700558 100 -2.5275457232965e-05 1 1 0 0 -85 2 1 -0.00184009037994315 -0.0261663692328016 0 0.00426584109089738 0.000300613591395854 0.999990856073822 100 -1.85666882543956e-05 1 1 0 0 -86 2 1 -0.00150812856653193 -0.0177699200075249 0 0.00349043995672192 0.000327769526644123 0.99999385467914 100 -1.27182294136219e-05 1 1 0 0 -87 2 1 -0.00117461325611101 -0.0110536548548785 0 0.00271491502154621 0.000349495001111616 0.999996253537817 100 -7.87071860486321e-06 1 1 0 0 -88 2 1 -0.000839882395432756 -0.00601697764631376 0 0.0019392937954394 0.000365789530616917 0.999998052666901 100 -4.13665600262902e-06 1 1 0 0 -89 2 1 -0.000504279387385953 -0.00265944125151518 0 0.00116360378941877 0.000376652752020923 0.999999252079183 100 -1.60040940500039e-06 1 1 0 0 -90 2 1 -0.000168151532092375 -0.000980747580731411 0 0.000387872515178991 0.00038208442324511 0.999999851783192 100 -3.18223897011194e-07 1 1 0 0 -91 2 1 0.000168151532092375 -0.000980747580731411 0 -0.000387872515178991 0.00038208442324511 0.999999851783192 100 -3.18223897011194e-07 1 1 0 0 -92 2 1 0.000504279387385953 -0.00265944125151518 0 -0.00116360378941877 0.000376652752020923 0.999999252079183 100 -1.60040940500039e-06 1 1 0 0 -93 2 1 0.000839882395432312 -0.00601697764631376 0 -0.0019392937954394 0.000365789530616917 0.999998052666901 100 -4.13665600262902e-06 1 1 0 0 -94 2 1 0.00117461325611101 -0.0110536548548785 0 -0.00271491502154621 0.000349495001111616 0.999996253537817 100 -7.87071860486321e-06 1 1 0 0 -95 2 1 0.00150812856653193 -0.0177699200075249 0 -0.00349043995672192 0.000327769526644123 0.99999385467914 100 -1.27182294136219e-05 1 1 0 0 -96 2 1 0.00184009037994315 -0.0261663692328016 0 -0.00426584109089738 0.000300613591395854 0.999990856073822 100 -1.85666882543956e-05 1 1 0 0 -97 2 1 0.00217016776514001 -0.0362437476570783 0 -0.00504109091522312 0.000268027800631038 0.999987257700558 100 -2.5275457232965e-05 1 1 0 0 -98 2 1 0.00867378894596804 -0.0363149184143784 0 0.00502788846174509 -0.000497625363461651 0.99998723627185 100 2.96418310199442e-05 1 1 0 0 -99 2 1 0.00733681129338404 -0.0261302315219581 0 0.00425466938951398 -0.000465094469340788 0.999990840695814 100 2.08416215627949e-05 1 1 0 0 -100 2 1 0.00600109507887492 -0.0176443536542283 0 0.00348129920473298 -0.000437984282087994 0.999993844343862 100 1.37663648729358e-05 1 1 0 0 -101 2 1 0.00466642263560946 -0.010856542370069 0 0.00270780538037644 -0.000416295406534012 0.999996247237037 100 8.27518999813037e-06 1 1 0 0 -102 2 1 0.00333256928516201 -0.00576620368466968 0 0.00193421539063981 -0.000400028326516949 0.999998049392178 100 4.25540827109216e-06 1 1 0 0 -103 2 1 0.0019993048960083 -0.00237289207895847 0 0.00116055671066786 -0.000389183404914256 0.999999250821919 100 1.62250796620356e-06 1 1 0 0 -104 2 1 0.000666395441588807 -0.00067631053470929 0 0.000386856816283509 -0.000383760883633844 0.999999851534683 100 3.20140429721505e-07 1 1 0 0 -105 2 1 -0.000666395441588807 -0.00067631053470929 0 -0.000386856816283509 -0.000383760883633844 0.999999851534683 100 3.20140429721505e-07 1 1 0 0 -106 2 1 -0.0019993048960083 -0.00237289207895847 0 -0.00116055671066786 -0.000389183404914256 0.999999250821919 100 1.62250796620356e-06 1 1 0 0 -107 2 1 -0.00333256928516179 -0.00576620368466968 0 -0.00193421539063981 -0.000400028326516949 0.999998049392178 100 4.25540827109216e-06 1 1 0 0 -108 2 1 -0.00466642263560946 -0.010856542370069 0 -0.00270780538037644 -0.000416295406534012 0.999996247237037 100 8.27518999813037e-06 1 1 0 0 -109 2 1 -0.00600109507887492 -0.0176443536542283 0 -0.00348129920473298 -0.000437984282087994 0.999993844343862 100 1.37663648729358e-05 1 1 0 0 -110 2 1 -0.00733681129338404 -0.0261302315219581 0 -0.00425466938951398 -0.000465094469340788 0.999990840695814 100 2.08416215627949e-05 1 1 0 0 -111 2 1 -0.00867378894596804 -0.0363149184143784 0 -0.00502788846174509 -0.000497625363461651 0.99998723627185 100 2.96418310199442e-05 1 1 0 0 -112 2 1 0.0194256387751368 -0.0413384717459935 0 0.00501467076412682 -0.00126456100810057 0.999986626891872 100 8.86125428678497e-05 1 1 0 0 -113 2 1 0.0164357763715994 -0.0310466250516901 0 0.00424348479024316 -0.00123208495646474 0.999990237354093 100 6.42321780333077e-05 1 1 0 0 -114 2 1 0.0134465524171508 -0.0224714424491252 0 0.00347214790060917 -0.00120502047207527 0.999993246034501 100 4.41739042571498e-05 1 1 0 0 -115 2 1 0.0104578625092766 -0.0156121841737742 0 0.00270068753241512 -0.00118336815932535 0.999995652953877 100 2.82966021813991e-05 1 1 0 0 -116 2 1 0.0074695952377839 -0.010468258374051 0 0.00192913112407364 -0.00116712850171291 0.999997458128853 100 1.64873947596789e-05 1 1 0 0 -117 2 1 0.00448163374228727 -0.00703922113677691 0 0.00115750611494795 -0.00115630186185506 0.999998661571903 100 8.66162201873522e-06 1 1 0 0 -118 2 1 0.00149385726950968 -0.00532477650852115 0 0.000385839945080189 -0.00115088848149145 0.999999263291348 100 4.76284503747593e-06 1 1 0 0 -119 2 1 -0.00149385726950968 -0.00532477650852115 0 -0.000385839945080189 -0.00115088848149145 0.999999263291348 100 4.76284503747593e-06 1 1 0 0 -120 2 1 -0.00448163374228727 -0.00703922113677691 0 -0.00115750611494795 -0.00115630186185506 0.999998661571903 100 8.66162201873522e-06 1 1 0 0 -121 2 1 -0.00746959523778412 -0.010468258374051 0 -0.00192913112407364 -0.00116712850171291 0.999997458128853 100 1.64873947596789e-05 1 1 0 0 -122 2 1 -0.0104578625092766 -0.0156121841737742 0 -0.00270068753241512 -0.00118336815932535 0.999995652953877 100 2.82966021813991e-05 1 1 0 0 -123 2 1 -0.0134465524171508 -0.0224714424491252 0 -0.00347214790060917 -0.00120502047207527 0.999993246034501 100 4.41739042571498e-05 1 1 0 0 -124 2 1 -0.0164357763715994 -0.0310466250516901 0 -0.00424348479024316 -0.00123208495646474 0.999990237354093 100 6.42321780333077e-05 1 1 0 0 -125 2 1 -0.0194256387751368 -0.0413384717459935 0 -0.00501467076412682 -0.00126456100810057 0.999986626891872 100 8.86125428678497e-05 1 1 0 0 -126 2 1 0.0300850729035869 -0.0513391581335574 0 0.0050014377281801 -0.00203278628752127 0.999985426594088 100 0.000159293782189707 1 1 0 0 -127 2 1 0.025456543581817 -0.0409402977946283 0 0.00423228721338655 -0.00200036502421036 0.99998904308233 100 0.000119261545933114 1 1 0 0 -128 2 1 0.0208280297035968 -0.0322759322777586 0 0.00346298597914238 -0.00197334619754416 0.999992056784899 100 8.61604819419881e-05 1 1 0 0 -129 2 1 0.0161995401340107 -0.0253453244766038 0 0.00269356142694452 -0.00195173041148952 0.999994467722317 100 5.98492428025565e-05 1 1 0 0 -130 2 1 0.0115710767341208 -0.0201478846690006 0 0.00192404095951379 -0.00193551814919993 0.999996275911006 100 4.02147450131451e-05 1 1 0 0 -131 2 1 0.00694263591767941 -0.0166831705406367 0 0.00115445198052273 -0.00192470977303222 0.999997481363285 100 2.71721947910919e-05 1 1 0 0 -132 2 1 0.00231421020761291 -0.0149508872007285 0 0.000384821894323577 -0.00191930552455674 0.999998084087371 100 2.06650528298269e-05 1 1 0 0 -133 2 1 -0.00231421020761291 -0.0149508872007285 0 -0.000384821894323577 -0.00191930552455674 0.999998084087371 100 2.06650528298269e-05 1 1 0 0 -134 2 1 -0.00694263591767941 -0.0166831705406367 0 -0.00115445198052273 -0.00192470977303222 0.999997481363285 100 2.71721947910919e-05 1 1 0 0 -135 2 1 -0.0115710767341217 -0.0201478846690006 0 -0.00192404095951379 -0.00193551814919993 0.999996275911006 100 4.02147450131451e-05 1 1 0 0 -136 2 1 -0.0161995401340107 -0.0253453244766038 0 -0.00269356142694452 -0.00195173041148952 0.999994467722317 100 5.98492428025565e-05 1 1 0 0 -137 2 1 -0.0208280297035968 -0.0322759322777586 0 -0.00346298597914238 -0.00197334619754416 0.999992056784899 100 8.61604819419881e-05 1 1 0 0 -138 2 1 -0.025456543581817 -0.0409402977946283 0 -0.00423228721338655 -0.00200036502421036 0.99998904308233 100 0.000119261545933114 1 1 0 0 -139 2 1 -0.0300850729035869 -0.0513391581335574 0 -0.0050014377281801 -0.00203278628752127 0.999985426594088 100 0.000159293782189707 1 1 0 0 -140 2 1 0.040651778944798 -0.066342009733718 0 0.00498818925947425 -0.00280230838772086 0.999983632383856 100 0.000249431815177559 1 1 0 0 -141 2 1 0.034398848632418 -0.0558362793825009 0 0.00422107657904062 -0.00276994185857179 0.999987254886088 100 0.000193675412674565 1 1 0 0 -142 2 1 0.0281453107238199 -0.0470828506633487 0 0.00345381337495649 -0.00274296864449214 0.999990273600792 100 0.000147471321611192 1 1 0 0 -143 2 1 0.0218912873580748 -0.0400809891211313 0 0.00268642701311631 -0.00272138934901889 0.999992688548228 100 0.000110677948896409 1 1 0 0 -144 2 1 0.0156368936738314 -0.0348301071533212 0 0.00191894486063989 -0.00270520445496453 0.999994499744613 100 8.31820235589475e-05 1 1 0 0 -145 2 1 0.00938223936519944 -0.0313297640335843 0 0.0011513942855999 -0.00269441432443107 0.999995707202109 100 6.48986009537111e-05 1 1 0 0 -146 2 1 0.00312743023744211 -0.0295796659328351 0 0.00038380265674957 -0.00268901919881595 0.99999631092883 100 5.57710454813787e-05 1 1 0 0 -147 2 1 -0.00312743023744211 -0.0295796659328351 0 -0.00038380265674957 -0.00268901919881595 0.99999631092883 100 5.57710454813787e-05 1 1 0 0 -148 2 1 -0.00938223936519944 -0.0313297640335843 0 -0.0011513942855999 -0.00269441432443107 0.999995707202109 100 6.48986009537111e-05 1 1 0 0 -149 2 1 -0.0156368936738314 -0.0348301071533212 0 -0.00191894486063989 -0.00270520445496453 0.999994499744613 100 8.31820235589475e-05 1 1 0 0 -150 2 1 -0.0218912873580748 -0.0400809891211313 0 -0.00268642701311631 -0.00272138934901889 0.999992688548228 100 0.000110677948896409 1 1 0 0 -151 2 1 -0.0281453107238199 -0.0470828506633487 0 -0.00345381337495649 -0.00274296864449214 0.999990273600792 100 0.000147471321611192 1 1 0 0 -152 2 1 -0.0343988486324189 -0.0558362793825009 0 -0.00422107657904062 -0.00276994185857179 0.999987254886088 100 0.000193675412674565 1 1 0 0 -153 2 1 -0.040651778944798 -0.066342009733718 0 -0.00498818925947425 -0.00280230838772086 0.999983632383856 100 0.000249431815177559 1 1 0 0 -154 2 1 0.0511254409195194 -0.0863723429355536 0 0.00497492526333552 -0.00357313452664035 0.999981241238194 100 0.000366863300996556 1 1 0 0 -155 2 1 0.0432624241918846 -0.0757598836704512 0 0.00420985280709623 -0.00354082267748002 0.999984869742592 100 0.000295309865805393 1 1 0 0 -156 2 1 0.0353981767762712 -0.0669175093479173 0 0.00344463002250721 -0.00351389503084396 0.999987893459576 100 0.000235942024914948 1 1 0 0 -157 2 1 0.0275329340953694 -0.0598444881556661 0 0.0026792842399513 -0.00349235218983721 0.999990312409147 100 0.000188617942626479 1 1 0 0 -158 2 1 0.0196669245749386 -0.0545402346039414 0 0.00191384279103807 -0.00347619463693144 0.999992126607314 100 0.000153224157998011 1 1 0 0 -159 2 1 0.0118003711988937 -0.0510043095473915 0 0.00114833300833111 -0.00346542273397279 0.999993336066085 100 0.000129675573816712 1 1 0 0 -160 2 1 0.00393349306421809 -0.049236420212424 0 0.000382782225075369 -0.00346003672218975 0.999993940793467 100 0.000117915461260054 1 1 0 0 -161 2 1 -0.00393349306421809 -0.049236420212424 0 -0.000382782225075369 -0.00346003672218975 0.999993940793467 100 0.000117915461260054 1 1 0 0 -162 2 1 -0.0118003711988937 -0.0510043095473915 0 -0.00114833300833111 -0.00346542273397279 0.999993336066085 100 0.000129675573816712 1 1 0 0 -163 2 1 -0.0196669245749386 -0.0545402346039414 0 -0.00191384279103807 -0.00347619463693144 0.999992126607314 100 0.000153224157998011 1 1 0 0 -164 2 1 -0.0275329340953694 -0.0598444881556661 0 -0.0026792842399513 -0.00349235218983721 0.999990312409147 100 0.000188617942626479 1 1 0 0 -165 2 1 -0.0353981767762712 -0.0669175093479173 0 -0.00344463002250721 -0.00351389503084396 0.999987893459576 100 0.000235942024914948 1 1 0 0 -166 2 1 -0.0432624241918846 -0.0757598836704512 0 -0.00420985280709623 -0.00354082267748002 0.999984869742592 100 0.000295309865805393 1 1 0 0 -167 2 1 -0.0511254409195194 -0.0863723429355536 0 -0.00497492526333552 -0.00357313452664035 0.999981241238194 100 0.000366863300996556 1 1 0 0 -168 2 1 0.0615057392303777 -0.111455760971078 0 0.00496164564484674 -0.0043452719543263 0.99997825010554 100 0.000519516556778399 1 1 0 0 -169 2 1 0.052046999867434 -0.100736711330969 0 0.00419861581723811 -0.00431301473098242 0.999981884600491 100 0.000432092632308922 1 1 0 0 -170 2 1 0.0425864066548391 -0.0918055068772468 0 0.00343543585608166 -0.00428613260663979 0.999984913310074 100 0.0003594998306653 1 1 0 0 -171 2 1 0.0331243083118329 -0.0846614184265215 0 0.00267213305633923 -0.00426462618397774 0.999987336254035 100 0.000301596070130472 1 1 0 0 -172 2 1 0.0236610465640854 -0.0793038625887004 0 0.00190873471420086 -0.0042484959451301 0.999989153448174 100 0.000258267697063275 1 1 0 0 -173 2 1 0.0141969576979959 -0.0757324017991809 0 0.00114526812681179 -0.00423774225168677 0.999990364904345 100 0.000229429469527531 1 1 0 0 -174 2 1 0.00473237411488958 -0.0739467443369959 0 0.000381760591999451 -0.00423236534470023 0.999990970630455 100 0.000215024561839527 1 1 0 0 -175 2 1 -0.00473237411488958 -0.0739467443369959 0 -0.000381760591999451 -0.00423236534470023 0.999990970630455 100 0.000215024561839527 1 1 0 0 -176 2 1 -0.0141969576979959 -0.0757324017991809 0 -0.00114526812681179 -0.00423774225168677 0.999990364904345 100 0.000229429469527531 1 1 0 0 -177 2 1 -0.0236610465640854 -0.0793038625887004 0 -0.00190873471420086 -0.0042484959451301 0.999989153448174 100 0.000258267697063275 1 1 0 0 -178 2 1 -0.0331243083118329 -0.0846614184265215 0 -0.00267213305633923 -0.00426462618397774 0.999987336254035 100 0.000301596070130472 1 1 0 0 -179 2 1 -0.0425864066548391 -0.0918055068772468 0 -0.00343543585608166 -0.00428613260663979 0.999984913310074 100 0.0003594998306653 1 1 0 0 -180 2 1 -0.0520469998674349 -0.100736711330969 0 -0.00419861581723812 -0.00431301473098242 0.999981884600491 100 0.000432092632308922 1 1 0 0 -181 2 1 -0.0615057392303777 -0.111455760971078 0 -0.00496164564484674 -0.0043452719543263 0.99997825010554 100 0.000519516556778399 1 1 0 0 -182 2 1 0.0717923506364473 -0.141618156523235 0 0.00494835030884669 -0.00511872795311996 0.99997465590552 100 0.000715412818635741 1 1 0 0 -183 2 1 0.0607523021833085 -0.13079265248526 0 0.0041873655289447 -0.00508652530140424 0.999978296379619 100 0.000612044350873475 1 1 0 0 -184 2 1 0.0497097766310581 -0.121772731232875 0 0.00342623080979812 -0.00505968865419701 0.999981330072297 100 0.00052616487528212 1 1 0 0 -185 2 1 0.0386652360116599 -0.114557666200329 0 0.00266497341103845 -0.00503821861375559 0.999983757003042 100 0.000457632071402259 1 1 0 0 -186 2 1 0.0276191353666966 -0.109146876094029 0 0.00190362059352694 -0.00502211566186961 0.999985577187449 100 0.000406332083912275 1 1 0 0 -187 2 1 0.0165719243010118 -0.105539924919783 0 0.00114219961908111 -0.00501138015987462 0.999986790637218 100 0.000372179529222194 1 1 0 0 -188 2 1 0.00552404853617355 -0.10373652200237 0 0.000380737750201521 -0.00500601234865691 0.999987397360152 100 0.000355117482058631 1 1 0 0 -189 2 1 -0.00552404853617355 -0.10373652200237 0 -0.000380737750201521 -0.00500601234865691 0.999987397360152 100 0.000355117482058631 1 1 0 0 -190 2 1 -0.0165719243010118 -0.105539924919783 0 -0.00114219961908111 -0.00501138015987462 0.999986790637218 100 0.000372179529222194 1 1 0 0 -191 2 1 -0.0276191353666964 -0.109146876094029 0 -0.00190362059352694 -0.00502211566186961 0.999985577187449 100 0.000406332083912275 1 1 0 0 -192 2 1 -0.0386652360116599 -0.114557666200329 0 -0.00266497341103845 -0.00503821861375559 0.999983757003042 100 0.000457632071402259 1 1 0 0 -193 2 1 -0.0497097766310581 -0.121772731232875 0 -0.00342623080979812 -0.00505968865419701 0.999981330072297 100 0.00052616487528212 1 1 0 0 -194 2 1 -0.0607523021833094 -0.13079265248526 0 -0.0041873655289447 -0.00508652530140424 0.999978296379619 100 0.000612044350873475 1 1 0 0 -195 2 1 -0.0717923506364473 -0.141618156523235 0 -0.00494835030884669 -0.00511872795311996 0.99997465590552 100 0.000715412818635741 1 1 0 0 -196 2 1 -0.069151302035487 -0.138465586916393 0 0.00511999075325057 0.00483541137152327 0.999975201938305 100 -0.000687528123080483 1 1 0 0 -197 2 1 -0.058523912748643 -0.129035320137364 0 0.00433260488091833 0.00486832767963155 0.999978763734785 100 -0.000589230105902061 1 1 0 0 -198 2 1 -0.047890900088146 -0.121178160523208 0 0.00354506650441356 0.00489575905078607 0.999981731856535 100 -0.000507059890082928 1 1 0 0 -199 2 1 -0.0372532747502148 -0.114893346639345 0 0.00275740334975018 0.00491770487711715 0.99998410632645 100 -0.000441156684928501 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +0 2 1 -0.069151302035487 -0.138465586916393 0 0.00511999075325057 0.00483541137152327 0.999975201938305 100 -0.000687528123080483 1 1 0 0 +1 2 1 -0.058523912748643 -0.129035320137364 0 0.00433260488091833 0.00486832767963155 0.999978763734785 100 -0.000589230105902061 1 1 0 0 +2 2 1 -0.047890900088146 -0.121178160523208 0 0.00354506650441356 0.00489575905078607 0.999981731856535 100 -0.000507059890082928 1 1 0 0 +3 2 1 -0.0372532747502148 -0.114893346639345 0 0.00275740334975018 0.00491770487711715 0.99998410632645 100 -0.000441156684928501 1 1 0 0 +4 2 1 -0.026612054472497 -0.110180269302885 0 0.00196964314415274 0.00493416467234956 0.999985887162849 100 -0.000391631844649964 1 1 0 0 +5 2 1 -0.0159682624690278 -0.107038471596382 0 0.00118181361578715 0.00494513807177832 0.999987074379478 100 -0.000358568889623712 1 1 0 0 +6 2 1 -0.00532292586549377 -0.105467648899164 0 0.000393942493491747 0.00495062483227404 0.999987667985502 100 -0.000342023491043619 1 1 0 0 +7 2 1 0.00532292586549377 -0.105467648899164 0 -0.000393942493491747 0.00495062483227404 0.999987667985502 100 -0.000342023491043619 1 1 0 0 +8 2 1 0.0159682624690278 -0.107038471596382 0 -0.00118181361578715 0.00494513807177832 0.999987074379478 100 -0.000358568889623712 1 1 0 0 +9 2 1 0.0266120544724968 -0.110180269302885 0 -0.00196964314415274 0.00493416467234956 0.999985887162849 100 -0.000391631844649964 1 1 0 0 +10 2 1 0.0372532747502148 -0.114893346639345 0 -0.00275740334975018 0.00491770487711715 0.99998410632645 100 -0.000441156684928501 1 1 0 0 +11 2 1 0.047890900088146 -0.121178160523208 0 -0.00354506650441356 0.00489575905078607 0.999981731856535 100 -0.000507059890082928 1 1 0 0 +12 2 1 0.0585239127486421 -0.129035320137364 0 -0.00433260488091833 0.00486832767963155 0.999978763734785 100 -0.000589230105902061 1 1 0 0 +13 2 1 0.069151302035487 -0.138465586916393 0 -0.00511999075325057 0.00483541137152327 0.999975201938305 100 -0.000687528123080483 1 1 0 0 +14 2 1 -0.0577609925286904 -0.109326765090657 0 0.0051068778001812 0.00407730460910771 0.999978647465164 100 -0.000500972024724433 1 1 0 0 +15 2 1 -0.0488847118053233 -0.099788245895696 0 0.00432150890463304 0.00411016569554754 0.999982215391225 100 -0.00041776709667829 1 1 0 0 +16 2 1 -0.0400034310725039 -0.0918408709061325 0 0.00353598770522072 0.00413755104784627 0.999985188621449 100 -0.000348174019563885 1 1 0 0 +17 2 1 -0.0311180476951338 -0.0854838814252696 0 0.00275034189153588 0.0041594600585643 0.999987567178463 100 -0.000292332243134297 1 1 0 0 +18 2 1 -0.022229466075038 -0.0807166704695632 0 0.00196459915438246 0.00417589224178067 0.999989351080374 100 -0.00025035330963874 1 1 0 0 +19 2 1 -0.0133385960867904 -0.0775387827674141 0 0.00117878718550683 0.00418684723305163 0.999990540340766 100 -0.000222320880766347 1 1 0 0 +20 2 1 -0.00444635151407002 -0.0759499147982661 0 0.000392933677328631 0.00419232478942483 0.999991134968698 100 -0.000208290723094251 1 1 0 0 +21 2 1 0.00444635151407002 -0.0759499147982661 0 -0.000392933677328631 0.00419232478942483 0.999991134968698 100 -0.000208290723094251 1 1 0 0 +22 2 1 0.0133385960867904 -0.0775387827674141 0 -0.00117878718550683 0.00418684723305163 0.999990540340766 100 -0.000222320880766347 1 1 0 0 +23 2 1 0.0222294660750384 -0.0807166704695632 0 -0.00196459915438246 0.00417589224178067 0.999989351080374 100 -0.00025035330963874 1 1 0 0 +24 2 1 0.0311180476951338 -0.0854838814252696 0 -0.00275034189153588 0.0041594600585643 0.999987567178463 100 -0.000292332243134297 1 1 0 0 +25 2 1 0.0400034310725039 -0.0918408709061325 0 -0.00353598770522072 0.00413755104784627 0.999985188621449 100 -0.000348174019563885 1 1 0 0 +26 2 1 0.0488847118053233 -0.099788245895696 0 -0.00432150890463304 0.00411016569554754 0.999982215391225 100 -0.00041776709667829 1 1 0 0 +27 2 1 0.0577609925286904 -0.109326765090657 0 -0.0051068778001812 0.00407730460910771 0.999978647465164 100 -0.000500972024724433 1 1 0 0 +28 2 1 -0.0464610105416243 -0.0849975978430773 0 0.00509375016303548 0.00331795763403814 0.999981522262494 100 -0.000354500547246062 1 1 0 0 +29 2 1 -0.0393219420521547 -0.0753509896778355 0 0.00431040050436463 0.00335076355300085 0.999985096304492 100 -0.000286456749336139 1 1 0 0 +30 2 1 -0.0321784968116301 -0.0673135355299714 0 0.00352689874163562 0.00337810293159821 0.999988074631818 100 -0.000229497515078947 1 1 0 0 +31 2 1 -0.0250314588727911 -0.0608844794425591 0 0.00274327252810933 0.0033999751628325 0.999990457266832 100 -0.000183762528536136 1 1 0 0 +32 2 1 -0.0178816193207143 -0.0560632166163559 0 0.00195954951826029 0.00341637976112852 0.999992244227431 100 -0.00014936352067707 1 1 0 0 +33 2 1 -0.0107297747097803 -0.0528492934225175 0 0.0011757573675067 0.00342731636230745 0.999993435527037 100 -0.000126384297914228 1 1 0 0 +34 2 1 -0.0035767255009469 -0.0512424074334947 0 0.000391923731940797 0.00343278472359046 0.999994031174601 100 -0.000114880719479515 1 1 0 0 +35 2 1 0.0035767255009469 -0.0512424074334947 0 -0.000391923731940797 0.00343278472359046 0.999994031174601 100 -0.000114880719479515 1 1 0 0 +36 2 1 0.0107297747097803 -0.0528492934225175 0 -0.0011757573675067 0.00342731636230745 0.999993435527037 100 -0.000126384297914228 1 1 0 0 +37 2 1 0.0178816193207147 -0.0560632166163559 0 -0.00195954951826029 0.00341637976112852 0.999992244227431 100 -0.00014936352067707 1 1 0 0 +38 2 1 0.0250314588727911 -0.0608844794425591 0 -0.00274327252810933 0.0033999751628325 0.999990457266832 100 -0.000183762528536136 1 1 0 0 +39 2 1 0.0321784968116301 -0.0673135355299714 0 -0.00352689874163562 0.00337810293159821 0.999988074631818 100 -0.000229497515078947 1 1 0 0 +40 2 1 0.0393219420521538 -0.0753509896778355 0 -0.00431040050436464 0.00335076355300085 0.999985096304492 100 -0.000286456749336139 1 1 0 0 +41 2 1 0.0464610105416243 -0.0849975978430773 0 -0.00509375016303548 0.00331795763403814 0.999981522262494 100 -0.000354500547246062 1 1 0 0 +42 2 1 -0.0352516439989943 -0.0655011979605549 0 0.00508060774906991 0.0025573634790971 0.999983823527629 100 -0.000240966286810362 1 1 0 0 +43 2 1 -0.029835847083155 -0.0557466618369689 0 0.0042992796016371 0.00259011428476172 0.999987403672116 100 -0.000188152159239507 1 1 0 0 +44 2 1 -0.0244162965861974 -0.0476192627268763 0 0.0035177995494502 0.00261740773480795 0.999990387085336 100 -0.00014388388444786 1 1 0 0 +45 2 1 -0.0189936632645886 -0.0411182474018448 0 0.00273619520953059 0.0026392432226798 0.999992773789384 100 -0.000108301377736097 1 1 0 0 +46 2 1 -0.0135686249026816 -0.0362430132398104 0 0.0019544942001147 0.00265562026314864 0.999994563801944 100 -8.15165665244422e-05 1 1 0 0 +47 2 1 -0.00814186475074474 -0.0329931082469517 0 0.00117272414038377 0.00266653849229653 0.999995757136279 100 -6.36133914895254e-05 1 1 0 0 +48 2 1 -0.00271406996318441 -0.031368231086716 0 0.000390912650193908 0.00267199766752121 0.999996353801235 100 -5.46478172509524e-05 1 1 0 0 +49 2 1 0.00271406996318441 -0.031368231086716 0 -0.000390912650193908 0.00267199766752121 0.999996353801235 100 -5.46478172509524e-05 1 1 0 0 +50 2 1 0.00814186475074474 -0.0329931082469517 0 -0.00117272414038377 0.00266653849229653 0.999995757136279 100 -6.36133914895254e-05 1 1 0 0 +51 2 1 0.0135686249026818 -0.0362430132398104 0 -0.0019544942001147 0.00265562026314864 0.999994563801944 100 -8.15165665244422e-05 1 1 0 0 +52 2 1 0.0189936632645886 -0.0411182474018448 0 -0.00273619520953059 0.0026392432226798 0.999992773789384 100 -0.000108301377736097 1 1 0 0 +53 2 1 0.0244162965861974 -0.0476192627268763 0 -0.0035177995494502 0.00261740773480795 0.999990387085336 100 -0.00014388388444786 1 1 0 0 +54 2 1 0.0298358470831541 -0.0557466618369689 0 -0.0042992796016371 0.00259011428476172 0.999987403672116 100 -0.000188152159239507 1 1 0 0 +55 2 1 0.0352516439989943 -0.0655011979605549 0 -0.00508060774906991 0.0025573634790971 0.999983823527629 100 -0.000240966286810362 1 1 0 0 +56 2 1 -0.0241331842480994 -0.0508609450882622 0 0.00506745046530147 0.00179551514632004 0.999985548431147 100 -0.000153139810095126 1 1 0 0 +57 2 1 -0.0204266733882399 -0.0409986395723441 0 0.00428814611777176 0.00182821089285268 0.999989134664874 100 -0.000115624400450542 1 1 0 0 +58 2 1 -0.0167170320461403 -0.0327814276622309 0 0.00350869006429055 0.00185545845949439 0.999992123152946 100 -8.41046196455864e-05 1 1 0 0 +59 2 1 -0.0130048176946449 -0.0262085588385217 0 0.0027291098857308 0.00187725724011881 0.999994513917194 100 -5.87206258160222e-05 1 1 0 0 +60 2 1 -0.00929059483028616 -0.0212794326542181 0 0.00194943316418206 0.0018936067498484 0.999996306975088 100 -3.95845274852036e-05 1 1 0 0 +61 2 1 -0.00557493341214199 -0.0179935987412232 0 0.0011696874826798 0.00190450662502467 0.999997502339735 100 -2.6780420967043e-05 1 1 0 0 +62 2 1 -0.00185840730107478 -0.0163507568490893 0 0.000389900424935203 0.00190995662321969 0.999998100019873 100 -2.03643520535479e-05 1 1 0 0 +63 2 1 0.00185840730107478 -0.0163507568490893 0 -0.000389900424935203 0.00190995662321969 0.999998100019873 100 -2.03643520535479e-05 1 1 0 0 +64 2 1 0.00557493341214199 -0.0179935987412232 0 -0.0011696874826798 0.00190450662502467 0.999997502339735 100 -2.6780420967043e-05 1 1 0 0 +65 2 1 0.00929059483028616 -0.0212794326542181 0 -0.00194943316418206 0.0018936067498484 0.999996306975088 100 -3.95845274852036e-05 1 1 0 0 +66 2 1 0.0130048176946449 -0.0262085588385217 0 -0.0027291098857308 0.00187725724011881 0.999994513917194 100 -5.87206258160222e-05 1 1 0 0 +67 2 1 0.0167170320461403 -0.0327814276622309 0 -0.00350869006429055 0.00185545845949439 0.999992123152946 100 -8.41046196455864e-05 1 1 0 0 +68 2 1 0.0204266733882399 -0.0409986395723441 0 -0.00428814611777176 0.00182821089285268 0.999989134664874 100 -0.000115624400450542 1 1 0 0 +69 2 1 0.0241331842480994 -0.0508609450882622 0 -0.00506745046530147 0.00179551514632004 0.999985548431147 100 -0.000153139810095126 1 1 0 0 +70 2 1 -0.0131059260823143 -0.0411004881235817 0 0.00505427821850703 0.001032405606818 0.999986694116653 100 -8.37085160583229e-05 1 1 0 0 +71 2 1 -0.0110946703732457 -0.0311305693342601 0 0.00427699997388696 0.00106504634838955 0.999990286426573 100 -6.1561381357933e-05 1 1 0 0 +72 2 1 -0.00908090722701571 -0.0228236747346213 0 0.00349957022161663 0.00109224807676317 0.999993279978622 100 -4.28480609571125e-05 1 1 0 0 +73 2 1 -0.00706508084255075 -0.0161790565194964 0 0.00272201650651188 0.00111401018625559 0.999995674794368 100 -2.77089477549453e-05 1 1 0 0 +74 2 1 -0.00504764243817291 -0.0111961163957837 0 0.00194436637460643 0.00113033219232972 0.99999747089107 100 -1.62563454750853e-05 1 1 0 0 +75 2 1 -0.00302904869159848 -0.007874405623989 0 0.00116664737288117 0.00114121373159284 0.999998668281676 100 -8.574487083024e-06 1 1 0 0 +76 2 1 -0.00100976017996829 -0.00621362503288947 0 0.000388887048993471 0.00114665456178814 0.999999266974821 100 -4.71952182579116e-06 1 1 0 0 +77 2 1 0.00100976017996829 -0.00621362503288947 0 -0.000388887048993471 0.00114665456178814 0.999999266974821 100 -4.71952182579116e-06 1 1 0 0 +78 2 1 0.00302904869159848 -0.007874405623989 0 -0.00116664737288117 0.00114121373159284 0.999998668281676 100 -8.574487083024e-06 1 1 0 0 +79 2 1 0.00504764243817202 -0.0111961163957837 0 -0.00194436637460643 0.00113033219232972 0.99999747089107 100 -1.62563454750853e-05 1 1 0 0 +80 2 1 0.00706508084255075 -0.0161790565194964 0 -0.00272201650651188 0.00111401018625559 0.999995674794368 100 -2.77089477549453e-05 1 1 0 0 +81 2 1 0.00908090722701571 -0.0228236747346213 0 -0.00349957022161663 0.00109224807676317 0.999993279978622 100 -4.28480609571125e-05 1 1 0 0 +82 2 1 0.0110946703732457 -0.0311305693342601 0 -0.00427699997388696 0.00106504634838955 0.999990286426573 100 -6.1561381357933e-05 1 1 0 0 +83 2 1 0.0131059260823143 -0.0411004881235817 0 -0.00505427821850703 0.001032405606818 0.999986694116653 100 -8.37085160583229e-05 1 1 0 0 +84 2 1 -0.00217016776514001 -0.0362437476570783 0 0.00504109091522312 0.000268027800631038 0.999987257700558 100 -2.5275457232965e-05 1 1 0 0 +85 2 1 -0.00184009037994315 -0.0261663692328016 0 0.00426584109089738 0.000300613591395854 0.999990856073822 100 -1.85666882543956e-05 1 1 0 0 +86 2 1 -0.00150812856653193 -0.0177699200075249 0 0.00349043995672192 0.000327769526644123 0.99999385467914 100 -1.27182294136219e-05 1 1 0 0 +87 2 1 -0.00117461325611101 -0.0110536548548785 0 0.00271491502154621 0.000349495001111616 0.999996253537817 100 -7.87071860486321e-06 1 1 0 0 +88 2 1 -0.000839882395432756 -0.00601697764631376 0 0.0019392937954394 0.000365789530616917 0.999998052666901 100 -4.13665600262902e-06 1 1 0 0 +89 2 1 -0.000504279387385953 -0.00265944125151518 0 0.00116360378941877 0.000376652752020923 0.999999252079183 100 -1.60040940500039e-06 1 1 0 0 +90 2 1 -0.000168151532092375 -0.000980747580731411 0 0.000387872515178991 0.00038208442324511 0.999999851783192 100 -3.18223897011194e-07 1 1 0 0 +91 2 1 0.000168151532092375 -0.000980747580731411 0 -0.000387872515178991 0.00038208442324511 0.999999851783192 100 -3.18223897011194e-07 1 1 0 0 +92 2 1 0.000504279387385953 -0.00265944125151518 0 -0.00116360378941877 0.000376652752020923 0.999999252079183 100 -1.60040940500039e-06 1 1 0 0 +93 2 1 0.000839882395432312 -0.00601697764631376 0 -0.0019392937954394 0.000365789530616917 0.999998052666901 100 -4.13665600262902e-06 1 1 0 0 +94 2 1 0.00117461325611101 -0.0110536548548785 0 -0.00271491502154621 0.000349495001111616 0.999996253537817 100 -7.87071860486321e-06 1 1 0 0 +95 2 1 0.00150812856653193 -0.0177699200075249 0 -0.00349043995672192 0.000327769526644123 0.99999385467914 100 -1.27182294136219e-05 1 1 0 0 +96 2 1 0.00184009037994315 -0.0261663692328016 0 -0.00426584109089738 0.000300613591395854 0.999990856073822 100 -1.85666882543956e-05 1 1 0 0 +97 2 1 0.00217016776514001 -0.0362437476570783 0 -0.00504109091522312 0.000268027800631038 0.999987257700558 100 -2.5275457232965e-05 1 1 0 0 +98 2 1 0.00867378894596804 -0.0363149184143784 0 0.00502788846174509 -0.000497625363461651 0.99998723627185 100 2.96418310199442e-05 1 1 0 0 +99 2 1 0.00733681129338404 -0.0261302315219581 0 0.00425466938951398 -0.000465094469340788 0.999990840695814 100 2.08416215627949e-05 1 1 0 0 +100 2 1 0.00600109507887492 -0.0176443536542283 0 0.00348129920473298 -0.000437984282087994 0.999993844343862 100 1.37663648729358e-05 1 1 0 0 +101 2 1 0.00466642263560946 -0.010856542370069 0 0.00270780538037644 -0.000416295406534012 0.999996247237037 100 8.27518999813037e-06 1 1 0 0 +102 2 1 0.00333256928516201 -0.00576620368466968 0 0.00193421539063981 -0.000400028326516949 0.999998049392178 100 4.25540827109216e-06 1 1 0 0 +103 2 1 0.0019993048960083 -0.00237289207895847 0 0.00116055671066786 -0.000389183404914256 0.999999250821919 100 1.62250796620356e-06 1 1 0 0 +104 2 1 0.000666395441588807 -0.00067631053470929 0 0.000386856816283509 -0.000383760883633844 0.999999851534683 100 3.20140429721505e-07 1 1 0 0 +105 2 1 -0.000666395441588807 -0.00067631053470929 0 -0.000386856816283509 -0.000383760883633844 0.999999851534683 100 3.20140429721505e-07 1 1 0 0 +106 2 1 -0.0019993048960083 -0.00237289207895847 0 -0.00116055671066786 -0.000389183404914256 0.999999250821919 100 1.62250796620356e-06 1 1 0 0 +107 2 1 -0.00333256928516179 -0.00576620368466968 0 -0.00193421539063981 -0.000400028326516949 0.999998049392178 100 4.25540827109216e-06 1 1 0 0 +108 2 1 -0.00466642263560946 -0.010856542370069 0 -0.00270780538037644 -0.000416295406534012 0.999996247237037 100 8.27518999813037e-06 1 1 0 0 +109 2 1 -0.00600109507887492 -0.0176443536542283 0 -0.00348129920473298 -0.000437984282087994 0.999993844343862 100 1.37663648729358e-05 1 1 0 0 +110 2 1 -0.00733681129338404 -0.0261302315219581 0 -0.00425466938951398 -0.000465094469340788 0.999990840695814 100 2.08416215627949e-05 1 1 0 0 +111 2 1 -0.00867378894596804 -0.0363149184143784 0 -0.00502788846174509 -0.000497625363461651 0.99998723627185 100 2.96418310199442e-05 1 1 0 0 +112 2 1 0.0194256387751368 -0.0413384717459935 0 0.00501467076412682 -0.00126456100810057 0.999986626891872 100 8.86125428678497e-05 1 1 0 0 +113 2 1 0.0164357763715994 -0.0310466250516901 0 0.00424348479024316 -0.00123208495646474 0.999990237354093 100 6.42321780333077e-05 1 1 0 0 +114 2 1 0.0134465524171508 -0.0224714424491252 0 0.00347214790060917 -0.00120502047207527 0.999993246034501 100 4.41739042571498e-05 1 1 0 0 +115 2 1 0.0104578625092766 -0.0156121841737742 0 0.00270068753241512 -0.00118336815932535 0.999995652953877 100 2.82966021813991e-05 1 1 0 0 +116 2 1 0.0074695952377839 -0.010468258374051 0 0.00192913112407364 -0.00116712850171291 0.999997458128853 100 1.64873947596789e-05 1 1 0 0 +117 2 1 0.00448163374228727 -0.00703922113677691 0 0.00115750611494795 -0.00115630186185506 0.999998661571903 100 8.66162201873522e-06 1 1 0 0 +118 2 1 0.00149385726950968 -0.00532477650852115 0 0.000385839945080189 -0.00115088848149145 0.999999263291348 100 4.76284503747593e-06 1 1 0 0 +119 2 1 -0.00149385726950968 -0.00532477650852115 0 -0.000385839945080189 -0.00115088848149145 0.999999263291348 100 4.76284503747593e-06 1 1 0 0 +120 2 1 -0.00448163374228727 -0.00703922113677691 0 -0.00115750611494795 -0.00115630186185506 0.999998661571903 100 8.66162201873522e-06 1 1 0 0 +121 2 1 -0.00746959523778412 -0.010468258374051 0 -0.00192913112407364 -0.00116712850171291 0.999997458128853 100 1.64873947596789e-05 1 1 0 0 +122 2 1 -0.0104578625092766 -0.0156121841737742 0 -0.00270068753241512 -0.00118336815932535 0.999995652953877 100 2.82966021813991e-05 1 1 0 0 +123 2 1 -0.0134465524171508 -0.0224714424491252 0 -0.00347214790060917 -0.00120502047207527 0.999993246034501 100 4.41739042571498e-05 1 1 0 0 +124 2 1 -0.0164357763715994 -0.0310466250516901 0 -0.00424348479024316 -0.00123208495646474 0.999990237354093 100 6.42321780333077e-05 1 1 0 0 +125 2 1 -0.0194256387751368 -0.0413384717459935 0 -0.00501467076412682 -0.00126456100810057 0.999986626891872 100 8.86125428678497e-05 1 1 0 0 +126 2 1 0.0300850729035869 -0.0513391581335574 0 0.0050014377281801 -0.00203278628752127 0.999985426594088 100 0.000159293782189707 1 1 0 0 +127 2 1 0.025456543581817 -0.0409402977946283 0 0.00423228721338655 -0.00200036502421036 0.99998904308233 100 0.000119261545933114 1 1 0 0 +128 2 1 0.0208280297035968 -0.0322759322777586 0 0.00346298597914238 -0.00197334619754416 0.999992056784899 100 8.61604819419881e-05 1 1 0 0 +129 2 1 0.0161995401340107 -0.0253453244766038 0 0.00269356142694452 -0.00195173041148952 0.999994467722317 100 5.98492428025565e-05 1 1 0 0 +130 2 1 0.0115710767341208 -0.0201478846690006 0 0.00192404095951379 -0.00193551814919993 0.999996275911006 100 4.02147450131451e-05 1 1 0 0 +131 2 1 0.00694263591767941 -0.0166831705406367 0 0.00115445198052273 -0.00192470977303222 0.999997481363285 100 2.71721947910919e-05 1 1 0 0 +132 2 1 0.00231421020761291 -0.0149508872007285 0 0.000384821894323577 -0.00191930552455674 0.999998084087371 100 2.06650528298269e-05 1 1 0 0 +133 2 1 -0.00231421020761291 -0.0149508872007285 0 -0.000384821894323577 -0.00191930552455674 0.999998084087371 100 2.06650528298269e-05 1 1 0 0 +134 2 1 -0.00694263591767941 -0.0166831705406367 0 -0.00115445198052273 -0.00192470977303222 0.999997481363285 100 2.71721947910919e-05 1 1 0 0 +135 2 1 -0.0115710767341217 -0.0201478846690006 0 -0.00192404095951379 -0.00193551814919993 0.999996275911006 100 4.02147450131451e-05 1 1 0 0 +136 2 1 -0.0161995401340107 -0.0253453244766038 0 -0.00269356142694452 -0.00195173041148952 0.999994467722317 100 5.98492428025565e-05 1 1 0 0 +137 2 1 -0.0208280297035968 -0.0322759322777586 0 -0.00346298597914238 -0.00197334619754416 0.999992056784899 100 8.61604819419881e-05 1 1 0 0 +138 2 1 -0.025456543581817 -0.0409402977946283 0 -0.00423228721338655 -0.00200036502421036 0.99998904308233 100 0.000119261545933114 1 1 0 0 +139 2 1 -0.0300850729035869 -0.0513391581335574 0 -0.0050014377281801 -0.00203278628752127 0.999985426594088 100 0.000159293782189707 1 1 0 0 +140 2 1 0.040651778944798 -0.066342009733718 0 0.00498818925947425 -0.00280230838772086 0.999983632383856 100 0.000249431815177559 1 1 0 0 +141 2 1 0.034398848632418 -0.0558362793825009 0 0.00422107657904062 -0.00276994185857179 0.999987254886088 100 0.000193675412674565 1 1 0 0 +142 2 1 0.0281453107238199 -0.0470828506633487 0 0.00345381337495649 -0.00274296864449214 0.999990273600792 100 0.000147471321611192 1 1 0 0 +143 2 1 0.0218912873580748 -0.0400809891211313 0 0.00268642701311631 -0.00272138934901889 0.999992688548228 100 0.000110677948896409 1 1 0 0 +144 2 1 0.0156368936738314 -0.0348301071533212 0 0.00191894486063989 -0.00270520445496453 0.999994499744613 100 8.31820235589475e-05 1 1 0 0 +145 2 1 0.00938223936519944 -0.0313297640335843 0 0.0011513942855999 -0.00269441432443107 0.999995707202109 100 6.48986009537111e-05 1 1 0 0 +146 2 1 0.00312743023744211 -0.0295796659328351 0 0.00038380265674957 -0.00268901919881595 0.99999631092883 100 5.57710454813787e-05 1 1 0 0 +147 2 1 -0.00312743023744211 -0.0295796659328351 0 -0.00038380265674957 -0.00268901919881595 0.99999631092883 100 5.57710454813787e-05 1 1 0 0 +148 2 1 -0.00938223936519944 -0.0313297640335843 0 -0.0011513942855999 -0.00269441432443107 0.999995707202109 100 6.48986009537111e-05 1 1 0 0 +149 2 1 -0.0156368936738314 -0.0348301071533212 0 -0.00191894486063989 -0.00270520445496453 0.999994499744613 100 8.31820235589475e-05 1 1 0 0 +150 2 1 -0.0218912873580748 -0.0400809891211313 0 -0.00268642701311631 -0.00272138934901889 0.999992688548228 100 0.000110677948896409 1 1 0 0 +151 2 1 -0.0281453107238199 -0.0470828506633487 0 -0.00345381337495649 -0.00274296864449214 0.999990273600792 100 0.000147471321611192 1 1 0 0 +152 2 1 -0.0343988486324189 -0.0558362793825009 0 -0.00422107657904062 -0.00276994185857179 0.999987254886088 100 0.000193675412674565 1 1 0 0 +153 2 1 -0.040651778944798 -0.066342009733718 0 -0.00498818925947425 -0.00280230838772086 0.999983632383856 100 0.000249431815177559 1 1 0 0 +154 2 1 0.0511254409195194 -0.0863723429355536 0 0.00497492526333552 -0.00357313452664035 0.999981241238194 100 0.000366863300996556 1 1 0 0 +155 2 1 0.0432624241918846 -0.0757598836704512 0 0.00420985280709623 -0.00354082267748002 0.999984869742592 100 0.000295309865805393 1 1 0 0 +156 2 1 0.0353981767762712 -0.0669175093479173 0 0.00344463002250721 -0.00351389503084396 0.999987893459576 100 0.000235942024914948 1 1 0 0 +157 2 1 0.0275329340953694 -0.0598444881556661 0 0.0026792842399513 -0.00349235218983721 0.999990312409147 100 0.000188617942626479 1 1 0 0 +158 2 1 0.0196669245749386 -0.0545402346039414 0 0.00191384279103807 -0.00347619463693144 0.999992126607314 100 0.000153224157998011 1 1 0 0 +159 2 1 0.0118003711988937 -0.0510043095473915 0 0.00114833300833111 -0.00346542273397279 0.999993336066085 100 0.000129675573816712 1 1 0 0 +160 2 1 0.00393349306421809 -0.049236420212424 0 0.000382782225075369 -0.00346003672218975 0.999993940793467 100 0.000117915461260054 1 1 0 0 +161 2 1 -0.00393349306421809 -0.049236420212424 0 -0.000382782225075369 -0.00346003672218975 0.999993940793467 100 0.000117915461260054 1 1 0 0 +162 2 1 -0.0118003711988937 -0.0510043095473915 0 -0.00114833300833111 -0.00346542273397279 0.999993336066085 100 0.000129675573816712 1 1 0 0 +163 2 1 -0.0196669245749386 -0.0545402346039414 0 -0.00191384279103807 -0.00347619463693144 0.999992126607314 100 0.000153224157998011 1 1 0 0 +164 2 1 -0.0275329340953694 -0.0598444881556661 0 -0.0026792842399513 -0.00349235218983721 0.999990312409147 100 0.000188617942626479 1 1 0 0 +165 2 1 -0.0353981767762712 -0.0669175093479173 0 -0.00344463002250721 -0.00351389503084396 0.999987893459576 100 0.000235942024914948 1 1 0 0 +166 2 1 -0.0432624241918846 -0.0757598836704512 0 -0.00420985280709623 -0.00354082267748002 0.999984869742592 100 0.000295309865805393 1 1 0 0 +167 2 1 -0.0511254409195194 -0.0863723429355536 0 -0.00497492526333552 -0.00357313452664035 0.999981241238194 100 0.000366863300996556 1 1 0 0 +168 2 1 0.0615057392303777 -0.111455760971078 0 0.00496164564484674 -0.0043452719543263 0.99997825010554 100 0.000519516556778399 1 1 0 0 +169 2 1 0.052046999867434 -0.100736711330969 0 0.00419861581723811 -0.00431301473098242 0.999981884600491 100 0.000432092632308922 1 1 0 0 +170 2 1 0.0425864066548391 -0.0918055068772468 0 0.00343543585608166 -0.00428613260663979 0.999984913310074 100 0.0003594998306653 1 1 0 0 +171 2 1 0.0331243083118329 -0.0846614184265215 0 0.00267213305633923 -0.00426462618397774 0.999987336254035 100 0.000301596070130472 1 1 0 0 +172 2 1 0.0236610465640854 -0.0793038625887004 0 0.00190873471420086 -0.0042484959451301 0.999989153448174 100 0.000258267697063275 1 1 0 0 +173 2 1 0.0141969576979959 -0.0757324017991809 0 0.00114526812681179 -0.00423774225168677 0.999990364904345 100 0.000229429469527531 1 1 0 0 +174 2 1 0.00473237411488958 -0.0739467443369959 0 0.000381760591999451 -0.00423236534470023 0.999990970630455 100 0.000215024561839527 1 1 0 0 +175 2 1 -0.00473237411488958 -0.0739467443369959 0 -0.000381760591999451 -0.00423236534470023 0.999990970630455 100 0.000215024561839527 1 1 0 0 +176 2 1 -0.0141969576979959 -0.0757324017991809 0 -0.00114526812681179 -0.00423774225168677 0.999990364904345 100 0.000229429469527531 1 1 0 0 +177 2 1 -0.0236610465640854 -0.0793038625887004 0 -0.00190873471420086 -0.0042484959451301 0.999989153448174 100 0.000258267697063275 1 1 0 0 +178 2 1 -0.0331243083118329 -0.0846614184265215 0 -0.00267213305633923 -0.00426462618397774 0.999987336254035 100 0.000301596070130472 1 1 0 0 +179 2 1 -0.0425864066548391 -0.0918055068772468 0 -0.00343543585608166 -0.00428613260663979 0.999984913310074 100 0.0003594998306653 1 1 0 0 +180 2 1 -0.0520469998674349 -0.100736711330969 0 -0.00419861581723812 -0.00431301473098242 0.999981884600491 100 0.000432092632308922 1 1 0 0 +181 2 1 -0.0615057392303777 -0.111455760971078 0 -0.00496164564484674 -0.0043452719543263 0.99997825010554 100 0.000519516556778399 1 1 0 0 +182 2 1 0.0717923506364473 -0.141618156523235 0 0.00494835030884669 -0.00511872795311996 0.99997465590552 100 0.000715412818635741 1 1 0 0 +183 2 1 0.0607523021833085 -0.13079265248526 0 0.0041873655289447 -0.00508652530140424 0.999978296379619 100 0.000612044350873475 1 1 0 0 +184 2 1 0.0497097766310581 -0.121772731232875 0 0.00342623080979812 -0.00505968865419701 0.999981330072297 100 0.00052616487528212 1 1 0 0 +185 2 1 0.0386652360116599 -0.114557666200329 0 0.00266497341103845 -0.00503821861375559 0.999983757003042 100 0.000457632071402259 1 1 0 0 +186 2 1 0.0276191353666966 -0.109146876094029 0 0.00190362059352694 -0.00502211566186961 0.999985577187449 100 0.000406332083912275 1 1 0 0 +187 2 1 0.0165719243010118 -0.105539924919783 0 0.00114219961908111 -0.00501138015987462 0.999986790637218 100 0.000372179529222194 1 1 0 0 +188 2 1 0.00552404853617355 -0.10373652200237 0 0.000380737750201521 -0.00500601234865691 0.999987397360152 100 0.000355117482058631 1 1 0 0 +189 2 1 -0.00552404853617355 -0.10373652200237 0 -0.000380737750201521 -0.00500601234865691 0.999987397360152 100 0.000355117482058631 1 1 0 0 +190 2 1 -0.0165719243010118 -0.105539924919783 0 -0.00114219961908111 -0.00501138015987462 0.999986790637218 100 0.000372179529222194 1 1 0 0 +191 2 1 -0.0276191353666964 -0.109146876094029 0 -0.00190362059352694 -0.00502211566186961 0.999985577187449 100 0.000406332083912275 1 1 0 0 +192 2 1 -0.0386652360116599 -0.114557666200329 0 -0.00266497341103845 -0.00503821861375559 0.999983757003042 100 0.000457632071402259 1 1 0 0 +193 2 1 -0.0497097766310581 -0.121772731232875 0 -0.00342623080979812 -0.00505968865419701 0.999981330072297 100 0.00052616487528212 1 1 0 0 +194 2 1 -0.0607523021833094 -0.13079265248526 0 -0.0041873655289447 -0.00508652530140424 0.999978296379619 100 0.000612044350873475 1 1 0 0 +195 2 1 -0.0717923506364473 -0.141618156523235 0 -0.00494835030884669 -0.00511872795311996 0.99997465590552 100 0.000715412818635741 1 1 0 0 +196 2 1 -0.069151302035487 -0.138465586916393 0 0.00511999075325057 0.00483541137152327 0.999975201938305 100 -0.000687528123080483 1 1 0 0 +197 2 1 -0.058523912748643 -0.129035320137364 0 0.00433260488091833 0.00486832767963155 0.999978763734785 100 -0.000589230105902061 1 1 0 0 +198 2 1 -0.047890900088146 -0.121178160523208 0 0.00354506650441356 0.00489575905078607 0.999981731856535 100 -0.000507059890082928 1 1 0 0 +199 2 1 -0.0372532747502148 -0.114893346639345 0 0.00275740334975018 0.00491770487711715 0.99998410632645 100 -0.000441156684928501 1 1 0 0 diff --git a/Tests/input/toroid.rml b/Intern/RayCore/tests/input/toroid.rml similarity index 100% rename from Tests/input/toroid.rml rename to Intern/RayCore/tests/input/toroid.rml diff --git a/Tests/input/toroid_swapped.csv b/Intern/RayCore/tests/input/toroid_swapped.csv similarity index 99% rename from Tests/input/toroid_swapped.csv rename to Intern/RayCore/tests/input/toroid_swapped.csv index d7dc780d2..8a03951b2 100644 --- a/Tests/input/toroid_swapped.csv +++ b/Intern/RayCore/tests/input/toroid_swapped.csv @@ -1,170 +1,170 @@ -sep= -ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 -14 2 1 -0.0577609925286904 -0.109326765090657 0 0.0051068778001812 0.00407730460910771 0.999978647465164 100 -0.000500972024724433 1 1 0 0 -15 2 1 -0.0488847118053233 -0.099788245895696 0 0.00432150890463304 0.00411016569554754 0.999982215391225 100 -0.00041776709667829 1 1 0 0 -16 2 1 -0.0400034310725039 -0.0918408709061325 0 0.00353598770522072 0.00413755104784627 0.999985188621449 100 -0.000348174019563885 1 1 0 0 -17 2 1 -0.0311180476951338 -0.0854838814252696 0 0.00275034189153588 0.0041594600585643 0.999987567178463 100 -0.000292332243134297 1 1 0 0 -18 2 1 -0.022229466075038 -0.0807166704695632 0 0.00196459915438246 0.00417589224178067 0.999989351080374 100 -0.00025035330963874 1 1 0 0 -19 2 1 -0.0133385960867904 -0.0775387827674141 0 0.00117878718550683 0.00418684723305163 0.999990540340766 100 -0.000222320880766347 1 1 0 0 -20 2 1 -0.00444635151407002 -0.0759499147982661 0 0.000392933677328631 0.00419232478942483 0.999991134968698 100 -0.000208290723094251 1 1 0 0 -21 2 1 0.00444635151407002 -0.0759499147982661 0 -0.000392933677328631 0.00419232478942483 0.999991134968698 100 -0.000208290723094251 1 1 0 0 -22 2 1 0.0133385960867904 -0.0775387827674141 0 -0.00117878718550683 0.00418684723305163 0.999990540340766 100 -0.000222320880766347 1 1 0 0 -23 2 1 0.0222294660750384 -0.0807166704695632 0 -0.00196459915438246 0.00417589224178067 0.999989351080374 100 -0.00025035330963874 1 1 0 0 -24 2 1 0.0311180476951338 -0.0854838814252696 0 -0.00275034189153588 0.0041594600585643 0.999987567178463 100 -0.000292332243134297 1 1 0 0 -25 2 1 0.0400034310725039 -0.0918408709061325 0 -0.00353598770522072 0.00413755104784627 0.999985188621449 100 -0.000348174019563885 1 1 0 0 -26 2 1 0.0488847118053233 -0.099788245895696 0 -0.00432150890463304 0.00411016569554754 0.999982215391225 100 -0.00041776709667829 1 1 0 0 -27 2 1 0.0577609925286904 -0.109326765090657 0 -0.0051068778001812 0.00407730460910771 0.999978647465164 100 -0.000500972024724433 1 1 0 0 -28 2 1 -0.0464610105416243 -0.0849975978430773 0 0.00509375016303548 0.00331795763403814 0.999981522262494 100 -0.000354500547246062 1 1 0 0 -29 2 1 -0.0393219420521547 -0.0753509896778355 0 0.00431040050436463 0.00335076355300085 0.999985096304492 100 -0.000286456749336139 1 1 0 0 -30 2 1 -0.0321784968116301 -0.0673135355299714 0 0.00352689874163562 0.00337810293159821 0.999988074631818 100 -0.000229497515078947 1 1 0 0 -31 2 1 -0.0250314588727911 -0.0608844794425591 0 0.00274327252810933 0.0033999751628325 0.999990457266832 100 -0.000183762528536136 1 1 0 0 -32 2 1 -0.0178816193207143 -0.0560632166163559 0 0.00195954951826029 0.00341637976112852 0.999992244227431 100 -0.00014936352067707 1 1 0 0 -33 2 1 -0.0107297747097803 -0.0528492934225175 0 0.0011757573675067 0.00342731636230745 0.999993435527037 100 -0.000126384297914228 1 1 0 0 -34 2 1 -0.0035767255009469 -0.0512424074334947 0 0.000391923731940797 0.00343278472359046 0.999994031174601 100 -0.000114880719479515 1 1 0 0 -35 2 1 0.0035767255009469 -0.0512424074334947 0 -0.000391923731940797 0.00343278472359046 0.999994031174601 100 -0.000114880719479515 1 1 0 0 -36 2 1 0.0107297747097803 -0.0528492934225175 0 -0.0011757573675067 0.00342731636230745 0.999993435527037 100 -0.000126384297914228 1 1 0 0 -37 2 1 0.0178816193207147 -0.0560632166163559 0 -0.00195954951826029 0.00341637976112852 0.999992244227431 100 -0.00014936352067707 1 1 0 0 -38 2 1 0.0250314588727911 -0.0608844794425591 0 -0.00274327252810933 0.0033999751628325 0.999990457266832 100 -0.000183762528536136 1 1 0 0 -39 2 1 0.0321784968116301 -0.0673135355299714 0 -0.00352689874163562 0.00337810293159821 0.999988074631818 100 -0.000229497515078947 1 1 0 0 -40 2 1 0.0393219420521538 -0.0753509896778355 0 -0.00431040050436464 0.00335076355300085 0.999985096304492 100 -0.000286456749336139 1 1 0 0 -41 2 1 0.0464610105416243 -0.0849975978430773 0 -0.00509375016303548 0.00331795763403814 0.999981522262494 100 -0.000354500547246062 1 1 0 0 -42 2 1 -0.0352516439989943 -0.0655011979605549 0 0.00508060774906991 0.0025573634790971 0.999983823527629 100 -0.000240966286810362 1 1 0 0 -43 2 1 -0.029835847083155 -0.0557466618369689 0 0.0042992796016371 0.00259011428476172 0.999987403672116 100 -0.000188152159239507 1 1 0 0 -44 2 1 -0.0244162965861974 -0.0476192627268763 0 0.0035177995494502 0.00261740773480795 0.999990387085336 100 -0.00014388388444786 1 1 0 0 -45 2 1 -0.0189936632645886 -0.0411182474018448 0 0.00273619520953059 0.0026392432226798 0.999992773789384 100 -0.000108301377736097 1 1 0 0 -46 2 1 -0.0135686249026816 -0.0362430132398104 0 0.0019544942001147 0.00265562026314864 0.999994563801944 100 -8.15165665244422e-05 1 1 0 0 -47 2 1 -0.00814186475074474 -0.0329931082469517 0 0.00117272414038377 0.00266653849229653 0.999995757136279 100 -6.36133914895254e-05 1 1 0 0 -48 2 1 -0.00271406996318441 -0.031368231086716 0 0.000390912650193908 0.00267199766752121 0.999996353801235 100 -5.46478172509524e-05 1 1 0 0 -49 2 1 0.00271406996318441 -0.031368231086716 0 -0.000390912650193908 0.00267199766752121 0.999996353801235 100 -5.46478172509524e-05 1 1 0 0 -50 2 1 0.00814186475074474 -0.0329931082469517 0 -0.00117272414038377 0.00266653849229653 0.999995757136279 100 -6.36133914895254e-05 1 1 0 0 -51 2 1 0.0135686249026818 -0.0362430132398104 0 -0.0019544942001147 0.00265562026314864 0.999994563801944 100 -8.15165665244422e-05 1 1 0 0 -52 2 1 0.0189936632645886 -0.0411182474018448 0 -0.00273619520953059 0.0026392432226798 0.999992773789384 100 -0.000108301377736097 1 1 0 0 -53 2 1 0.0244162965861974 -0.0476192627268763 0 -0.0035177995494502 0.00261740773480795 0.999990387085336 100 -0.00014388388444786 1 1 0 0 -54 2 1 0.0298358470831541 -0.0557466618369689 0 -0.0042992796016371 0.00259011428476172 0.999987403672116 100 -0.000188152159239507 1 1 0 0 -55 2 1 0.0352516439989943 -0.0655011979605549 0 -0.00508060774906991 0.0025573634790971 0.999983823527629 100 -0.000240966286810362 1 1 0 0 -56 2 1 -0.0241331842480994 -0.0508609450882622 0 0.00506745046530147 0.00179551514632004 0.999985548431147 100 -0.000153139810095126 1 1 0 0 -57 2 1 -0.0204266733882399 -0.0409986395723441 0 0.00428814611777176 0.00182821089285268 0.999989134664874 100 -0.000115624400450542 1 1 0 0 -58 2 1 -0.0167170320461403 -0.0327814276622309 0 0.00350869006429055 0.00185545845949439 0.999992123152946 100 -8.41046196455864e-05 1 1 0 0 -59 2 1 -0.0130048176946449 -0.0262085588385217 0 0.0027291098857308 0.00187725724011881 0.999994513917194 100 -5.87206258160222e-05 1 1 0 0 -60 2 1 -0.00929059483028616 -0.0212794326542181 0 0.00194943316418206 0.0018936067498484 0.999996306975088 100 -3.95845274852036e-05 1 1 0 0 -61 2 1 -0.00557493341214199 -0.0179935987412232 0 0.0011696874826798 0.00190450662502467 0.999997502339735 100 -2.6780420967043e-05 1 1 0 0 -62 2 1 -0.00185840730107478 -0.0163507568490893 0 0.000389900424935203 0.00190995662321969 0.999998100019873 100 -2.03643520535479e-05 1 1 0 0 -63 2 1 0.00185840730107478 -0.0163507568490893 0 -0.000389900424935203 0.00190995662321969 0.999998100019873 100 -2.03643520535479e-05 1 1 0 0 -64 2 1 0.00557493341214199 -0.0179935987412232 0 -0.0011696874826798 0.00190450662502467 0.999997502339735 100 -2.6780420967043e-05 1 1 0 0 -65 2 1 0.00929059483028616 -0.0212794326542181 0 -0.00194943316418206 0.0018936067498484 0.999996306975088 100 -3.95845274852036e-05 1 1 0 0 -66 2 1 0.0130048176946449 -0.0262085588385217 0 -0.0027291098857308 0.00187725724011881 0.999994513917194 100 -5.87206258160222e-05 1 1 0 0 -67 2 1 0.0167170320461403 -0.0327814276622309 0 -0.00350869006429055 0.00185545845949439 0.999992123152946 100 -8.41046196455864e-05 1 1 0 0 -68 2 1 0.0204266733882399 -0.0409986395723441 0 -0.00428814611777176 0.00182821089285268 0.999989134664874 100 -0.000115624400450542 1 1 0 0 -69 2 1 0.0241331842480994 -0.0508609450882622 0 -0.00506745046530147 0.00179551514632004 0.999985548431147 100 -0.000153139810095126 1 1 0 0 -70 2 1 -0.0131059260823143 -0.0411004881235817 0 0.00505427821850703 0.001032405606818 0.999986694116653 100 -8.37085160583229e-05 1 1 0 0 -71 2 1 -0.0110946703732457 -0.0311305693342601 0 0.00427699997388696 0.00106504634838955 0.999990286426573 100 -6.1561381357933e-05 1 1 0 0 -72 2 1 -0.00908090722701571 -0.0228236747346213 0 0.00349957022161663 0.00109224807676317 0.999993279978622 100 -4.28480609571125e-05 1 1 0 0 -73 2 1 -0.00706508084255075 -0.0161790565194964 0 0.00272201650651188 0.00111401018625559 0.999995674794368 100 -2.77089477549453e-05 1 1 0 0 -74 2 1 -0.00504764243817291 -0.0111961163957837 0 0.00194436637460643 0.00113033219232972 0.99999747089107 100 -1.62563454750853e-05 1 1 0 0 -75 2 1 -0.00302904869159848 -0.007874405623989 0 0.00116664737288117 0.00114121373159284 0.999998668281676 100 -8.574487083024e-06 1 1 0 0 -76 2 1 -0.00100976017996829 -0.00621362503288947 0 0.000388887048993471 0.00114665456178814 0.999999266974821 100 -4.71952182579116e-06 1 1 0 0 -77 2 1 0.00100976017996829 -0.00621362503288947 0 -0.000388887048993471 0.00114665456178814 0.999999266974821 100 -4.71952182579116e-06 1 1 0 0 -78 2 1 0.00302904869159848 -0.007874405623989 0 -0.00116664737288117 0.00114121373159284 0.999998668281676 100 -8.574487083024e-06 1 1 0 0 -79 2 1 0.00504764243817202 -0.0111961163957837 0 -0.00194436637460643 0.00113033219232972 0.99999747089107 100 -1.62563454750853e-05 1 1 0 0 -80 2 1 0.00706508084255075 -0.0161790565194964 0 -0.00272201650651188 0.00111401018625559 0.999995674794368 100 -2.77089477549453e-05 1 1 0 0 -81 2 1 0.00908090722701571 -0.0228236747346213 0 -0.00349957022161663 0.00109224807676317 0.999993279978622 100 -4.28480609571125e-05 1 1 0 0 -82 2 1 0.0110946703732457 -0.0311305693342601 0 -0.00427699997388696 0.00106504634838955 0.999990286426573 100 -6.1561381357933e-05 1 1 0 0 -83 2 1 0.0131059260823143 -0.0411004881235817 0 -0.00505427821850703 0.001032405606818 0.999986694116653 100 -8.37085160583229e-05 1 1 0 0 -84 2 1 -0.00217016776514001 -0.0362437476570783 0 0.00504109091522312 0.000268027800631038 0.999987257700558 100 -2.5275457232965e-05 1 1 0 0 -85 2 1 -0.00184009037994315 -0.0261663692328016 0 0.00426584109089738 0.000300613591395854 0.999990856073822 100 -1.85666882543956e-05 1 1 0 0 -86 2 1 -0.00150812856653193 -0.0177699200075249 0 0.00349043995672192 0.000327769526644123 0.99999385467914 100 -1.27182294136219e-05 1 1 0 0 -87 2 1 -0.00117461325611101 -0.0110536548548785 0 0.00271491502154621 0.000349495001111616 0.999996253537817 100 -7.87071860486321e-06 1 1 0 0 -88 2 1 -0.000839882395432756 -0.00601697764631376 0 0.0019392937954394 0.000365789530616917 0.999998052666901 100 -4.13665600262902e-06 1 1 0 0 -89 2 1 -0.000504279387385953 -0.00265944125151518 0 0.00116360378941877 0.000376652752020923 0.999999252079183 100 -1.60040940500039e-06 1 1 0 0 -90 2 1 -0.000168151532092375 -0.000980747580731411 0 0.000387872515178991 0.00038208442324511 0.999999851783192 100 -3.18223897011194e-07 1 1 0 0 -91 2 1 0.000168151532092375 -0.000980747580731411 0 -0.000387872515178991 0.00038208442324511 0.999999851783192 100 -3.18223897011194e-07 1 1 0 0 -92 2 1 0.000504279387385953 -0.00265944125151518 0 -0.00116360378941877 0.000376652752020923 0.999999252079183 100 -1.60040940500039e-06 1 1 0 0 -93 2 1 0.000839882395432312 -0.00601697764631376 0 -0.0019392937954394 0.000365789530616917 0.999998052666901 100 -4.13665600262902e-06 1 1 0 0 -94 2 1 0.00117461325611101 -0.0110536548548785 0 -0.00271491502154621 0.000349495001111616 0.999996253537817 100 -7.87071860486321e-06 1 1 0 0 -95 2 1 0.00150812856653193 -0.0177699200075249 0 -0.00349043995672192 0.000327769526644123 0.99999385467914 100 -1.27182294136219e-05 1 1 0 0 -96 2 1 0.00184009037994315 -0.0261663692328016 0 -0.00426584109089738 0.000300613591395854 0.999990856073822 100 -1.85666882543956e-05 1 1 0 0 -97 2 1 0.00217016776514001 -0.0362437476570783 0 -0.00504109091522312 0.000268027800631038 0.999987257700558 100 -2.5275457232965e-05 1 1 0 0 -98 2 1 0.00867378894596804 -0.0363149184143784 0 0.00502788846174509 -0.000497625363461651 0.99998723627185 100 2.96418310199442e-05 1 1 0 0 -99 2 1 0.00733681129338404 -0.0261302315219581 0 0.00425466938951398 -0.000465094469340788 0.999990840695814 100 2.08416215627949e-05 1 1 0 0 -100 2 1 0.00600109507887492 -0.0176443536542283 0 0.00348129920473298 -0.000437984282087994 0.999993844343862 100 1.37663648729358e-05 1 1 0 0 -101 2 1 0.00466642263560946 -0.010856542370069 0 0.00270780538037644 -0.000416295406534012 0.999996247237037 100 8.27518999813037e-06 1 1 0 0 -102 2 1 0.00333256928516201 -0.00576620368466968 0 0.00193421539063981 -0.000400028326516949 0.999998049392178 100 4.25540827109216e-06 1 1 0 0 -103 2 1 0.0019993048960083 -0.00237289207895847 0 0.00116055671066786 -0.000389183404914256 0.999999250821919 100 1.62250796620356e-06 1 1 0 0 -104 2 1 0.000666395441588807 -0.00067631053470929 0 0.000386856816283509 -0.000383760883633844 0.999999851534683 100 3.20140429721505e-07 1 1 0 0 -105 2 1 -0.000666395441588807 -0.00067631053470929 0 -0.000386856816283509 -0.000383760883633844 0.999999851534683 100 3.20140429721505e-07 1 1 0 0 -106 2 1 -0.0019993048960083 -0.00237289207895847 0 -0.00116055671066786 -0.000389183404914256 0.999999250821919 100 1.62250796620356e-06 1 1 0 0 -107 2 1 -0.00333256928516179 -0.00576620368466968 0 -0.00193421539063981 -0.000400028326516949 0.999998049392178 100 4.25540827109216e-06 1 1 0 0 -108 2 1 -0.00466642263560946 -0.010856542370069 0 -0.00270780538037644 -0.000416295406534012 0.999996247237037 100 8.27518999813037e-06 1 1 0 0 -109 2 1 -0.00600109507887492 -0.0176443536542283 0 -0.00348129920473298 -0.000437984282087994 0.999993844343862 100 1.37663648729358e-05 1 1 0 0 -110 2 1 -0.00733681129338404 -0.0261302315219581 0 -0.00425466938951398 -0.000465094469340788 0.999990840695814 100 2.08416215627949e-05 1 1 0 0 -111 2 1 -0.00867378894596804 -0.0363149184143784 0 -0.00502788846174509 -0.000497625363461651 0.99998723627185 100 2.96418310199442e-05 1 1 0 0 -112 2 1 0.0194256387751368 -0.0413384717459935 0 0.00501467076412682 -0.00126456100810057 0.999986626891872 100 8.86125428678497e-05 1 1 0 0 -113 2 1 0.0164357763715994 -0.0310466250516901 0 0.00424348479024316 -0.00123208495646474 0.999990237354093 100 6.42321780333077e-05 1 1 0 0 -114 2 1 0.0134465524171508 -0.0224714424491252 0 0.00347214790060917 -0.00120502047207527 0.999993246034501 100 4.41739042571498e-05 1 1 0 0 -115 2 1 0.0104578625092766 -0.0156121841737742 0 0.00270068753241512 -0.00118336815932535 0.999995652953877 100 2.82966021813991e-05 1 1 0 0 -116 2 1 0.0074695952377839 -0.010468258374051 0 0.00192913112407364 -0.00116712850171291 0.999997458128853 100 1.64873947596789e-05 1 1 0 0 -117 2 1 0.00448163374228727 -0.00703922113677691 0 0.00115750611494795 -0.00115630186185506 0.999998661571903 100 8.66162201873522e-06 1 1 0 0 -118 2 1 0.00149385726950968 -0.00532477650852115 0 0.000385839945080189 -0.00115088848149145 0.999999263291348 100 4.76284503747593e-06 1 1 0 0 -119 2 1 -0.00149385726950968 -0.00532477650852115 0 -0.000385839945080189 -0.00115088848149145 0.999999263291348 100 4.76284503747593e-06 1 1 0 0 -120 2 1 -0.00448163374228727 -0.00703922113677691 0 -0.00115750611494795 -0.00115630186185506 0.999998661571903 100 8.66162201873522e-06 1 1 0 0 -121 2 1 -0.00746959523778412 -0.010468258374051 0 -0.00192913112407364 -0.00116712850171291 0.999997458128853 100 1.64873947596789e-05 1 1 0 0 -122 2 1 -0.0104578625092766 -0.0156121841737742 0 -0.00270068753241512 -0.00118336815932535 0.999995652953877 100 2.82966021813991e-05 1 1 0 0 -123 2 1 -0.0134465524171508 -0.0224714424491252 0 -0.00347214790060917 -0.00120502047207527 0.999993246034501 100 4.41739042571498e-05 1 1 0 0 -124 2 1 -0.0164357763715994 -0.0310466250516901 0 -0.00424348479024316 -0.00123208495646474 0.999990237354093 100 6.42321780333077e-05 1 1 0 0 -125 2 1 -0.0194256387751368 -0.0413384717459935 0 -0.00501467076412682 -0.00126456100810057 0.999986626891872 100 8.86125428678497e-05 1 1 0 0 -126 2 1 0.0300850729035869 -0.0513391581335574 0 0.0050014377281801 -0.00203278628752127 0.999985426594088 100 0.000159293782189707 1 1 0 0 -127 2 1 0.025456543581817 -0.0409402977946283 0 0.00423228721338655 -0.00200036502421036 0.99998904308233 100 0.000119261545933114 1 1 0 0 -128 2 1 0.0208280297035968 -0.0322759322777586 0 0.00346298597914238 -0.00197334619754416 0.999992056784899 100 8.61604819419881e-05 1 1 0 0 -129 2 1 0.0161995401340107 -0.0253453244766038 0 0.00269356142694452 -0.00195173041148952 0.999994467722317 100 5.98492428025565e-05 1 1 0 0 -130 2 1 0.0115710767341208 -0.0201478846690006 0 0.00192404095951379 -0.00193551814919993 0.999996275911006 100 4.02147450131451e-05 1 1 0 0 -131 2 1 0.00694263591767941 -0.0166831705406367 0 0.00115445198052273 -0.00192470977303222 0.999997481363285 100 2.71721947910919e-05 1 1 0 0 -132 2 1 0.00231421020761291 -0.0149508872007285 0 0.000384821894323577 -0.00191930552455674 0.999998084087371 100 2.06650528298269e-05 1 1 0 0 -133 2 1 -0.00231421020761291 -0.0149508872007285 0 -0.000384821894323577 -0.00191930552455674 0.999998084087371 100 2.06650528298269e-05 1 1 0 0 -134 2 1 -0.00694263591767941 -0.0166831705406367 0 -0.00115445198052273 -0.00192470977303222 0.999997481363285 100 2.71721947910919e-05 1 1 0 0 -135 2 1 -0.0115710767341217 -0.0201478846690006 0 -0.00192404095951379 -0.00193551814919993 0.999996275911006 100 4.02147450131451e-05 1 1 0 0 -136 2 1 -0.0161995401340107 -0.0253453244766038 0 -0.00269356142694452 -0.00195173041148952 0.999994467722317 100 5.98492428025565e-05 1 1 0 0 -137 2 1 -0.0208280297035968 -0.0322759322777586 0 -0.00346298597914238 -0.00197334619754416 0.999992056784899 100 8.61604819419881e-05 1 1 0 0 -138 2 1 -0.025456543581817 -0.0409402977946283 0 -0.00423228721338655 -0.00200036502421036 0.99998904308233 100 0.000119261545933114 1 1 0 0 -139 2 1 -0.0300850729035869 -0.0513391581335574 0 -0.0050014377281801 -0.00203278628752127 0.999985426594088 100 0.000159293782189707 1 1 0 0 -140 2 1 0.040651778944798 -0.066342009733718 0 0.00498818925947425 -0.00280230838772086 0.999983632383856 100 0.000249431815177559 1 1 0 0 -141 2 1 0.034398848632418 -0.0558362793825009 0 0.00422107657904062 -0.00276994185857179 0.999987254886088 100 0.000193675412674565 1 1 0 0 -142 2 1 0.0281453107238199 -0.0470828506633487 0 0.00345381337495649 -0.00274296864449214 0.999990273600792 100 0.000147471321611192 1 1 0 0 -143 2 1 0.0218912873580748 -0.0400809891211313 0 0.00268642701311631 -0.00272138934901889 0.999992688548228 100 0.000110677948896409 1 1 0 0 -144 2 1 0.0156368936738314 -0.0348301071533212 0 0.00191894486063989 -0.00270520445496453 0.999994499744613 100 8.31820235589475e-05 1 1 0 0 -145 2 1 0.00938223936519944 -0.0313297640335843 0 0.0011513942855999 -0.00269441432443107 0.999995707202109 100 6.48986009537111e-05 1 1 0 0 -146 2 1 0.00312743023744211 -0.0295796659328351 0 0.00038380265674957 -0.00268901919881595 0.99999631092883 100 5.57710454813787e-05 1 1 0 0 -147 2 1 -0.00312743023744211 -0.0295796659328351 0 -0.00038380265674957 -0.00268901919881595 0.99999631092883 100 5.57710454813787e-05 1 1 0 0 -148 2 1 -0.00938223936519944 -0.0313297640335843 0 -0.0011513942855999 -0.00269441432443107 0.999995707202109 100 6.48986009537111e-05 1 1 0 0 -149 2 1 -0.0156368936738314 -0.0348301071533212 0 -0.00191894486063989 -0.00270520445496453 0.999994499744613 100 8.31820235589475e-05 1 1 0 0 -150 2 1 -0.0218912873580748 -0.0400809891211313 0 -0.00268642701311631 -0.00272138934901889 0.999992688548228 100 0.000110677948896409 1 1 0 0 -151 2 1 -0.0281453107238199 -0.0470828506633487 0 -0.00345381337495649 -0.00274296864449214 0.999990273600792 100 0.000147471321611192 1 1 0 0 -152 2 1 -0.0343988486324189 -0.0558362793825009 0 -0.00422107657904062 -0.00276994185857179 0.999987254886088 100 0.000193675412674565 1 1 0 0 -153 2 1 -0.040651778944798 -0.066342009733718 0 -0.00498818925947425 -0.00280230838772086 0.999983632383856 100 0.000249431815177559 1 1 0 0 -154 2 1 0.0511254409195194 -0.0863723429355536 0 0.00497492526333552 -0.00357313452664035 0.999981241238194 100 0.000366863300996556 1 1 0 0 -155 2 1 0.0432624241918846 -0.0757598836704512 0 0.00420985280709623 -0.00354082267748002 0.999984869742592 100 0.000295309865805393 1 1 0 0 -156 2 1 0.0353981767762712 -0.0669175093479173 0 0.00344463002250721 -0.00351389503084396 0.999987893459576 100 0.000235942024914948 1 1 0 0 -157 2 1 0.0275329340953694 -0.0598444881556661 0 0.0026792842399513 -0.00349235218983721 0.999990312409147 100 0.000188617942626479 1 1 0 0 -158 2 1 0.0196669245749386 -0.0545402346039414 0 0.00191384279103807 -0.00347619463693144 0.999992126607314 100 0.000153224157998011 1 1 0 0 -159 2 1 0.0118003711988937 -0.0510043095473915 0 0.00114833300833111 -0.00346542273397279 0.999993336066085 100 0.000129675573816712 1 1 0 0 -160 2 1 0.00393349306421809 -0.049236420212424 0 0.000382782225075369 -0.00346003672218975 0.999993940793467 100 0.000117915461260054 1 1 0 0 -161 2 1 -0.00393349306421809 -0.049236420212424 0 -0.000382782225075369 -0.00346003672218975 0.999993940793467 100 0.000117915461260054 1 1 0 0 -162 2 1 -0.0118003711988937 -0.0510043095473915 0 -0.00114833300833111 -0.00346542273397279 0.999993336066085 100 0.000129675573816712 1 1 0 0 -163 2 1 -0.0196669245749386 -0.0545402346039414 0 -0.00191384279103807 -0.00347619463693144 0.999992126607314 100 0.000153224157998011 1 1 0 0 -164 2 1 -0.0275329340953694 -0.0598444881556661 0 -0.0026792842399513 -0.00349235218983721 0.999990312409147 100 0.000188617942626479 1 1 0 0 -165 2 1 -0.0353981767762712 -0.0669175093479173 0 -0.00344463002250721 -0.00351389503084396 0.999987893459576 100 0.000235942024914948 1 1 0 0 -166 2 1 -0.0432624241918846 -0.0757598836704512 0 -0.00420985280709623 -0.00354082267748002 0.999984869742592 100 0.000295309865805393 1 1 0 0 -167 2 1 -0.0511254409195194 -0.0863723429355536 0 -0.00497492526333552 -0.00357313452664035 0.999981241238194 100 0.000366863300996556 1 1 0 0 -168 2 1 0.0615057392303777 -0.111455760971078 0 0.00496164564484674 -0.0043452719543263 0.99997825010554 100 0.000519516556778399 1 1 0 0 -169 2 1 0.052046999867434 -0.100736711330969 0 0.00419861581723811 -0.00431301473098242 0.999981884600491 100 0.000432092632308922 1 1 0 0 -170 2 1 0.0425864066548391 -0.0918055068772468 0 0.00343543585608166 -0.00428613260663979 0.999984913310074 100 0.0003594998306653 1 1 0 0 -171 2 1 0.0331243083118329 -0.0846614184265215 0 0.00267213305633923 -0.00426462618397774 0.999987336254035 100 0.000301596070130472 1 1 0 0 -172 2 1 0.0236610465640854 -0.0793038625887004 0 0.00190873471420086 -0.0042484959451301 0.999989153448174 100 0.000258267697063275 1 1 0 0 -173 2 1 0.0141969576979959 -0.0757324017991809 0 0.00114526812681179 -0.00423774225168677 0.999990364904345 100 0.000229429469527531 1 1 0 0 -174 2 1 0.00473237411488958 -0.0739467443369959 0 0.000381760591999451 -0.00423236534470023 0.999990970630455 100 0.000215024561839527 1 1 0 0 -175 2 1 -0.00473237411488958 -0.0739467443369959 0 -0.000381760591999451 -0.00423236534470023 0.999990970630455 100 0.000215024561839527 1 1 0 0 -176 2 1 -0.0141969576979959 -0.0757324017991809 0 -0.00114526812681179 -0.00423774225168677 0.999990364904345 100 0.000229429469527531 1 1 0 0 -177 2 1 -0.0236610465640854 -0.0793038625887004 0 -0.00190873471420086 -0.0042484959451301 0.999989153448174 100 0.000258267697063275 1 1 0 0 -178 2 1 -0.0331243083118329 -0.0846614184265215 0 -0.00267213305633923 -0.00426462618397774 0.999987336254035 100 0.000301596070130472 1 1 0 0 -179 2 1 -0.0425864066548391 -0.0918055068772468 0 -0.00343543585608166 -0.00428613260663979 0.999984913310074 100 0.0003594998306653 1 1 0 0 -180 2 1 -0.0520469998674349 -0.100736711330969 0 -0.00419861581723812 -0.00431301473098242 0.999981884600491 100 0.000432092632308922 1 1 0 0 -181 2 1 -0.0615057392303777 -0.111455760971078 0 -0.00496164564484674 -0.0043452719543263 0.99997825010554 100 0.000519516556778399 1 1 0 0 +sep= +ImagePlane_RN ImagePlane_RS ImagePlane_RO ImagePlane_OX ImagePlane_OY ImagePlane_OZ ImagePlane_DX ImagePlane_DY ImagePlane_DZ ImagePlane_EN ImagePlane_PL ImagePlane_S0 ImagePlane_S1 ImagePlane_S2 ImagePlane_S3 +14 2 1 -0.0577609925286904 -0.109326765090657 0 0.0051068778001812 0.00407730460910771 0.999978647465164 100 -0.000500972024724433 1 1 0 0 +15 2 1 -0.0488847118053233 -0.099788245895696 0 0.00432150890463304 0.00411016569554754 0.999982215391225 100 -0.00041776709667829 1 1 0 0 +16 2 1 -0.0400034310725039 -0.0918408709061325 0 0.00353598770522072 0.00413755104784627 0.999985188621449 100 -0.000348174019563885 1 1 0 0 +17 2 1 -0.0311180476951338 -0.0854838814252696 0 0.00275034189153588 0.0041594600585643 0.999987567178463 100 -0.000292332243134297 1 1 0 0 +18 2 1 -0.022229466075038 -0.0807166704695632 0 0.00196459915438246 0.00417589224178067 0.999989351080374 100 -0.00025035330963874 1 1 0 0 +19 2 1 -0.0133385960867904 -0.0775387827674141 0 0.00117878718550683 0.00418684723305163 0.999990540340766 100 -0.000222320880766347 1 1 0 0 +20 2 1 -0.00444635151407002 -0.0759499147982661 0 0.000392933677328631 0.00419232478942483 0.999991134968698 100 -0.000208290723094251 1 1 0 0 +21 2 1 0.00444635151407002 -0.0759499147982661 0 -0.000392933677328631 0.00419232478942483 0.999991134968698 100 -0.000208290723094251 1 1 0 0 +22 2 1 0.0133385960867904 -0.0775387827674141 0 -0.00117878718550683 0.00418684723305163 0.999990540340766 100 -0.000222320880766347 1 1 0 0 +23 2 1 0.0222294660750384 -0.0807166704695632 0 -0.00196459915438246 0.00417589224178067 0.999989351080374 100 -0.00025035330963874 1 1 0 0 +24 2 1 0.0311180476951338 -0.0854838814252696 0 -0.00275034189153588 0.0041594600585643 0.999987567178463 100 -0.000292332243134297 1 1 0 0 +25 2 1 0.0400034310725039 -0.0918408709061325 0 -0.00353598770522072 0.00413755104784627 0.999985188621449 100 -0.000348174019563885 1 1 0 0 +26 2 1 0.0488847118053233 -0.099788245895696 0 -0.00432150890463304 0.00411016569554754 0.999982215391225 100 -0.00041776709667829 1 1 0 0 +27 2 1 0.0577609925286904 -0.109326765090657 0 -0.0051068778001812 0.00407730460910771 0.999978647465164 100 -0.000500972024724433 1 1 0 0 +28 2 1 -0.0464610105416243 -0.0849975978430773 0 0.00509375016303548 0.00331795763403814 0.999981522262494 100 -0.000354500547246062 1 1 0 0 +29 2 1 -0.0393219420521547 -0.0753509896778355 0 0.00431040050436463 0.00335076355300085 0.999985096304492 100 -0.000286456749336139 1 1 0 0 +30 2 1 -0.0321784968116301 -0.0673135355299714 0 0.00352689874163562 0.00337810293159821 0.999988074631818 100 -0.000229497515078947 1 1 0 0 +31 2 1 -0.0250314588727911 -0.0608844794425591 0 0.00274327252810933 0.0033999751628325 0.999990457266832 100 -0.000183762528536136 1 1 0 0 +32 2 1 -0.0178816193207143 -0.0560632166163559 0 0.00195954951826029 0.00341637976112852 0.999992244227431 100 -0.00014936352067707 1 1 0 0 +33 2 1 -0.0107297747097803 -0.0528492934225175 0 0.0011757573675067 0.00342731636230745 0.999993435527037 100 -0.000126384297914228 1 1 0 0 +34 2 1 -0.0035767255009469 -0.0512424074334947 0 0.000391923731940797 0.00343278472359046 0.999994031174601 100 -0.000114880719479515 1 1 0 0 +35 2 1 0.0035767255009469 -0.0512424074334947 0 -0.000391923731940797 0.00343278472359046 0.999994031174601 100 -0.000114880719479515 1 1 0 0 +36 2 1 0.0107297747097803 -0.0528492934225175 0 -0.0011757573675067 0.00342731636230745 0.999993435527037 100 -0.000126384297914228 1 1 0 0 +37 2 1 0.0178816193207147 -0.0560632166163559 0 -0.00195954951826029 0.00341637976112852 0.999992244227431 100 -0.00014936352067707 1 1 0 0 +38 2 1 0.0250314588727911 -0.0608844794425591 0 -0.00274327252810933 0.0033999751628325 0.999990457266832 100 -0.000183762528536136 1 1 0 0 +39 2 1 0.0321784968116301 -0.0673135355299714 0 -0.00352689874163562 0.00337810293159821 0.999988074631818 100 -0.000229497515078947 1 1 0 0 +40 2 1 0.0393219420521538 -0.0753509896778355 0 -0.00431040050436464 0.00335076355300085 0.999985096304492 100 -0.000286456749336139 1 1 0 0 +41 2 1 0.0464610105416243 -0.0849975978430773 0 -0.00509375016303548 0.00331795763403814 0.999981522262494 100 -0.000354500547246062 1 1 0 0 +42 2 1 -0.0352516439989943 -0.0655011979605549 0 0.00508060774906991 0.0025573634790971 0.999983823527629 100 -0.000240966286810362 1 1 0 0 +43 2 1 -0.029835847083155 -0.0557466618369689 0 0.0042992796016371 0.00259011428476172 0.999987403672116 100 -0.000188152159239507 1 1 0 0 +44 2 1 -0.0244162965861974 -0.0476192627268763 0 0.0035177995494502 0.00261740773480795 0.999990387085336 100 -0.00014388388444786 1 1 0 0 +45 2 1 -0.0189936632645886 -0.0411182474018448 0 0.00273619520953059 0.0026392432226798 0.999992773789384 100 -0.000108301377736097 1 1 0 0 +46 2 1 -0.0135686249026816 -0.0362430132398104 0 0.0019544942001147 0.00265562026314864 0.999994563801944 100 -8.15165665244422e-05 1 1 0 0 +47 2 1 -0.00814186475074474 -0.0329931082469517 0 0.00117272414038377 0.00266653849229653 0.999995757136279 100 -6.36133914895254e-05 1 1 0 0 +48 2 1 -0.00271406996318441 -0.031368231086716 0 0.000390912650193908 0.00267199766752121 0.999996353801235 100 -5.46478172509524e-05 1 1 0 0 +49 2 1 0.00271406996318441 -0.031368231086716 0 -0.000390912650193908 0.00267199766752121 0.999996353801235 100 -5.46478172509524e-05 1 1 0 0 +50 2 1 0.00814186475074474 -0.0329931082469517 0 -0.00117272414038377 0.00266653849229653 0.999995757136279 100 -6.36133914895254e-05 1 1 0 0 +51 2 1 0.0135686249026818 -0.0362430132398104 0 -0.0019544942001147 0.00265562026314864 0.999994563801944 100 -8.15165665244422e-05 1 1 0 0 +52 2 1 0.0189936632645886 -0.0411182474018448 0 -0.00273619520953059 0.0026392432226798 0.999992773789384 100 -0.000108301377736097 1 1 0 0 +53 2 1 0.0244162965861974 -0.0476192627268763 0 -0.0035177995494502 0.00261740773480795 0.999990387085336 100 -0.00014388388444786 1 1 0 0 +54 2 1 0.0298358470831541 -0.0557466618369689 0 -0.0042992796016371 0.00259011428476172 0.999987403672116 100 -0.000188152159239507 1 1 0 0 +55 2 1 0.0352516439989943 -0.0655011979605549 0 -0.00508060774906991 0.0025573634790971 0.999983823527629 100 -0.000240966286810362 1 1 0 0 +56 2 1 -0.0241331842480994 -0.0508609450882622 0 0.00506745046530147 0.00179551514632004 0.999985548431147 100 -0.000153139810095126 1 1 0 0 +57 2 1 -0.0204266733882399 -0.0409986395723441 0 0.00428814611777176 0.00182821089285268 0.999989134664874 100 -0.000115624400450542 1 1 0 0 +58 2 1 -0.0167170320461403 -0.0327814276622309 0 0.00350869006429055 0.00185545845949439 0.999992123152946 100 -8.41046196455864e-05 1 1 0 0 +59 2 1 -0.0130048176946449 -0.0262085588385217 0 0.0027291098857308 0.00187725724011881 0.999994513917194 100 -5.87206258160222e-05 1 1 0 0 +60 2 1 -0.00929059483028616 -0.0212794326542181 0 0.00194943316418206 0.0018936067498484 0.999996306975088 100 -3.95845274852036e-05 1 1 0 0 +61 2 1 -0.00557493341214199 -0.0179935987412232 0 0.0011696874826798 0.00190450662502467 0.999997502339735 100 -2.6780420967043e-05 1 1 0 0 +62 2 1 -0.00185840730107478 -0.0163507568490893 0 0.000389900424935203 0.00190995662321969 0.999998100019873 100 -2.03643520535479e-05 1 1 0 0 +63 2 1 0.00185840730107478 -0.0163507568490893 0 -0.000389900424935203 0.00190995662321969 0.999998100019873 100 -2.03643520535479e-05 1 1 0 0 +64 2 1 0.00557493341214199 -0.0179935987412232 0 -0.0011696874826798 0.00190450662502467 0.999997502339735 100 -2.6780420967043e-05 1 1 0 0 +65 2 1 0.00929059483028616 -0.0212794326542181 0 -0.00194943316418206 0.0018936067498484 0.999996306975088 100 -3.95845274852036e-05 1 1 0 0 +66 2 1 0.0130048176946449 -0.0262085588385217 0 -0.0027291098857308 0.00187725724011881 0.999994513917194 100 -5.87206258160222e-05 1 1 0 0 +67 2 1 0.0167170320461403 -0.0327814276622309 0 -0.00350869006429055 0.00185545845949439 0.999992123152946 100 -8.41046196455864e-05 1 1 0 0 +68 2 1 0.0204266733882399 -0.0409986395723441 0 -0.00428814611777176 0.00182821089285268 0.999989134664874 100 -0.000115624400450542 1 1 0 0 +69 2 1 0.0241331842480994 -0.0508609450882622 0 -0.00506745046530147 0.00179551514632004 0.999985548431147 100 -0.000153139810095126 1 1 0 0 +70 2 1 -0.0131059260823143 -0.0411004881235817 0 0.00505427821850703 0.001032405606818 0.999986694116653 100 -8.37085160583229e-05 1 1 0 0 +71 2 1 -0.0110946703732457 -0.0311305693342601 0 0.00427699997388696 0.00106504634838955 0.999990286426573 100 -6.1561381357933e-05 1 1 0 0 +72 2 1 -0.00908090722701571 -0.0228236747346213 0 0.00349957022161663 0.00109224807676317 0.999993279978622 100 -4.28480609571125e-05 1 1 0 0 +73 2 1 -0.00706508084255075 -0.0161790565194964 0 0.00272201650651188 0.00111401018625559 0.999995674794368 100 -2.77089477549453e-05 1 1 0 0 +74 2 1 -0.00504764243817291 -0.0111961163957837 0 0.00194436637460643 0.00113033219232972 0.99999747089107 100 -1.62563454750853e-05 1 1 0 0 +75 2 1 -0.00302904869159848 -0.007874405623989 0 0.00116664737288117 0.00114121373159284 0.999998668281676 100 -8.574487083024e-06 1 1 0 0 +76 2 1 -0.00100976017996829 -0.00621362503288947 0 0.000388887048993471 0.00114665456178814 0.999999266974821 100 -4.71952182579116e-06 1 1 0 0 +77 2 1 0.00100976017996829 -0.00621362503288947 0 -0.000388887048993471 0.00114665456178814 0.999999266974821 100 -4.71952182579116e-06 1 1 0 0 +78 2 1 0.00302904869159848 -0.007874405623989 0 -0.00116664737288117 0.00114121373159284 0.999998668281676 100 -8.574487083024e-06 1 1 0 0 +79 2 1 0.00504764243817202 -0.0111961163957837 0 -0.00194436637460643 0.00113033219232972 0.99999747089107 100 -1.62563454750853e-05 1 1 0 0 +80 2 1 0.00706508084255075 -0.0161790565194964 0 -0.00272201650651188 0.00111401018625559 0.999995674794368 100 -2.77089477549453e-05 1 1 0 0 +81 2 1 0.00908090722701571 -0.0228236747346213 0 -0.00349957022161663 0.00109224807676317 0.999993279978622 100 -4.28480609571125e-05 1 1 0 0 +82 2 1 0.0110946703732457 -0.0311305693342601 0 -0.00427699997388696 0.00106504634838955 0.999990286426573 100 -6.1561381357933e-05 1 1 0 0 +83 2 1 0.0131059260823143 -0.0411004881235817 0 -0.00505427821850703 0.001032405606818 0.999986694116653 100 -8.37085160583229e-05 1 1 0 0 +84 2 1 -0.00217016776514001 -0.0362437476570783 0 0.00504109091522312 0.000268027800631038 0.999987257700558 100 -2.5275457232965e-05 1 1 0 0 +85 2 1 -0.00184009037994315 -0.0261663692328016 0 0.00426584109089738 0.000300613591395854 0.999990856073822 100 -1.85666882543956e-05 1 1 0 0 +86 2 1 -0.00150812856653193 -0.0177699200075249 0 0.00349043995672192 0.000327769526644123 0.99999385467914 100 -1.27182294136219e-05 1 1 0 0 +87 2 1 -0.00117461325611101 -0.0110536548548785 0 0.00271491502154621 0.000349495001111616 0.999996253537817 100 -7.87071860486321e-06 1 1 0 0 +88 2 1 -0.000839882395432756 -0.00601697764631376 0 0.0019392937954394 0.000365789530616917 0.999998052666901 100 -4.13665600262902e-06 1 1 0 0 +89 2 1 -0.000504279387385953 -0.00265944125151518 0 0.00116360378941877 0.000376652752020923 0.999999252079183 100 -1.60040940500039e-06 1 1 0 0 +90 2 1 -0.000168151532092375 -0.000980747580731411 0 0.000387872515178991 0.00038208442324511 0.999999851783192 100 -3.18223897011194e-07 1 1 0 0 +91 2 1 0.000168151532092375 -0.000980747580731411 0 -0.000387872515178991 0.00038208442324511 0.999999851783192 100 -3.18223897011194e-07 1 1 0 0 +92 2 1 0.000504279387385953 -0.00265944125151518 0 -0.00116360378941877 0.000376652752020923 0.999999252079183 100 -1.60040940500039e-06 1 1 0 0 +93 2 1 0.000839882395432312 -0.00601697764631376 0 -0.0019392937954394 0.000365789530616917 0.999998052666901 100 -4.13665600262902e-06 1 1 0 0 +94 2 1 0.00117461325611101 -0.0110536548548785 0 -0.00271491502154621 0.000349495001111616 0.999996253537817 100 -7.87071860486321e-06 1 1 0 0 +95 2 1 0.00150812856653193 -0.0177699200075249 0 -0.00349043995672192 0.000327769526644123 0.99999385467914 100 -1.27182294136219e-05 1 1 0 0 +96 2 1 0.00184009037994315 -0.0261663692328016 0 -0.00426584109089738 0.000300613591395854 0.999990856073822 100 -1.85666882543956e-05 1 1 0 0 +97 2 1 0.00217016776514001 -0.0362437476570783 0 -0.00504109091522312 0.000268027800631038 0.999987257700558 100 -2.5275457232965e-05 1 1 0 0 +98 2 1 0.00867378894596804 -0.0363149184143784 0 0.00502788846174509 -0.000497625363461651 0.99998723627185 100 2.96418310199442e-05 1 1 0 0 +99 2 1 0.00733681129338404 -0.0261302315219581 0 0.00425466938951398 -0.000465094469340788 0.999990840695814 100 2.08416215627949e-05 1 1 0 0 +100 2 1 0.00600109507887492 -0.0176443536542283 0 0.00348129920473298 -0.000437984282087994 0.999993844343862 100 1.37663648729358e-05 1 1 0 0 +101 2 1 0.00466642263560946 -0.010856542370069 0 0.00270780538037644 -0.000416295406534012 0.999996247237037 100 8.27518999813037e-06 1 1 0 0 +102 2 1 0.00333256928516201 -0.00576620368466968 0 0.00193421539063981 -0.000400028326516949 0.999998049392178 100 4.25540827109216e-06 1 1 0 0 +103 2 1 0.0019993048960083 -0.00237289207895847 0 0.00116055671066786 -0.000389183404914256 0.999999250821919 100 1.62250796620356e-06 1 1 0 0 +104 2 1 0.000666395441588807 -0.00067631053470929 0 0.000386856816283509 -0.000383760883633844 0.999999851534683 100 3.20140429721505e-07 1 1 0 0 +105 2 1 -0.000666395441588807 -0.00067631053470929 0 -0.000386856816283509 -0.000383760883633844 0.999999851534683 100 3.20140429721505e-07 1 1 0 0 +106 2 1 -0.0019993048960083 -0.00237289207895847 0 -0.00116055671066786 -0.000389183404914256 0.999999250821919 100 1.62250796620356e-06 1 1 0 0 +107 2 1 -0.00333256928516179 -0.00576620368466968 0 -0.00193421539063981 -0.000400028326516949 0.999998049392178 100 4.25540827109216e-06 1 1 0 0 +108 2 1 -0.00466642263560946 -0.010856542370069 0 -0.00270780538037644 -0.000416295406534012 0.999996247237037 100 8.27518999813037e-06 1 1 0 0 +109 2 1 -0.00600109507887492 -0.0176443536542283 0 -0.00348129920473298 -0.000437984282087994 0.999993844343862 100 1.37663648729358e-05 1 1 0 0 +110 2 1 -0.00733681129338404 -0.0261302315219581 0 -0.00425466938951398 -0.000465094469340788 0.999990840695814 100 2.08416215627949e-05 1 1 0 0 +111 2 1 -0.00867378894596804 -0.0363149184143784 0 -0.00502788846174509 -0.000497625363461651 0.99998723627185 100 2.96418310199442e-05 1 1 0 0 +112 2 1 0.0194256387751368 -0.0413384717459935 0 0.00501467076412682 -0.00126456100810057 0.999986626891872 100 8.86125428678497e-05 1 1 0 0 +113 2 1 0.0164357763715994 -0.0310466250516901 0 0.00424348479024316 -0.00123208495646474 0.999990237354093 100 6.42321780333077e-05 1 1 0 0 +114 2 1 0.0134465524171508 -0.0224714424491252 0 0.00347214790060917 -0.00120502047207527 0.999993246034501 100 4.41739042571498e-05 1 1 0 0 +115 2 1 0.0104578625092766 -0.0156121841737742 0 0.00270068753241512 -0.00118336815932535 0.999995652953877 100 2.82966021813991e-05 1 1 0 0 +116 2 1 0.0074695952377839 -0.010468258374051 0 0.00192913112407364 -0.00116712850171291 0.999997458128853 100 1.64873947596789e-05 1 1 0 0 +117 2 1 0.00448163374228727 -0.00703922113677691 0 0.00115750611494795 -0.00115630186185506 0.999998661571903 100 8.66162201873522e-06 1 1 0 0 +118 2 1 0.00149385726950968 -0.00532477650852115 0 0.000385839945080189 -0.00115088848149145 0.999999263291348 100 4.76284503747593e-06 1 1 0 0 +119 2 1 -0.00149385726950968 -0.00532477650852115 0 -0.000385839945080189 -0.00115088848149145 0.999999263291348 100 4.76284503747593e-06 1 1 0 0 +120 2 1 -0.00448163374228727 -0.00703922113677691 0 -0.00115750611494795 -0.00115630186185506 0.999998661571903 100 8.66162201873522e-06 1 1 0 0 +121 2 1 -0.00746959523778412 -0.010468258374051 0 -0.00192913112407364 -0.00116712850171291 0.999997458128853 100 1.64873947596789e-05 1 1 0 0 +122 2 1 -0.0104578625092766 -0.0156121841737742 0 -0.00270068753241512 -0.00118336815932535 0.999995652953877 100 2.82966021813991e-05 1 1 0 0 +123 2 1 -0.0134465524171508 -0.0224714424491252 0 -0.00347214790060917 -0.00120502047207527 0.999993246034501 100 4.41739042571498e-05 1 1 0 0 +124 2 1 -0.0164357763715994 -0.0310466250516901 0 -0.00424348479024316 -0.00123208495646474 0.999990237354093 100 6.42321780333077e-05 1 1 0 0 +125 2 1 -0.0194256387751368 -0.0413384717459935 0 -0.00501467076412682 -0.00126456100810057 0.999986626891872 100 8.86125428678497e-05 1 1 0 0 +126 2 1 0.0300850729035869 -0.0513391581335574 0 0.0050014377281801 -0.00203278628752127 0.999985426594088 100 0.000159293782189707 1 1 0 0 +127 2 1 0.025456543581817 -0.0409402977946283 0 0.00423228721338655 -0.00200036502421036 0.99998904308233 100 0.000119261545933114 1 1 0 0 +128 2 1 0.0208280297035968 -0.0322759322777586 0 0.00346298597914238 -0.00197334619754416 0.999992056784899 100 8.61604819419881e-05 1 1 0 0 +129 2 1 0.0161995401340107 -0.0253453244766038 0 0.00269356142694452 -0.00195173041148952 0.999994467722317 100 5.98492428025565e-05 1 1 0 0 +130 2 1 0.0115710767341208 -0.0201478846690006 0 0.00192404095951379 -0.00193551814919993 0.999996275911006 100 4.02147450131451e-05 1 1 0 0 +131 2 1 0.00694263591767941 -0.0166831705406367 0 0.00115445198052273 -0.00192470977303222 0.999997481363285 100 2.71721947910919e-05 1 1 0 0 +132 2 1 0.00231421020761291 -0.0149508872007285 0 0.000384821894323577 -0.00191930552455674 0.999998084087371 100 2.06650528298269e-05 1 1 0 0 +133 2 1 -0.00231421020761291 -0.0149508872007285 0 -0.000384821894323577 -0.00191930552455674 0.999998084087371 100 2.06650528298269e-05 1 1 0 0 +134 2 1 -0.00694263591767941 -0.0166831705406367 0 -0.00115445198052273 -0.00192470977303222 0.999997481363285 100 2.71721947910919e-05 1 1 0 0 +135 2 1 -0.0115710767341217 -0.0201478846690006 0 -0.00192404095951379 -0.00193551814919993 0.999996275911006 100 4.02147450131451e-05 1 1 0 0 +136 2 1 -0.0161995401340107 -0.0253453244766038 0 -0.00269356142694452 -0.00195173041148952 0.999994467722317 100 5.98492428025565e-05 1 1 0 0 +137 2 1 -0.0208280297035968 -0.0322759322777586 0 -0.00346298597914238 -0.00197334619754416 0.999992056784899 100 8.61604819419881e-05 1 1 0 0 +138 2 1 -0.025456543581817 -0.0409402977946283 0 -0.00423228721338655 -0.00200036502421036 0.99998904308233 100 0.000119261545933114 1 1 0 0 +139 2 1 -0.0300850729035869 -0.0513391581335574 0 -0.0050014377281801 -0.00203278628752127 0.999985426594088 100 0.000159293782189707 1 1 0 0 +140 2 1 0.040651778944798 -0.066342009733718 0 0.00498818925947425 -0.00280230838772086 0.999983632383856 100 0.000249431815177559 1 1 0 0 +141 2 1 0.034398848632418 -0.0558362793825009 0 0.00422107657904062 -0.00276994185857179 0.999987254886088 100 0.000193675412674565 1 1 0 0 +142 2 1 0.0281453107238199 -0.0470828506633487 0 0.00345381337495649 -0.00274296864449214 0.999990273600792 100 0.000147471321611192 1 1 0 0 +143 2 1 0.0218912873580748 -0.0400809891211313 0 0.00268642701311631 -0.00272138934901889 0.999992688548228 100 0.000110677948896409 1 1 0 0 +144 2 1 0.0156368936738314 -0.0348301071533212 0 0.00191894486063989 -0.00270520445496453 0.999994499744613 100 8.31820235589475e-05 1 1 0 0 +145 2 1 0.00938223936519944 -0.0313297640335843 0 0.0011513942855999 -0.00269441432443107 0.999995707202109 100 6.48986009537111e-05 1 1 0 0 +146 2 1 0.00312743023744211 -0.0295796659328351 0 0.00038380265674957 -0.00268901919881595 0.99999631092883 100 5.57710454813787e-05 1 1 0 0 +147 2 1 -0.00312743023744211 -0.0295796659328351 0 -0.00038380265674957 -0.00268901919881595 0.99999631092883 100 5.57710454813787e-05 1 1 0 0 +148 2 1 -0.00938223936519944 -0.0313297640335843 0 -0.0011513942855999 -0.00269441432443107 0.999995707202109 100 6.48986009537111e-05 1 1 0 0 +149 2 1 -0.0156368936738314 -0.0348301071533212 0 -0.00191894486063989 -0.00270520445496453 0.999994499744613 100 8.31820235589475e-05 1 1 0 0 +150 2 1 -0.0218912873580748 -0.0400809891211313 0 -0.00268642701311631 -0.00272138934901889 0.999992688548228 100 0.000110677948896409 1 1 0 0 +151 2 1 -0.0281453107238199 -0.0470828506633487 0 -0.00345381337495649 -0.00274296864449214 0.999990273600792 100 0.000147471321611192 1 1 0 0 +152 2 1 -0.0343988486324189 -0.0558362793825009 0 -0.00422107657904062 -0.00276994185857179 0.999987254886088 100 0.000193675412674565 1 1 0 0 +153 2 1 -0.040651778944798 -0.066342009733718 0 -0.00498818925947425 -0.00280230838772086 0.999983632383856 100 0.000249431815177559 1 1 0 0 +154 2 1 0.0511254409195194 -0.0863723429355536 0 0.00497492526333552 -0.00357313452664035 0.999981241238194 100 0.000366863300996556 1 1 0 0 +155 2 1 0.0432624241918846 -0.0757598836704512 0 0.00420985280709623 -0.00354082267748002 0.999984869742592 100 0.000295309865805393 1 1 0 0 +156 2 1 0.0353981767762712 -0.0669175093479173 0 0.00344463002250721 -0.00351389503084396 0.999987893459576 100 0.000235942024914948 1 1 0 0 +157 2 1 0.0275329340953694 -0.0598444881556661 0 0.0026792842399513 -0.00349235218983721 0.999990312409147 100 0.000188617942626479 1 1 0 0 +158 2 1 0.0196669245749386 -0.0545402346039414 0 0.00191384279103807 -0.00347619463693144 0.999992126607314 100 0.000153224157998011 1 1 0 0 +159 2 1 0.0118003711988937 -0.0510043095473915 0 0.00114833300833111 -0.00346542273397279 0.999993336066085 100 0.000129675573816712 1 1 0 0 +160 2 1 0.00393349306421809 -0.049236420212424 0 0.000382782225075369 -0.00346003672218975 0.999993940793467 100 0.000117915461260054 1 1 0 0 +161 2 1 -0.00393349306421809 -0.049236420212424 0 -0.000382782225075369 -0.00346003672218975 0.999993940793467 100 0.000117915461260054 1 1 0 0 +162 2 1 -0.0118003711988937 -0.0510043095473915 0 -0.00114833300833111 -0.00346542273397279 0.999993336066085 100 0.000129675573816712 1 1 0 0 +163 2 1 -0.0196669245749386 -0.0545402346039414 0 -0.00191384279103807 -0.00347619463693144 0.999992126607314 100 0.000153224157998011 1 1 0 0 +164 2 1 -0.0275329340953694 -0.0598444881556661 0 -0.0026792842399513 -0.00349235218983721 0.999990312409147 100 0.000188617942626479 1 1 0 0 +165 2 1 -0.0353981767762712 -0.0669175093479173 0 -0.00344463002250721 -0.00351389503084396 0.999987893459576 100 0.000235942024914948 1 1 0 0 +166 2 1 -0.0432624241918846 -0.0757598836704512 0 -0.00420985280709623 -0.00354082267748002 0.999984869742592 100 0.000295309865805393 1 1 0 0 +167 2 1 -0.0511254409195194 -0.0863723429355536 0 -0.00497492526333552 -0.00357313452664035 0.999981241238194 100 0.000366863300996556 1 1 0 0 +168 2 1 0.0615057392303777 -0.111455760971078 0 0.00496164564484674 -0.0043452719543263 0.99997825010554 100 0.000519516556778399 1 1 0 0 +169 2 1 0.052046999867434 -0.100736711330969 0 0.00419861581723811 -0.00431301473098242 0.999981884600491 100 0.000432092632308922 1 1 0 0 +170 2 1 0.0425864066548391 -0.0918055068772468 0 0.00343543585608166 -0.00428613260663979 0.999984913310074 100 0.0003594998306653 1 1 0 0 +171 2 1 0.0331243083118329 -0.0846614184265215 0 0.00267213305633923 -0.00426462618397774 0.999987336254035 100 0.000301596070130472 1 1 0 0 +172 2 1 0.0236610465640854 -0.0793038625887004 0 0.00190873471420086 -0.0042484959451301 0.999989153448174 100 0.000258267697063275 1 1 0 0 +173 2 1 0.0141969576979959 -0.0757324017991809 0 0.00114526812681179 -0.00423774225168677 0.999990364904345 100 0.000229429469527531 1 1 0 0 +174 2 1 0.00473237411488958 -0.0739467443369959 0 0.000381760591999451 -0.00423236534470023 0.999990970630455 100 0.000215024561839527 1 1 0 0 +175 2 1 -0.00473237411488958 -0.0739467443369959 0 -0.000381760591999451 -0.00423236534470023 0.999990970630455 100 0.000215024561839527 1 1 0 0 +176 2 1 -0.0141969576979959 -0.0757324017991809 0 -0.00114526812681179 -0.00423774225168677 0.999990364904345 100 0.000229429469527531 1 1 0 0 +177 2 1 -0.0236610465640854 -0.0793038625887004 0 -0.00190873471420086 -0.0042484959451301 0.999989153448174 100 0.000258267697063275 1 1 0 0 +178 2 1 -0.0331243083118329 -0.0846614184265215 0 -0.00267213305633923 -0.00426462618397774 0.999987336254035 100 0.000301596070130472 1 1 0 0 +179 2 1 -0.0425864066548391 -0.0918055068772468 0 -0.00343543585608166 -0.00428613260663979 0.999984913310074 100 0.0003594998306653 1 1 0 0 +180 2 1 -0.0520469998674349 -0.100736711330969 0 -0.00419861581723812 -0.00431301473098242 0.999981884600491 100 0.000432092632308922 1 1 0 0 +181 2 1 -0.0615057392303777 -0.111455760971078 0 -0.00496164564484674 -0.0043452719543263 0.99997825010554 100 0.000519516556778399 1 1 0 0 diff --git a/Tests/input/toroid_swapped.rml b/Intern/RayCore/tests/input/toroid_swapped.rml similarity index 100% rename from Tests/input/toroid_swapped.rml rename to Intern/RayCore/tests/input/toroid_swapped.rml diff --git a/Tests/main.cpp b/Intern/RayCore/tests/main.cpp similarity index 95% rename from Tests/main.cpp rename to Intern/RayCore/tests/main.cpp index 31bbdcf6c..226b4ad97 100644 --- a/Tests/main.cpp +++ b/Intern/RayCore/tests/main.cpp @@ -9,7 +9,7 @@ int GLOBAL_ARGC = 0; char** GLOBAL_ARGV = nullptr; int main(int argc, char** argv) { - std::filesystem::path outputDir = canonicalizeRepositoryPath("Tests/output"); + std::filesystem::path outputDir = canonicalizeRepositoryPath("Intern/RayCore/tests/output"); if (!std::filesystem::is_directory(outputDir) || !std::filesystem::exists(outputDir)) { std::filesystem::create_directory(outputDir); } diff --git a/Intern/RayCore/tests/output/BoringImagePlane.rayui.csv b/Intern/RayCore/tests/output/BoringImagePlane.rayui.csv new file mode 100644 index 000000000..26ef7b1b9 --- /dev/null +++ b/Intern/RayCore/tests/output/BoringImagePlane.rayui.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.5325000416666709757,0.48000010416668198454,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,0.00049999997916666701,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025000004166031398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-0.1775000015432099953,0.48000004861111600362,0.00000000000000000000,-1.0000000000000000000,-0.0001666666450617289,0.00049999997916666701,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,0.17750000154320999534,0.48000004861111600362,0.00000000000000000000,-1.0000000000000000000,0.00016666664506172898,0.00049999997916666701,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,0.53250004166667097571,0.48000010416668198454,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,0.00049999997916666701,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025000004166031398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-0.5325000416666709757,0.16000002237654600834,0.00000000000000000000,-1.0000000000000000000,-0.0004999999722222229,0.00016666666589506201,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-0.1775000015432099953,0.16000000385802498614,0.00000000000000000000,-1.0000000000000000000,-0.0001666666635802470,0.00016666666589506201,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002777777831397540,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,0.17750000154320999534,0.16000000385802498614,0.00000000000000000000,-1.0000000000000000000,0.00016666666358024700,0.00016666666589506201,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002777777831397540,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,0.53250004166667097571,0.16000002237654600834,0.00000000000000000000,-1.0000000000000000000,0.00049999997222222297,0.00016666666589506201,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-0.5325000416666709757,-0.1600000223765460083,0.00000000000000000000,-1.0000000000000000000,-0.0004999999722222229,-0.0001666666658950620,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-0.1775000015432099953,-0.1600000038580249861,0.00000000000000000000,-1.0000000000000000000,-0.0001666666635802470,-0.0001666666658950620,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002777777831397540,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,0.17750000154320999534,-0.1600000038580249861,0.00000000000000000000,-1.0000000000000000000,0.00016666666358024700,-0.0001666666658950620,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002777777831397540,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,0.53250004166667097571,-0.1600000223765460083,0.00000000000000000000,-1.0000000000000000000,0.00049999997222222297,-0.0001666666658950620,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-0.5325000416666709757,-0.4800001041666819845,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,-0.0004999999791666670,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025000004166031398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-0.1775000015432099953,-0.4800000486111160036,0.00000000000000000000,-1.0000000000000000000,-0.0001666666450617289,-0.0004999999791666670,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,0.17750000154320999534,-0.4800000486111160036,0.00000000000000000000,-1.0000000000000000000,0.00016666664506172898,-0.0004999999791666670,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,0.53250004166667097571,-0.4800001041666819845,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,-0.0004999999791666670,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025000004166031398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-0.5325000416666709757,0.48000010416668198454,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,0.00049999997916666701,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025000004166031398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-0.1775000015432099953,0.48000004861111600362,0.00000000000000000000,-1.0000000000000000000,-0.0001666666450617289,0.00049999997916666701,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,0.17750000154320999534,0.48000004861111600362,0.00000000000000000000,-1.0000000000000000000,0.00016666664506172898,0.00049999997916666701,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,0.53250004166667097571,0.48000010416668198454,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,0.00049999997916666701,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025000004166031398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/BoringImagePlane.rayx.csv b/Intern/RayCore/tests/output/BoringImagePlane.rayx.csv new file mode 100644 index 000000000..22345043f --- /dev/null +++ b/Intern/RayCore/tests/output/BoringImagePlane.rayx.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.5325000416666707536,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +1 ,0 ,-0.1775000015432098843,0.48000004861111589260,0.00000000000000000000,1.00000000000000000000,-0.0001666666450617289,0.00049999997916666690,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +2 ,0 ,0.17750000154320982881,0.48000004861111589260,0.00000000000000000000,1.00000000000000000000,0.00016666664506172887,0.00049999997916666690,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +3 ,0 ,0.53250004166667075367,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +4 ,0 ,-0.5325000416666707536,0.16000002237654559200,0.00000000000000000000,1.00000000000000000000,-0.0004999999722222227,0.00016666666589506174,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +5 ,0 ,-0.1775000015432099120,0.16000000385802476410,0.00000000000000000000,1.00000000000000000000,-0.0001666666635802469,0.00016666666589506174,0.99999997222222258841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002777777820028,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +6 ,0 ,0.17750000154320985656,0.16000000385802476410,0.00000000000000000000,1.00000000000000000000,0.00016666666358024689,0.00016666666589506174,0.99999997222222258841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002777777820028,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +7 ,0 ,0.53250004166667075367,0.16000002237654559200,0.00000000000000000000,1.00000000000000000000,0.00049999997222222275,0.00016666666589506174,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +8 ,0 ,-0.5325000416666707536,-0.1600000223765455364,0.00000000000000000000,1.00000000000000000000,-0.0004999999722222227,-0.0001666666658950616,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +9 ,0 ,-0.1775000015432099120,-0.1600000038580247085,0.00000000000000000000,1.00000000000000000000,-0.0001666666635802469,-0.0001666666658950616,0.99999997222222258841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002777777820028,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +10 ,0 ,0.17750000154320985656,-0.1600000038580247085,0.00000000000000000000,1.00000000000000000000,0.00016666666358024689,-0.0001666666658950616,0.99999997222222258841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002777777820028,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +11 ,0 ,0.53250004166667075367,-0.1600000223765455364,0.00000000000000000000,1.00000000000000000000,0.00049999997222222275,-0.0001666666658950616,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +12 ,0 ,-0.5325000416666707536,-0.4800001041666824841,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,-0.0004999999791666669,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +13 ,0 ,-0.1775000015432098843,-0.4800000486111158926,0.00000000000000000000,1.00000000000000000000,-0.0001666666450617289,-0.0004999999791666669,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +14 ,0 ,0.17750000154320982881,-0.4800000486111158926,0.00000000000000000000,1.00000000000000000000,0.00016666664506172887,-0.0004999999791666669,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +15 ,0 ,0.53250004166667075367,-0.4800001041666824841,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,-0.0004999999791666669,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +16 ,0 ,-0.5325000416666707536,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +17 ,0 ,-0.1775000015432098843,0.48000004861111589260,0.00000000000000000000,1.00000000000000000000,-0.0001666666450617289,0.00049999997916666690,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +18 ,0 ,0.17750000154320982881,0.48000004861111589260,0.00000000000000000000,1.00000000000000000000,0.00016666664506172887,0.00049999997916666690,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +19 ,0 ,0.53250004166667075367,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 diff --git a/Intern/RayCore/tests/output/Cone.rayui.csv b/Intern/RayCore/tests/output/Cone.rayui.csv new file mode 100644 index 000000000..293721c45 --- /dev/null +++ b/Intern/RayCore/tests/output/Cone.rayui.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.2713421433857000075,-5.3906833182254096925,0.00000000000000000000,-1.0000000000000000000,0.00491325571278591975,-0.0004880253954973319,0.99998781080046894587,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065689696168647103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-0.2297485318659359954,-5.4160469562455801906,0.00000000000000000000,-1.0000000000000000000,0.00415751684694948969,-0.0004914247575058540,0.99999123673929002364,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086026403903360904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,-0.1880792775549419981,-5.4371860744762496864,0.00000000000000000000,-1.0000000000000000000,0.00340170467656383986,-0.0004942585910493180,0.99999409203941702628,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103009481438220995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,-0.1463481118585069906,-5.4540991717419196049,0.00000000000000000000,-1.0000000000000000000,0.00264583252093793979,-0.0004965263336367540,0.99999637650937100996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00116619400432683008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-0.1045687792732649945,-5.4667850465250396041,0.00000000000000000000,-1.0000000000000000000,0.00188991370465533994,-0.0004982275349284530,0.99999808999593198244,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00126840527320836999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-0.0627550344848906010,-5.4752427973491801793,0.00000000000000000000,-1.0000000000000000000,0.00113396155640197999,-0.0004993618569671119,0.99999923238416699167,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00133661131769713002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,-0.0209206394608320994,-5.4794718230719796636,0.00000000000000000000,-1.0000000000000000000,0.00037798940779405998,-0.0004999290743512300,0.99999980359744500280,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137073390283148997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,0.02092063946083209946,-5.4794718230719796636,0.00000000000000000000,-1.0000000000000000000,-0.0003779894077940599,-0.0004999290743512300,0.99999980359744500280,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137073390283148997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,0.06275503448489060109,-5.4752427973491801793,0.00000000000000000000,-1.0000000000000000000,-0.0011339615564019799,-0.0004993618569671119,0.99999923238416699167,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00133661131769713002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,0.10456877927326499455,-5.4667850465250396041,0.00000000000000000000,-1.0000000000000000000,-0.0018899137046553499,-0.0004982275349284530,0.99999808999593198244,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00126840527320836999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,0.14634811185850699066,-5.4540991717419196049,0.00000000000000000000,-1.0000000000000000000,-0.0026458325209379397,-0.0004965263336367540,0.99999637650937100996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00116619400432683008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,0.18807927755494199817,-5.4371860744762496864,0.00000000000000000000,-1.0000000000000000000,-0.0034017046765638398,-0.0004942585910493180,0.99999409203941702628,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103009481438220995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,0.22974853186593599541,-5.4160469562455801906,0.00000000000000000000,-1.0000000000000000000,-0.0041575168469494896,-0.0004914247575058540,0.99999123673929002364,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086026403903360904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,0.27134214338570000757,-5.3906833182254096925,0.00000000000000000000,-1.0000000000000000000,-0.0049132557127859197,-0.0004880253954973319,0.99998781080046894587,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065689696168647103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,-0.2713173199352409969,-4.5480444805280297870,0.00000000000000000000,-1.0000000000000000000,0.00488906916922249041,-0.0004111803974201910,0.99998796389423605379,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027674560499235700,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,-0.2297260468793849985,-4.5732837071992999966,0.00000000000000000000,-1.0000000000000000000,0.00413704909813638992,-0.0004145576167259860,0.99999135644601500061,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047717281836412401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-0.1880598708288460096,-4.5943191089689303652,0.00000000000000000000,-1.0000000000000000000,0.00338495682823128016,-0.0004173729791150940,0.99999418391661998306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00064454846153694201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-0.1463323891059880033,-4.6111492066487995700,0.00000000000000000000,-1.0000000000000000000,0.00263280547799759007,-0.0004196259323969440,0.99999644611838101049,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00077868010976089895,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,-0.1045572118691820012,-4.6237728163264497638,0.00000000000000000000,-1.0000000000000000000,0.00188060817106636005,-0.0004213160344820610,0.99999814290112898351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087941371634769904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,-0.0627479592674298064,-4.6321890497369402339,0.00000000000000000000,-1.0000000000000000000,0.00112837803506676999,-0.0004224429536062449,0.99999927415221701032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00094663369816316801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +20 ,0 ,-0.0209182585896710987,-4.6363973145492201055,0.00000000000000000000,-1.0000000000000000000,0.00037612820048386701,-0.0004230064684998810,0.99999983979653894738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098026296598163796,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +21 ,0 ,0.02091825858967109874,-4.6363973145492201055,0.00000000000000000000,-1.0000000000000000000,-0.0003761282004838670,-0.0004230064684998810,0.99999983979653894738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098026296598163796,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +22 ,0 ,0.06274795926742980645,-4.6321890497369402339,0.00000000000000000000,-1.0000000000000000000,-0.0011283780350667699,-0.0004224429536062449,0.99999927415221701032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00094663369816316801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +23 ,0 ,0.10455721186918200127,-4.6237728163264497638,0.00000000000000000000,-1.0000000000000000000,-0.0018806081710663600,-0.0004213160344820610,0.99999814290112898351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087941371634769904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +24 ,0 ,0.14633238910598800330,-4.6111492066487995700,0.00000000000000000000,-1.0000000000000000000,-0.0026328054779975900,-0.0004196259323969440,0.99999644611838101049,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00077868010976089895,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +25 ,0 ,0.18805987082884600969,-4.5943191089689303652,0.00000000000000000000,-1.0000000000000000000,-0.0033849568282312801,-0.0004173729791150940,0.99999418391661998306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00064454846153694201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +26 ,0 ,0.22972604687938399936,-4.5732837071992999966,0.00000000000000000000,-1.0000000000000000000,-0.0041370490981363899,-0.0004145576167259860,0.99999135644601500061,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047717281836412401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +27 ,0 ,0.27131731993524099699,-4.5480444805280297870,0.00000000000000000000,-1.0000000000000000000,-0.0048890691692224904,-0.0004111803974201910,0.99998796389423605379,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027674560499235700,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +28 ,0 ,-0.2712924751998960215,-3.7054014180625198804,0.00000000000000000000,-1.0000000000000000000,0.00486511883767330038,-0.0003343344475815470,0.99998810934889204027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000384181510071357,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +29 ,0 ,-0.2297035655047729996,-3.7305174476678097938,0.00000000000000000000,-1.0000000000000000000,0.00411678126465352990,-0.0003376897930688899,0.99999146900242197322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015909776959688299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +30 ,0 ,-0.1880404818117349940,-3.7514501456620301667,0.00000000000000000000,-1.0000000000000000000,0.00336837257673933999,-0.0003404869088144690,0.99999426905100297080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00032404219120962801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +31 ,0 ,-0.1463166893130140033,-3.7681980544187898551,0.00000000000000000000,-1.0000000000000000000,0.00261990569556062998,-0.0003427252526881640,0.99999650931068095882,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045622549475865498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +32 ,0 ,-0.1045456657881940060,-3.7807600072867901808,0.00000000000000000000,-1.0000000000000000000,0.00187139354775790007,-0.0003444043906581370,0.99999818963426401197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00055549587762015995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +33 ,0 ,-0.0627408988138807022,-3.7891351289577701599,0.00000000000000000000,-1.0000000000000000000,0.00112284906386872994,-0.0003455239970092949,0.99999930991133501034,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00062173943899779303,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +34 ,0 ,-0.0209158829682253993,-3.7933228357389499052,0.00000000000000000000,-1.0000000000000000000,0.00037428517721424298,-0.0003460838545071569,0.99999987006827695257,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065488021255077899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +35 ,0 ,0.02091588296822539938,-3.7933228357389499052,0.00000000000000000000,-1.0000000000000000000,-0.0003742851772142429,-0.0003460838545071569,0.99999987006827695257,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065488021255077899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +36 ,0 ,0.06274089881388070222,-3.7891351289577701599,0.00000000000000000000,-1.0000000000000000000,-0.0011228490638687299,-0.0003455239970092949,0.99999930991133501034,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00062173943899779303,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +37 ,0 ,0.10454566578819400601,-3.7807600072867901808,0.00000000000000000000,-1.0000000000000000000,-0.0018713935477579000,-0.0003444043906581370,0.99999818963426401197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00055549587762015995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +38 ,0 ,0.14631668931301400338,-3.7681980544187898551,0.00000000000000000000,-1.0000000000000000000,-0.0026199056955606299,-0.0003427252526881640,0.99999650931068095882,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045622549475865498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +39 ,0 ,0.18804048181173499409,-3.7514501456620301667,0.00000000000000000000,-1.0000000000000000000,-0.0033683725767393399,-0.0003404869088144690,0.99999426905100297080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00032404219120962801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +40 ,0 ,0.22970356550477299961,-3.7305174476678097938,0.00000000000000000000,-1.0000000000000000000,-0.0041167812646535299,-0.0003376897930688899,0.99999146900242197322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015909776959688299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +41 ,0 ,0.27129247519989602155,-3.7054014180625198804,0.00000000000000000000,-1.0000000000000000000,-0.0048651188376733003,-0.0003343344475815470,0.99998810934889204027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000384181510071357,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +42 ,0 ,-0.2712676099223059744,-2.8627541831780600745,0.00000000000000000000,-1.0000000000000000000,0.00484140127465699978,-0.0002574875629701989,0.99998824719786194581,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002885928486193730,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +43 ,0 ,-0.2296810879515449876,-2.8877482123194297969,0.00000000000000000000,-1.0000000000000000000,0.00409671043172186999,-0.0002608212988482460,0.99999157443244901521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000939600632818838,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +44 ,0 ,-0.1880211103889939949,-2.9085792044711897830,0.00000000000000000000,-1.0000000000000000000,0.00335194953654305988,-0.0002636003885524429,0.99999434745859394624,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006857670393856099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +45 ,0 ,-0.1463010122123319933,-2.9252457231517201563,0.00000000000000000000,-1.0000000000000000000,0.00260713131775150994,-0.0002658242997800599,0.99999656609597098455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019883057677816401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +46 ,0 ,-0.1045341407439200065,-2.9377466186387097835,0.00000000000000000000,-1.0000000000000000000,0.00186226850886256995,-0.0002674926063704060,0.99999823020028699716,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029665196052519599,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +47 ,0 ,-0.0627338529142027062,-2.9460810283274998511,0.00000000000000000000,-1.0000000000000000000,0.00111737384719054998,-0.0002686049885168850,0.99999933966330500911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036192860341088800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +48 ,0 ,-0.0209135125201104013,-2.9502483769987701833,0.00000000000000000000,-1.0000000000000000000,0.00037246007276328700,-0.0002691612329265289,0.99999989441285697111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039458564299366100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +49 ,0 ,0.02091351252011040134,-2.9502483769987701833,0.00000000000000000000,-1.0000000000000000000,-0.0003724600727632870,-0.0002691612329265289,0.99999989441285697111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039458564299366100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +50 ,0 ,0.06273385291420270626,-2.9460810283274998511,0.00000000000000000000,-1.0000000000000000000,-0.0011173738471905499,-0.0002686049885168850,0.99999933966330500911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036192860341088800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +51 ,0 ,0.10453414074392000654,-2.9377466186387097835,0.00000000000000000000,-1.0000000000000000000,-0.0018622685088625699,-0.0002674926063704060,0.99999823020028699716,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029665196052519599,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +52 ,0 ,0.14630101221233199337,-2.9252457231517201563,0.00000000000000000000,-1.0000000000000000000,-0.0026071313177515099,-0.0002658242997800599,0.99999656609597098455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019883057677816401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +53 ,0 ,0.18802111038899399497,-2.9085792044711897830,0.00000000000000000000,-1.0000000000000000000,-0.0033519495365430598,-0.0002636003885524429,0.99999434745859394624,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006857670393856099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +54 ,0 ,0.22968108795154498769,-2.8877482123194297969,0.00000000000000000000,-1.0000000000000000000,-0.0040967104317218699,-0.0002608212988482460,0.99999157443244901521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000939600632818838,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +55 ,0 ,0.27126760992230597446,-2.8627541831780600745,0.00000000000000000000,-1.0000000000000000000,-0.0048414012746569997,-0.0002574875629701989,0.99998824719786194581,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002885928486193730,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +56 ,0 ,-0.2712427248224340003,-2.0201028270173000400,0.00000000000000000000,-1.0000000000000000000,0.00481791310329167041,-0.0001806397602040490,0.99998837747376201345,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004737770526617169,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +57 ,0 ,-0.2296586144200430112,-2.0449760349563801398,0.00000000000000000000,-1.0000000000000000000,0.00407683374094660981,-0.0001839521461106659,0.99999167275945699540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002819996491325579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +58 ,0 ,-0.1880017564454619927,-2.0657063047305399550,0.00000000000000000000,-1.0000000000000000000,0.00333568536825114021,-0.0001867134265548800,0.99999441915503695099,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001218473146309409,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +59 ,0 ,-0.1462853575405599904,-2.0822922205958498409,0.00000000000000000000,-1.0000000000000000000,0.00259448052460507002,-0.0001889230788341970,0.99999661648371496180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000649577270905866,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +60 ,0 ,-0.1045226364550499997,-2.0947326494330300583,0.00000000000000000000,-1.0000000000000000000,0.00185323175417022008,-0.0001905806844772760,0.99999826460402796435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010288217492870900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +61 ,0 ,-0.0627268213623173032,-2.1030267410960501450,0.00000000000000000000,-1.0000000000000000000,0.00111195160481214992,-0.0001916859294498200,0.99999936340986395055,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016720126120617400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +62 ,0 ,-0.0209111471704164011,-2.1071739286770099219,0.00000000000000000000,-1.0000000000000000000,0.00037065262704196301,-0.0001922386043095859,0.99999991283047096057,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019937925674184999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +63 ,0 ,0.02091114717041640119,-2.1071739286770099219,0.00000000000000000000,-1.0000000000000000000,-0.0003706526270419630,-0.0001922386043095859,0.99999991283047096057,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019937925674184999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +64 ,0 ,0.06272682136231730321,-2.1030267410960501450,0.00000000000000000000,-1.0000000000000000000,-0.0011119516048121499,-0.0001916859294498200,0.99999936340986395055,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016720126120617400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +65 ,0 ,0.10452263645504999978,-2.0947326494330300583,0.00000000000000000000,-1.0000000000000000000,-0.0018532317541702200,-0.0001905806844772760,0.99999826460402796435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010288217492870900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +66 ,0 ,0.14628535754055999040,-2.0822922205958498409,0.00000000000000000000,-1.0000000000000000000,-0.0025944805246050700,-0.0001889230788341970,0.99999661648371496180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000649577270905866,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +67 ,0 ,0.18800175644546199271,-2.0657063047305399550,0.00000000000000000000,-1.0000000000000000000,-0.0033356853682511402,-0.0001867134265548800,0.99999441915503695099,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001218473146309409,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +68 ,0 ,0.22965861442004301129,-2.0449760349563801398,0.00000000000000000000,-1.0000000000000000000,-0.0040768337409466098,-0.0001839521461106659,0.99999167275945699540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002819996491325579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +69 ,0 ,0.27124272482243400039,-2.0201028270173000400,0.00000000000000000000,-1.0000000000000000000,-0.0048179131032916704,-0.0001806397602040490,0.99998837747376201345,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004737770526617169,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +70 ,0 ,-0.2712178205982960221,-1.1774473995449399321,0.00000000000000000000,-1.0000000000000000000,0.00479465101169264037,-0.0001037910555394260,0.99998850020842400265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005939693492109650,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +71 ,0 ,-0.2296361451018469890,-1.2022009485373299497,0.00000000000000000000,-1.0000000000000000000,0.00405714838896050963,-0.0001070823466441379,0.99999176400624401050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004050199751191029,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +72 ,0 ,-0.1879824198654999889,-1.2228314652100100712,0.00000000000000000000,-1.0000000000000000000,0.00331957777751519002,-0.0001098260308738660,0.99999448415559899494,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002472291829462849,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +73 ,0 ,-0.1462697250381199964,-1.2393375541580000653,0.00000000000000000000,-1.0000000000000000000,0.00258195153120223007,-0.0001120215949065029,0.99999666048314994615,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001207785090855400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +74 ,0 ,-0.1045111526452270067,-1.2517180985467399878,0.00000000000000000000,-1.0000000000000000000,0.00184428200851044000,-0.0001136686277833370,0.99999829285020103153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000258132693033986,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +75 ,0 ,-0.0627198039560147996,-1.2599722604518699409,0.00000000000000000000,-1.0000000000000000000,0.00110658157153998995,-0.0001147668211096960,0.99999938115270903260,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00003755749060019299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +76 ,0 ,-0.0209087868456717014,-1.2640994811153400956,0.00000000000000000000,-1.0000000000000000000,0.00036886258497053898,-0.0001153159692054429,0.99999992532130699274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006926105538695989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +77 ,0 ,0.02090878684567170145,-1.2640994811153400956,0.00000000000000000000,-1.0000000000000000000,-0.0003688625849705389,-0.0001153159692054429,0.99999992532130699274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006926105538695989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +78 ,0 ,0.06271980395601479962,-1.2599722604518699409,0.00000000000000000000,-1.0000000000000000000,-0.0011065815715399899,-0.0001147668211096960,0.99999938115270903260,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00003755749060019299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +79 ,0 ,0.10451115264522700676,-1.2517180985467399878,0.00000000000000000000,-1.0000000000000000000,-0.0018442820085104400,-0.0001136686277833370,0.99999829285020103153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000258132693033986,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +80 ,0 ,0.14626972503811999648,-1.2393375541580000653,0.00000000000000000000,-1.0000000000000000000,-0.0025819515312022300,-0.0001120215949065029,0.99999666048314994615,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001207785090855400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +81 ,0 ,0.18798241986549998894,-1.2228314652100100712,0.00000000000000000000,-1.0000000000000000000,-0.0033195777775151900,-0.0001098260308738660,0.99999448415559899494,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002472291829462849,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +82 ,0 ,0.22963614510184698902,-1.2022009485373299497,0.00000000000000000000,-1.0000000000000000000,-0.0040571483889605096,-0.0001070823466441379,0.99999176400624401050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004050199751191029,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +83 ,0 ,0.27121782059829602218,-1.1774473995449399321,0.00000000000000000000,-1.0000000000000000000,-0.0047946510116926403,-0.0001037910555394260,0.99998850020842400265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005939693492109650,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +84 ,0 ,-0.2711928979266799988,-0.3347879495804689797,0.00000000000000000000,-1.0000000000000000000,0.00477161175141654035,-0.0000269414648814692,0.99998861543292094644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006491683611784539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +85 ,0 ,-0.2296136801801050009,-0.3594229852019660276,0.00000000000000000000,-1.0000000000000000000,0.00403765162610632017,-0.0000302119119839904,0.99999184819506703458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004630200511428480,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +86 ,0 ,-0.1879631005330739956,-0.3799547041296549854,0.00000000000000000000,-1.0000000000000000000,0.00330362451395099007,-0.0000329382093924302,0.99999454247518004823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003075682398048230,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +87 ,0 ,-0.1462541144491729949,-0.3963817309116600129,0.00000000000000000000,-1.0000000000000000000,0.00256954258683050017,-0.0000351198529504603,0.99999669810329394614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001829918670637200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +88 ,0 ,-0.1044996890429390062,-0.4087029646878250210,0.00000000000000000000,-1.0000000000000000000,0.00183541802115267998,-0.0000367564390406361,0.99999831494340596371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000894341751518367,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +89 ,0 ,-0.0627128004968613012,-0.4169175795216020219,0.00000000000000000000,-1.0000000000000000000,0.00110126299684704998,-0.0000378476647787672,0.99999939289349804028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000270026455382321,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +90 ,0 ,-0.0209064314738099006,-0.4210250246503769999,0.00000000000000000000,-1.0000000000000000000,0.00036708969635856599,-0.0000383933281612180,0.99999993188555102996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000423104233959748,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +91 ,0 ,0.02090643147380990066,-0.4210250246503769999,0.00000000000000000000,-1.0000000000000000000,-0.0003670896963585659,-0.0000383933281612180,0.99999993188555102996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000423104233959748,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +92 ,0 ,0.06271280049686130120,-0.4169175795216020219,0.00000000000000000000,-1.0000000000000000000,-0.0011012629968470499,-0.0000378476647787672,0.99999939289349804028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000270026455382321,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +93 ,0 ,0.10449968904293900628,-0.4087029646878250210,0.00000000000000000000,-1.0000000000000000000,-0.0018354180211526799,-0.0000367564390406361,0.99999831494340596371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000894341751518367,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +94 ,0 ,0.14625411444917299497,-0.3963817309116600129,0.00000000000000000000,-1.0000000000000000000,-0.0025695425868305001,-0.0000351198529504603,0.99999669810329394614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001829918670637200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +95 ,0 ,0.18796310053307399567,-0.3799547041296549854,0.00000000000000000000,-1.0000000000000000000,-0.0033036245139509900,-0.0000329382093924302,0.99999454247518004823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003075682398048230,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +96 ,0 ,0.22961368018010500091,-0.3594229852019660276,0.00000000000000000000,-1.0000000000000000000,-0.0040376516261063201,-0.0000302119119839904,0.99999184819506703458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004630200511428480,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +97 ,0 ,0.27119289792667999883,-0.3347879495804689797,0.00000000000000000000,-1.0000000000000000000,-0.0047716117514165403,-0.0000269414648814692,0.99998861543292094644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006491683611784539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +98 ,0 ,-0.2711679574638520273,0.50787547518002396085,0.00000000000000000000,-1.0000000000000000000,0.00474879213594945042,0.00004990899620654910,0.99998872317758702443,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006393727268232399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +99 ,0 ,-0.2295912198298420137,0.48335782371797297862,0.00000000000000000000,-1.0000000000000000000,0.00401834075515646992,0.00004665914657953070,0.99999192534765002360,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004559988999517369,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +100 ,0 ,-0.1879437983318280047,0.46292396083067399725,0.00000000000000000000,-1.0000000000000000000,0.00328782337009045008,0.00004395003017110270,0.99999459412832902849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003028638275281990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +101 ,0 ,-0.1462385255215699897,0.44657524239617601979,0.00000000000000000000,-1.0000000000000000000,0.00255725197416844986,0.00004178214218000800,0.99999672935294803277,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001801439067321550,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +102 ,0 ,-0.1044882453814200001,0.43431275360329402168,0.00000000000000000000,-1.0000000000000000000,0.00182663856522347002,0.00004015587904954150,0.99999833088813594450,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000879803357065612,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +103 ,0 ,-0.0627058107901165978,0.42613730862812798649,0.00000000000000000000,-1.0000000000000000000,0.00109599514452313000,0.00003907153827845120,0.99999939863384801341,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000264790722894759,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +104 ,0 ,-0.0209040809841346993,0.42204945039040897558,0.00000000000000000000,-1.0000000000000000000,0.00036533371578828299,0.00003852931827802440,0.99999993252338104099,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000428922874107229,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +105 ,0 ,0.02090408098413469931,0.42204945039040897558,0.00000000000000000000,-1.0000000000000000000,-0.0003653337157882829,0.00003852931827802440,0.99999993252338104099,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000428922874107229,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +106 ,0 ,0.06270581079011659786,0.42613730862812798649,0.00000000000000000000,-1.0000000000000000000,-0.0010959951445231300,0.00003907153827845120,0.99999939863384801341,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000264790722894759,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +107 ,0 ,0.10448824538142000017,0.43431275360329402168,0.00000000000000000000,-1.0000000000000000000,-0.0018266385652234700,0.00004015587904954150,0.99999833088813594450,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000879803357065612,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +108 ,0 ,0.14623852552156998974,0.44657524239617601979,0.00000000000000000000,-1.0000000000000000000,-0.0025572519741684498,0.00004178214218000800,0.99999672935294803277,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001801439067321550,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +109 ,0 ,0.18794379833182800476,0.46292396083067399725,0.00000000000000000000,-1.0000000000000000000,-0.0032878233700904500,0.00004395003017110270,0.99999459412832902849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003028638275281990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +110 ,0 ,0.22959121982984201371,0.48335782371797297862,0.00000000000000000000,-1.0000000000000000000,-0.0040183407551564699,0.00004665914657953070,0.99999192534765002360,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004559988999517369,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +111 ,0 ,0.27116795746385202736,0.50787547518002396085,0.00000000000000000000,-1.0000000000000000000,-0.0047487921359494504,0.00004990899620654910,0.99998872317758702443,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006393727268232399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +112 ,0 ,-0.2711429998461939994,1.35054282813393000672,0.00000000000000000000,-1.0000000000000000000,0.00472618903923838987,0.00012676031249386800,0.99998882347203699172,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005645811100976060,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +113 ,0 ,-0.2295687642182659971,1.32614144767228991916,0.00000000000000000000,-1.0000000000000000000,0.00399921313006967003,0.00012353081799476600,0.99999199548520201208,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003839555631657279,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +114 ,0 ,-0.1879245131451439954,1.30580451251570006654,0.00000000000000000000,-1.0000000000000000000,0.00327217218036350999,0.00012083868025844500,0.99999463912924801967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002331153031036589,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +115 ,0 ,-0.1462229580067810064,1.28953335933646995314,0.00000000000000000000,-1.0000000000000000000,0.00254507800849345993,0.00011868438572820700,0.99999675424070599838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001122342340522659,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +116 ,0 ,-0.1044768213985420024,1.27732905794858009329,0.00000000000000000000,-1.0000000000000000000,0.00181794243714036006,0.00011706832383562300,0.99999834068877502257,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000214515550851501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +117 ,0 ,-0.0626988346446438055,1.26919241098962998215,0.00000000000000000000,-1.0000000000000000000,0.00109077729233507999,0.00011599078681567800,0.99999939837533702302,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00003912828117336179,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +118 ,0 ,-0.0209017353072889003,1.26512395368469010570,0.00000000000000000000,-1.0000000000000000000,0.00036359440250136000,0.00011545196956924699,0.99999992723497399538,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006943561697880799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +119 ,0 ,0.02090173530728890033,1.26512395368469010570,0.00000000000000000000,-1.0000000000000000000,-0.0003635944025013600,0.00011545196956924699,0.99999992723497399538,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006943561697880799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +120 ,0 ,0.06269883464464380551,1.26919241098962998215,0.00000000000000000000,-1.0000000000000000000,-0.0010907772923350799,0.00011599078681567800,0.99999939837533702302,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00003912828117336179,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +121 ,0 ,0.10447682139854200245,1.27732905794858009329,0.00000000000000000000,-1.0000000000000000000,-0.0018179424371403600,0.00011706832383562300,0.99999834068877502257,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000214515550851501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +122 ,0 ,0.14622295800678100641,1.28953335933646995314,0.00000000000000000000,-1.0000000000000000000,-0.0025450780084934599,0.00011868438572820700,0.99999675424070599838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001122342340522659,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +123 ,0 ,0.18792451314514399540,1.30580451251570006654,0.00000000000000000000,-1.0000000000000000000,-0.0032721721803635099,0.00012083868025844500,0.99999463912924801967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002331153031036589,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +124 ,0 ,0.22956876421826599710,1.32614144767228991916,0.00000000000000000000,-1.0000000000000000000,-0.0039992131300696700,0.00012353081799476600,0.99999199548520201208,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003839555631657279,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +125 ,0 ,0.27114299984619399941,1.35054282813393000672,0.00000000000000000000,-1.0000000000000000000,-0.0047261890392383898,0.00012676031249386800,0.99998882347203699172,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005645811100976060,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +126 ,0 ,-0.2711180256908879981,2.19321406374711003195,0.00000000000000000000,-1.0000000000000000000,0.00470379939426427036,0.00020361246907329999,0.99998891634518705107,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004247921996238799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +127 ,0 ,-0.2295463135050559988,2.16892785687839984021,0.00000000000000000000,-1.0000000000000000000,0.00398026615478244000,0.00020040309144292399,0.99999205862843598691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002468890925229059,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +128 ,0 ,-0.1879052448562139876,2.14868693428402002254,0.00000000000000000000,-1.0000000000000000000,0.00325666882010882015,0.00019772773346723998,0.99999467749180503961,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000983220309080933,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +129 ,0 ,-0.1462074116598489903,2.13249261379149990247,0.00000000000000000000,-1.0000000000000000000,0.00253301903691187987,0.00019558687303167200,0.99999677277495901961,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002073753603326620,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +130 ,0 ,-0.1044654168367190050,2.12034595012866988739,0.00000000000000000000,-1.0000000000000000000,0.00180932845606178991,0.00019398089271394100,0.99999834434960499507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011015236941602799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +131 ,0 ,-0.0626918718728273066,2.11224773461242021355,0.00000000000000000000,-1.0000000000000000000,0.00108560873169665991,0.00019291007960420299,0.99999939211950694684,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016981949113414901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +132 ,0 ,-0.0208993943752225005,2.10819849491642985483,0.00000000000000000000,-1.0000000000000000000,0.00036187152028883598,0.00019237462517107700,0.99999991602049997929,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019967022285527499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +133 ,0 ,0.02089939437522250059,2.10819849491642985483,0.00000000000000000000,-1.0000000000000000000,-0.0003618715202888359,0.00019237462517107700,0.99999991602049997929,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019967022285527499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +134 ,0 ,0.06269187187282730666,2.11224773461242021355,0.00000000000000000000,-1.0000000000000000000,-0.0010856087316966599,0.00019291007960420299,0.99999939211950694684,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016981949113414901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +135 ,0 ,0.10446541683671800582,2.12034595012866988739,0.00000000000000000000,-1.0000000000000000000,-0.0018093284560617899,0.00019398089271394100,0.99999834434960499507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011015236941602799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +136 ,0 ,0.14620741165984899034,2.13249261379149990247,0.00000000000000000000,-1.0000000000000000000,-0.0025330190369118798,0.00019558687303167200,0.99999677277495901961,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002073753603326620,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +137 ,0 ,0.18790524485621398764,2.14868693428402002254,0.00000000000000000000,-1.0000000000000000000,-0.0032566688201088201,0.00019772773346723998,0.99999467749180503961,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000983220309080933,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +138 ,0 ,0.22954631350505599884,2.16892785687839984021,0.00000000000000000000,-1.0000000000000000000,-0.0039802661547824504,0.00020040309144292399,0.99999205862843598691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002468890925229059,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +139 ,0 ,0.27111802569088799819,2.19321406374711003195,0.00000000000000000000,-1.0000000000000000000,-0.0047037993942642703,0.00020361246907329999,0.99998891634518705107,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004247921996238799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +140 ,0 ,-0.2710930355964960014,3.03588913752949984825,0.00000000000000000000,-1.0000000000000000000,0.00468162019165505993,0.00028046545135307398,0.99998900182527594715,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002200047035785249,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +141 ,0 ,-0.2295238678426380074,3.01171702230056981264,0.00000000000000000000,-1.0000000000000000000,0.00396149728203482043,0.00027727595633064700,0.99999211479757599274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000447985659093320,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +142 ,0 ,-0.1878859933480930000,2.99157120999337999833,0.00000000000000000000,-1.0000000000000000000,0.00324131120461245000,0.00027461718254653800,0.99999470922954303286,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010151661115287400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +143 ,0 ,-0.1461918862393200013,2.97545299994443990243,0.00000000000000000000,-1.0000000000000000000,0.00252107343761097998,0.00027248959951994800,0.99999678496390198567,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021877178107843100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +144 ,0 ,-0.1044540314428040045,2.96336343207768004859,0.00000000000000000000,-1.0000000000000000000,0.00180079546335260996,0.00027089358312817901,0.99999834187480796110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030683163026878901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +145 ,0 ,-0.0626849222904938968,2.95530328659995999984,0.00000000000000000000,-1.0000000000000000000,0.00108048876734778004,0.00026982941543177201,0.99999937986786302523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036559462455443297,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +146 ,0 ,-0.0208970581211616011,2.95127308377605990230,0.00000000000000000000,-1.0000000000000000000,0.00036016483738417301,0.00026929728454430602,0.99999989888012597027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039499305296431002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +147 ,0 ,0.02089705812116160119,2.95127308377605990230,0.00000000000000000000,-1.0000000000000000000,-0.0003601648373841730,0.00026929728454430602,0.99999989888012597027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039499305296431002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +148 ,0 ,0.06268492229049389685,2.95530328659995999984,0.00000000000000000000,-1.0000000000000000000,-0.0010804887673477800,0.00026982941543177201,0.99999937986786302523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036559462455443297,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +149 ,0 ,0.10445403144280400453,2.96336343207768004859,0.00000000000000000000,-1.0000000000000000000,-0.0018007954633526099,0.00027089358312817901,0.99999834187480796110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030683163026878901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +150 ,0 ,0.14619188623932000137,2.97545299994443990243,0.00000000000000000000,-1.0000000000000000000,-0.0025210734376109799,0.00027248959951994800,0.99999678496390198567,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021877178107843100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +151 ,0 ,0.18788599334809300001,2.99157120999337999833,0.00000000000000000000,-1.0000000000000000000,-0.0032413112046124500,0.00027461718254653800,0.99999470922954303286,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010151661115287400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +152 ,0 ,0.22952386784263800745,3.01171702230056981264,0.00000000000000000000,-1.0000000000000000000,-0.0039614972820348204,0.00027727595633064700,0.99999211479757599274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000447985659093320,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +153 ,0 ,0.27109303559649600146,3.03588913752949984825,0.00000000000000000000,-1.0000000000000000000,-0.0046816201916550599,0.00028046545135307398,0.99998900182527594715,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002200047035785249,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +154 ,0 ,-0.2710680301435779981,3.87856800600878992568,0.00000000000000000000,-1.0000000000000000000,0.00465964847833792977,0.00035731924504767099,0.99998907993988395137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004978264371402470,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +155 ,0 ,-0.2295014273764610090,3.85450891563302011633,0.00000000000000000000,-1.0000000000000000000,0.00394290401222902042,0.00035414940228509201,0.99999216401237400742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022231693253615999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +156 ,0 ,-0.1878667585037629983,3.83445732399280014845,0.00000000000000000000,-1.0000000000000000000,0.00322609728817337994,0.00035150702039340997,0.99999473435568697610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036640123846609602,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +157 ,0 ,-0.1461763815071920047,3.81841451227725992012,0.00000000000000000000,-1.0000000000000000000,0.00250923961913175012,0.00034939256071206398,0.99999679081553705106,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00048186887806878097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +158 ,0 ,-0.1044426649680040009,3.80638150588216017666,0.00000000000000000000,-1.0000000000000000000,0.00179234232206446010,0.00034780639256726302,0.99999833326846798708,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00056858642165025197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +159 ,0 ,-0.0626779857168335979,3.79835907411192019722,0.00000000000000000000,-1.0000000000000000000,0.00107541671704262996,0.00034674879310284101,0.99999936162187597066,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00062645375942338400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +160 ,0 ,-0.0208947264795785007,3.79434772995989000321,0.00000000000000000000,-1.0000000000000000000,0.00035847412635930801,0.00034621994715158799,0.99999987581401694747,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065540412231257494,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +161 ,0 ,0.02089472647957850079,3.79434772995989000321,0.00000000000000000000,-1.0000000000000000000,-0.0003584741263593080,0.00034621994715158799,0.99999987581401694747,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065540412231257494,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +162 ,0 ,0.06267798571683359798,3.79835907411192019722,0.00000000000000000000,-1.0000000000000000000,-0.0010754167170426299,0.00034674879310284101,0.99999936162187597066,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00062645375942338400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +163 ,0 ,0.10444266496800400090,3.80638150588216017666,0.00000000000000000000,-1.0000000000000000000,-0.0017923423220644601,0.00034780639256726302,0.99999833326846798708,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00056858642165025197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +164 ,0 ,0.14617638150719200473,3.81841451227725992012,0.00000000000000000000,-1.0000000000000000000,-0.0025092396191317501,0.00034939256071206398,0.99999679081553705106,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00048186887806878097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +165 ,0 ,0.18786675850376299834,3.83445732399280014845,0.00000000000000000000,-1.0000000000000000000,-0.0032260972881733799,0.00035150702039340997,0.99999473435568697610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036640123846609602,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +166 ,0 ,0.22950142737646100909,3.85450891563302011633,0.00000000000000000000,-1.0000000000000000000,-0.0039429040122290204,0.00035414940228509201,0.99999216401237400742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022231693253615999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +167 ,0 ,0.27106803014357799819,3.87856800600878992568,0.00000000000000000000,-1.0000000000000000000,-0.0046596484783379297,0.00035731924504767099,0.99998907993988395137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004978264371402470,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +168 ,0 ,-0.2710430098952700261,4.72125062671116957346,0.00000000000000000000,-1.0000000000000000000,0.00463788135622887013,0.00043417383617083698,0.99998915071594896009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00038457108985312499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +169 ,0 ,-0.2294789922452490082,4.69730350928514983621,0.00000000000000000000,-1.0000000000000000000,0.00392448389231987975,0.00043102341914757997,0.99999220629212404176,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00055445830105327299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +170 ,0 ,-0.1878475402061849930,4.67734526110881976279,0.00000000000000000000,-1.0000000000000000000,0.00321102506319524000,0.00042839724004822799,0.99999475288315797794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00069633245720979197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +171 ,0 ,-0.1461608972288659935,4.66137714556106974583,0.00000000000000000000,-1.0000000000000000000,0.00249751601966215989,0.00042629575221392302,0.99999679033768096303,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00081002919455386301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +172 ,0 ,-0.1044313171677789947,4.64940017377660019803,0.00000000000000000000,-1.0000000000000000000,0.00178396791643075009,0.00042471931856527501,0.99999831853457299413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00089541694080708101,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +173 ,0 ,-0.0626710619743224978,4.64141510436188031718,0.00000000000000000000,-1.0000000000000000000,0.00107039191124662000,0.00042366821143785500,0.99999933738298196761,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00095239696929638696,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +174 ,0 ,-0.0208923993861638013,4.63742244317154028721,0.00000000000000000000,-1.0000000000000000000,0.00035679916402360099,0.00042314261245732199,0.99999984682233100663,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098090344761203596,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +175 ,0 ,0.02089239938616380132,4.63742244317154028721,0.00000000000000000000,-1.0000000000000000000,-0.0003567991640236009,0.00042314261245732199,0.99999984682233100663,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098090344761203596,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +176 ,0 ,0.06267106197432249781,4.64141510436188031718,0.00000000000000000000,-1.0000000000000000000,-0.0010703919112466200,0.00042366821143785500,0.99999933738298196761,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00095239696929638696,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +177 ,0 ,0.10443131716777899475,4.64940017377660019803,0.00000000000000000000,-1.0000000000000000000,-0.0017839679164307500,0.00042471931856527501,0.99999831853457299413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00089541694080708101,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +178 ,0 ,0.14616089722886599355,4.66137714556106974583,0.00000000000000000000,-1.0000000000000000000,-0.0024975160196621598,0.00042629575221392302,0.99999679033768096303,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00081002919455386301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +179 ,0 ,0.18784754020618499303,4.67734526110881976279,0.00000000000000000000,-1.0000000000000000000,-0.0032110250631952400,0.00042839724004822799,0.99999475288315797794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00069633245720979197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +180 ,0 ,0.22947899224524900829,4.69730350928514983621,0.00000000000000000000,-1.0000000000000000000,-0.0039244838923198797,0.00043102341914757997,0.99999220629212404176,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00055445830105327299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +181 ,0 ,0.27104300989527002618,4.72125062671116957346,0.00000000000000000000,-1.0000000000000000000,-0.0046378813562288701,0.00043417383617083698,0.99998915071594896009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00038457108985312499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +182 ,0 ,-0.2710179753978290140,5.56393695813058997146,0.00000000000000000000,-1.0000000000000000000,0.00461631598095903986,0.00051102921102594300,0.99998921417978803294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00078436185685859494,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +183 ,0 ,-0.2294565625812529929,5.54010077636039977022,0.00000000000000000000,-1.0000000000000000000,0.00390623451473634010,0.00050789799696784898,0.99999224165567401900,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00095162641855495199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +184 ,0 ,-0.1878283383383450022,5.52023500663401023302,0.00000000000000000000,-1.0000000000000000000,0.00319609255930328010,0.00050528783469164196,0.99999476482457505532,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00109131086378510991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +185 ,0 ,-0.1461454331730749900,5.50434089484673982894,0.00000000000000000000,-1.0000000000000000000,0.00248590110635004985,0.00050319916971638999,0.99999678353796994656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00120325309922009009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +186 ,0 ,-0.1044199878017569999,5.49241943813859023748,0.00000000000000000000,-1.0000000000000000000,0.00177567115137571007,0.00050163235869890598,0.99999829767702097527,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00128732337338987993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +187 ,0 ,-0.0626641508886473935,5.48447138461170968781,0.00000000000000000000,-1.0000000000000000000,0.00106541369284174000,0.00050058766927277298,0.99999930715258400493,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00134342433102573998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +188 ,0 ,-0.0208900767777975004,5.48049723311715020201,0.00000000000000000000,-1.0000000000000000000,0.00035513973132561901,0.00050006527992721395,0.99999981190522602148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137149104375566995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +189 ,0 ,0.02089007677779750049,5.48049723311715020201,0.00000000000000000000,-1.0000000000000000000,-0.0003551397313256190,0.00050006527992721395,0.99999981190522602148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137149104375566995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +190 ,0 ,0.06266415088864739357,5.48447138461170968781,0.00000000000000000000,-1.0000000000000000000,-0.0010654136928417400,0.00050058766927277298,0.99999930715258400493,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00134342433102573998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +191 ,0 ,0.10441998780175699990,5.49241943813859023748,0.00000000000000000000,-1.0000000000000000000,-0.0017756711513757100,0.00050163235869890598,0.99999829767702097527,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00128732337338987993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +192 ,0 ,0.14614543317307499004,5.50434089484673982894,0.00000000000000000000,-1.0000000000000000000,-0.0024859011063500498,0.00050319916971638999,0.99999678353796994656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00120325309922009009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +193 ,0 ,0.18782833833834500225,5.52023500663401023302,0.00000000000000000000,-1.0000000000000000000,-0.0031960925593032801,0.00050528783469164196,0.99999476482457505532,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00109131086378510991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +194 ,0 ,0.22945656258125199378,5.54010077636039977022,0.00000000000000000000,-1.0000000000000000000,-0.0039062345147363401,0.00050789799696784898,0.99999224165567401900,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00095162641855495199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +195 ,0 ,0.27101797539782901402,5.56393695813058997146,0.00000000000000000000,-1.0000000000000000000,-0.0046163159809590398,0.00051102921102594300,0.99998921417978803294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00078436185685859494,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +196 ,0 ,-0.2713421433857000075,-5.3906833182254096925,0.00000000000000000000,-1.0000000000000000000,0.00491325571278591975,-0.0004880253954973319,0.99998781080046894587,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065689696168647103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +197 ,0 ,-0.2297485318659359954,-5.4160469562455801906,0.00000000000000000000,-1.0000000000000000000,0.00415751684694948969,-0.0004914247575058540,0.99999123673929002364,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086026403903360904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +198 ,0 ,-0.1880792775549419981,-5.4371860744762496864,0.00000000000000000000,-1.0000000000000000000,0.00340170467656383986,-0.0004942585910493180,0.99999409203941702628,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103009481438220995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +199 ,0 ,-0.1463481118585069906,-5.4540991717419196049,0.00000000000000000000,-1.0000000000000000000,0.00264583252093793979,-0.0004965263336367540,0.99999637650937100996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00116619400432683008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/Cone.rayx.csv b/Intern/RayCore/tests/output/Cone.rayx.csv new file mode 100644 index 000000000..def2a169a --- /dev/null +++ b/Intern/RayCore/tests/output/Cone.rayx.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.2713421433857011177,-5.3906833182260909254,0.00000000000000000000,1.00000000000000000000,0.00491325571278591714,-0.0004880253954975021,0.99998781080046872382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006568969638465,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-0.2297485318659306385,-5.4160469562458857240,0.00000000000000000000,1.00000000000000000000,0.00415751684694949316,-0.0004914247575058800,0.99999123673929013467,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008602640409662,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,-0.1880792775549418871,-5.4371860744766671302,0.00000000000000000000,1.00000000000000000000,0.00340170467656383682,-0.0004942585910492584,0.99999409203941713730,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010300948142685,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,-0.1463481118585067131,-5.4540991717425688634,0.00000000000000000000,1.00000000000000000000,0.00264583252093794196,-0.0004965263336368058,0.99999637650937045485,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011661940043268,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-0.1045687792732651055,-5.4667850465245280133,0.00000000000000000000,1.00000000000000000000,0.00188991370465533994,-0.0004982275349283949,0.99999808999593209346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012684052744589,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-0.0627550344848908092,-5.4752427973497903579,0.00000000000000000000,1.00000000000000000000,0.00113396155640197978,-0.0004993618569670333,0.99999923238416732473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013366113162192,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,-0.0209206394608320508,-5.4794718230722088136,0.00000000000000000000,1.00000000000000000000,0.00037798940779406003,-0.0004999290743511552,0.99999980359744455871,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013707339039683,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,0.02092063946083205089,-5.4794718230722088136,0.00000000000000000000,1.00000000000000000000,-0.0003779894077940600,-0.0004999290743511552,0.99999980359744455871,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013707339039683,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,0.06275503448489080926,-5.4752427973497903579,0.00000000000000000000,1.00000000000000000000,-0.0011339615564019797,-0.0004993618569670333,0.99999923238416732473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013366113162192,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,0.10456877927326514721,-5.4667850465245280133,0.00000000000000000000,1.00000000000000000000,-0.0018899137046553405,-0.0004982275349283949,0.99999808999593209346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012684052744589,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,0.14634811185850671311,-5.4540991717425688634,0.00000000000000000000,1.00000000000000000000,-0.0026458325209379419,-0.0004965263336368058,0.99999637650937045485,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011661940043268,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,0.18807927755494188715,-5.4371860744766671302,0.00000000000000000000,1.00000000000000000000,-0.0034017046765638368,-0.0004942585910492584,0.99999409203941713730,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010300948142685,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,0.22974853186593152676,-5.4160469562458857240,0.00000000000000000000,1.00000000000000000000,-0.0041575168469494931,-0.0004914247575058800,0.99999123673929013467,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008602640409662,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,0.27134214338570111779,-5.3906833182260909254,0.00000000000000000000,1.00000000000000000000,-0.0049132557127859171,-0.0004880253954975021,0.99998781080046872382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006568969638465,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,-0.2713173199352432174,-4.5480444805282695952,0.00000000000000000000,1.00000000000000000000,0.00488906916922249214,-0.0004111803974201091,0.99998796389423549868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002767456044239,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,-0.2297260468793774768,-4.5732837071993781563,0.00000000000000000000,1.00000000000000000000,0.00413704909813639252,-0.0004145576167259873,0.99999135644601522265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004771728199557,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-0.1880598708288429288,-4.5943191089689801032,0.00000000000000000000,1.00000000000000000000,0.00338495682823128059,-0.0004173729791150372,0.99999418391662009408,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006445484614232,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-0.1463323891059847281,-4.6111492066486787777,0.00000000000000000000,1.00000000000000000000,0.00263280547799758660,-0.0004196259323969396,0.99999644611838045538,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007786801106703,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,-0.1045572118691843327,-4.6237728163267233227,0.00000000000000000000,1.00000000000000000000,0.00188060817106635289,-0.0004213160344818981,0.99999814290112842840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008794137174845,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,-0.0627479592674282660,-4.6321890497368247707,0.00000000000000000000,1.00000000000000000000,0.00112837803506677216,-0.0004224429536062167,0.99999927415221678828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009466336996410,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +20 ,0 ,-0.0209182585896710918,-4.6363973145493755367,0.00000000000000000000,1.00000000000000000000,0.00037612820048386669,-0.0004230064684997881,0.99999983979653916943,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009802629665500,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,0 ,0.02091825858967109180,-4.6363973145493755367,0.00000000000000000000,1.00000000000000000000,-0.0003761282004838666,-0.0004230064684997881,0.99999983979653916943,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009802629665500,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,0 ,0.06274795926742826601,-4.6321890497368247707,0.00000000000000000000,1.00000000000000000000,-0.0011283780350667721,-0.0004224429536062167,0.99999927415221678828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009466336996410,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +23 ,0 ,0.10455721186918477683,-4.6237728163267233227,0.00000000000000000000,1.00000000000000000000,-0.0018806081710663528,-0.0004213160344818981,0.99999814290112842840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008794137174845,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +24 ,0 ,0.14633238910598472815,-4.6111492066486787777,0.00000000000000000000,1.00000000000000000000,-0.0026328054779975866,-0.0004196259323969396,0.99999644611838045538,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007786801106703,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,0 ,0.18805987082884292882,-4.5943191089689801032,0.00000000000000000000,1.00000000000000000000,-0.0033849568282312805,-0.0004173729791150372,0.99999418391662009408,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006445484614232,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,0 ,0.22972604687937753231,-4.5732837071993781563,0.00000000000000000000,1.00000000000000000000,-0.0041370490981363933,-0.0004145576167259873,0.99999135644601522265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004771728199557,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +27 ,0 ,0.27131731993524321744,-4.5480444805282695952,0.00000000000000000000,1.00000000000000000000,-0.0048890691692224921,-0.0004111803974201091,0.99998796389423549868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002767456044239,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +28 ,0 ,-0.2712924751998935235,-3.7054014180623213725,0.00000000000000000000,1.00000000000000000000,0.00486511883767329345,-0.0003343344475815921,0.99998810934889226231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999615818487654,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +29 ,0 ,-0.2297035655047712787,-3.7305174476679576756,0.00000000000000000000,1.00000000000000000000,0.00411678126465353424,-0.0003376897930689147,0.99999146900242219526,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001590977699379,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,0 ,-0.1880404818117381859,-3.7514501456625723996,0.00000000000000000000,1.00000000000000000000,0.00336837257673934476,-0.0003404869088144311,0.99999426905100263773,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003240421920054,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,0 ,-0.1463166893130090073,-3.7681980544186797210,0.00000000000000000000,1.00000000000000000000,0.00261990569556062738,-0.0003427252526882221,0.99999650931068118087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004562254962365,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +32 ,0 ,-0.1045456657881929929,-3.7807600072875806596,0.00000000000000000000,1.00000000000000000000,0.00187139354775790831,-0.0003444043906580584,0.99999818963426367890,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005554958770517,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +33 ,0 ,-0.0627408988138799667,-3.7891351289584824790,0.00000000000000000000,1.00000000000000000000,0.00112284906386872756,-0.0003455239970092784,0.99999930991133534341,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006217394384293,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +34 ,0 ,-0.0209158829682253265,-3.7933228357392656526,0.00000000000000000000,1.00000000000000000000,0.00037428517721424335,-0.0003460838545070852,0.99999987006827717461,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006548802157340,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +35 ,0 ,0.02091588296822532652,-3.7933228357392656526,0.00000000000000000000,1.00000000000000000000,-0.0003742851772142433,-0.0003460838545070852,0.99999987006827717461,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006548802157340,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,0 ,0.06274089881387996670,-3.7891351289584824790,0.00000000000000000000,1.00000000000000000000,-0.0011228490638687275,-0.0003455239970092784,0.99999930991133534341,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006217394384293,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,0 ,0.10454566578819279865,-3.7807600072875806596,0.00000000000000000000,1.00000000000000000000,-0.0018713935477579091,-0.0003444043906580584,0.99999818963426367890,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005554958770517,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +38 ,0 ,0.14631668931300900737,-3.7681980544186797210,0.00000000000000000000,1.00000000000000000000,-0.0026199056955606273,-0.0003427252526882221,0.99999650931068118087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004562254962365,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +39 ,0 ,0.18804048181173818599,-3.7514501456625723996,0.00000000000000000000,1.00000000000000000000,-0.0033683725767393447,-0.0003404869088144311,0.99999426905100263773,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003240421920054,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +40 ,0 ,0.22970356550477047385,-3.7305174476679576756,0.00000000000000000000,1.00000000000000000000,-0.0041167812646535359,-0.0003376897930689147,0.99999146900242219526,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001590977699379,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,0 ,0.27129247519989352355,-3.7054014180623213725,0.00000000000000000000,1.00000000000000000000,-0.0048651188376732934,-0.0003343344475815921,0.99998810934889226231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999615818487654,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +42 ,0 ,-0.2712676099223055858,-2.8627541831781502246,0.00000000000000000000,1.00000000000000000000,0.00484140127465699978,-0.0002574875629701477,0.99998824719786205683,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997114071520627,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +43 ,0 ,-0.2296810879515434888,-2.8877482123190958418,0.00000000000000000000,1.00000000000000000000,0.00409671043172186218,-0.0002608212988481165,0.99999157443244901521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999060399350128,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,0 ,-0.1880211103889928847,-2.9085792044710467862,0.00000000000000000000,1.00000000000000000000,0.00335194953654306161,-0.0002636003885524374,0.99999434745859416828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000685767045069,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,0 ,-0.1463010122123264700,-2.9252457231516371116,0.00000000000000000000,1.00000000000000000000,0.00260713131775151211,-0.0002658242997800202,0.99999656609597087353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001988305812119,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,0 ,-0.1045341407439177583,-2.9377466186382963364,0.00000000000000000000,1.00000000000000000000,0.00186226850886256518,-0.0002674926063702516,0.99999823020028688613,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002966519623441,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +47 ,0 ,-0.0627338529142012490,-2.9460810283271179343,0.00000000000000000000,1.00000000000000000000,0.00111737384719054607,-0.0002686049885168914,0.99999933966330467605,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003619286053435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +48 ,0 ,-0.0209135125201104360,-2.9502483769985485828,0.00000000000000000000,1.00000000000000000000,0.00037246007276328608,-0.0002691612329265687,0.99999989441285652702,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003945856442442,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +49 ,0 ,0.02091351252011043604,-2.9502483769985485828,0.00000000000000000000,1.00000000000000000000,-0.0003724600727632860,-0.0002691612329265687,0.99999989441285652702,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003945856442442,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +50 ,0 ,0.06273385291420124909,-2.9460810283271179343,0.00000000000000000000,1.00000000000000000000,-0.0011173738471905460,-0.0002686049885168914,0.99999933966330467605,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003619286053435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +51 ,0 ,0.10453414074391778609,-2.9377466186382963364,0.00000000000000000000,1.00000000000000000000,-0.0018622685088625658,-0.0002674926063702516,0.99999823020028688613,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002966519623441,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,0 ,0.14630101221232647001,-2.9252457231516371116,0.00000000000000000000,1.00000000000000000000,-0.0026071313177515121,-0.0002658242997800202,0.99999656609597087353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001988305812119,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +53 ,0 ,0.18802111038899288475,-2.9085792044710467862,0.00000000000000000000,1.00000000000000000000,-0.0033519495365430616,-0.0002636003885524374,0.99999434745859416828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000685767045069,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +54 ,0 ,0.22968108795154351664,-2.8877482123190958418,0.00000000000000000000,1.00000000000000000000,-0.0040967104317218630,-0.0002608212988481165,0.99999157443244901521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999060399350128,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +55 ,0 ,0.27126760992230558589,-2.8627541831781502246,0.00000000000000000000,1.00000000000000000000,-0.0048414012746569997,-0.0002574875629701477,0.99998824719786205683,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997114071520627,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +56 ,0 ,-0.2712427248224349995,-2.0201028270170455769,0.00000000000000000000,1.00000000000000000000,0.00481791310329166000,-0.0001806397602039664,0.99998837747376145834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995262229494983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +57 ,0 ,-0.2296586144200368495,-2.0449760349563268491,0.00000000000000000000,1.00000000000000000000,0.00407683374094660634,-0.0001839521461105507,0.99999167275945677335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997180003520043,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +58 ,0 ,-0.1880017564454624090,-2.0657063047306820635,0.00000000000000000000,1.00000000000000000000,0.00333568536825113457,-0.0001867134265547797,0.99999441915503706201,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998781526865059,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +59 ,0 ,-0.1462853575405600736,-2.0822922205960301411,0.00000000000000000000,1.00000000000000000000,0.00259448052460506742,-0.0001889230788341390,0.99999661648371462874,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000064957730501,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +60 ,0 ,-0.1045226364550493336,-2.0947326494328648571,0.00000000000000000000,1.00000000000000000000,0.00185323175417021509,-0.0001905806844772969,0.99999826460402807537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001028821752697,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +61 ,0 ,-0.0627268213623166093,-2.1030267410965288732,0.00000000000000000000,1.00000000000000000000,0.00111195160481215144,-0.0001916859294498184,0.99999936340986361749,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001672012640483,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,0 ,-0.0209111471704163144,-2.1071739286770876375,0.00000000000000000000,1.00000000000000000000,0.00037065262704196307,-0.0001922386043095732,0.99999991283047062751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001993792538996,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +63 ,0 ,0.02091114717041631446,-2.1071739286770876375,0.00000000000000000000,1.00000000000000000000,-0.0003706526270419630,-0.0001922386043095732,0.99999991283047062751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001993792538996,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +64 ,0 ,0.06272682136231660932,-2.1030267410965288732,0.00000000000000000000,1.00000000000000000000,-0.0011119516048121514,-0.0001916859294498184,0.99999936340986361749,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001672012640483,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +65 ,0 ,0.10452263645504913935,-2.0947326494328648571,0.00000000000000000000,1.00000000000000000000,-0.0018532317541702157,-0.0001905806844772969,0.99999826460402807537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001028821752697,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +66 ,0 ,0.14628535754056007367,-2.0822922205960301411,0.00000000000000000000,1.00000000000000000000,-0.0025944805246050674,-0.0001889230788341390,0.99999661648371462874,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000064957730501,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,0 ,0.18800175644546240905,-2.0657063047306820635,0.00000000000000000000,1.00000000000000000000,-0.0033356853682511345,-0.0001867134265547797,0.99999441915503706201,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998781526865059,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +68 ,0 ,0.22965861442003684955,-2.0449760349563268491,0.00000000000000000000,1.00000000000000000000,-0.0040768337409466063,-0.0001839521461105507,0.99999167275945677335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997180003520043,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +69 ,0 ,0.27124272482243499959,-2.0201028270170455769,0.00000000000000000000,1.00000000000000000000,-0.0048179131032916600,-0.0001806397602039664,0.99998837747376145834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995262229494983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +70 ,0 ,-0.2712178205982999079,-1.1774473995449312724,0.00000000000000000000,1.00000000000000000000,0.00479465101169264037,-0.0001037910555393852,0.99998850020842366959,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994060306489700,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +71 ,0 ,-0.2296361451018417709,-1.2022009485372084913,0.00000000000000000000,1.00000000000000000000,0.00405714838896052091,-0.0001070823466439647,0.99999176400624456562,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995949800249945,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +72 ,0 ,-0.1879824198654977129,-1.2228314652103446924,0.00000000000000000000,1.00000000000000000000,0.00331957777751519002,-0.0001098260308738347,0.99999448415559855085,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997527708183042,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +73 ,0 ,-0.1462697250381199132,-1.2393375541582951626,0.00000000000000000000,1.00000000000000000000,0.00258195153120222486,-0.0001120215949064952,0.99999666048314994615,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998792214919376,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +74 ,0 ,-0.1045111526452265765,-1.2517180985471436649,0.00000000000000000000,1.00000000000000000000,0.00184428200851044130,-0.0001136686277832788,0.99999829285020080948,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999741867286502,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +75 ,0 ,-0.0627198039560146608,-1.2599722604524794533,0.00000000000000000000,1.00000000000000000000,0.00110658157153998865,-0.0001147668211096955,0.99999938115270925464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000375574909412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +76 ,0 ,-0.0209087868456718645,-1.2640994811160637389,0.00000000000000000000,1.00000000000000000000,0.00036886258497053980,-0.0001153159692054205,0.99999992532130732580,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000692610537953,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +77 ,0 ,0.02090878684567186451,-1.2640994811160637389,0.00000000000000000000,1.00000000000000000000,-0.0003688625849705398,-0.0001153159692054205,0.99999992532130732580,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000692610537953,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +78 ,0 ,0.06271980395601466085,-1.2599722604524794533,0.00000000000000000000,1.00000000000000000000,-0.0011065815715399886,-0.0001147668211096955,0.99999938115270925464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000375574909412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +79 ,0 ,0.10451115264522638226,-1.2517180985471436649,0.00000000000000000000,1.00000000000000000000,-0.0018442820085104421,-0.0001136686277832788,0.99999829285020080948,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999741867286502,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +80 ,0 ,0.14626972503811991321,-1.2393375541582951626,0.00000000000000000000,1.00000000000000000000,-0.0025819515312022248,-0.0001120215949064952,0.99999666048314994615,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998792214919376,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +81 ,0 ,0.18798241986549771298,-1.2228314652103446924,0.00000000000000000000,1.00000000000000000000,-0.0033195777775151900,-0.0001098260308738347,0.99999448415559855085,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997527708183042,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +82 ,0 ,0.22963614510184265915,-1.2022009485372084913,0.00000000000000000000,1.00000000000000000000,-0.0040571483889605209,-0.0001070823466439647,0.99999176400624456562,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995949800249945,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +83 ,0 ,0.27121782059829990796,-1.1774473995449312724,0.00000000000000000000,1.00000000000000000000,-0.0047946510116926403,-0.0001037910555393852,0.99998850020842366959,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994060306489700,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +84 ,0 ,-0.2711928979266722827,-0.3347879495804765292,0.00000000000000000000,1.00000000000000000000,0.00477161175141654816,-0.0000269414648813593,0.99998861543292127951,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993508316401857,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +85 ,0 ,-0.2296136801801048066,-0.3594229852021646465,0.00000000000000000000,1.00000000000000000000,0.00403765162610632191,-0.0000302119119839257,0.99999184819506714561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995369799489708,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +86 ,0 ,-0.1879631005330686110,-0.3799547041293770965,0.00000000000000000000,1.00000000000000000000,0.00330362451395099570,-0.0000329382093923599,0.99999454247518004823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996924317620141,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +87 ,0 ,-0.1462541144491706079,-0.3963817309116931530,0.00000000000000000000,1.00000000000000000000,0.00256954258683049757,-0.0000351198529504242,0.99999669810329361308,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998170081344142,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +88 ,0 ,-0.1044996890429385899,-0.4087029646882464062,0.00000000000000000000,1.00000000000000000000,0.00183541802115268193,-0.0000367564390404332,0.99999831494340596371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999105658262124,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +89 ,0 ,-0.0627128004968602742,-0.4169175795219203783,0.00000000000000000000,1.00000000000000000000,0.00110126299684705432,-0.0000378476647789583,0.99999939289349848436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999729973551438,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +90 ,0 ,-0.0209064314738100290,-0.4210250246507738491,0.00000000000000000000,1.00000000000000000000,0.00036708969635856675,-0.0000383933281612680,0.99999993188555102996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042310421122,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,0 ,0.02090643147381002903,-0.4210250246507738491,0.00000000000000000000,1.00000000000000000000,-0.0003670896963585667,-0.0000383933281612680,0.99999993188555102996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042310421122,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +92 ,0 ,0.06271280049686027424,-0.4169175795219203783,0.00000000000000000000,1.00000000000000000000,-0.0011012629968470543,-0.0000378476647789583,0.99999939289349848436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999729973551438,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +93 ,0 ,0.10449968904293883975,-0.4087029646882464062,0.00000000000000000000,1.00000000000000000000,-0.0018354180211526825,-0.0000367564390404332,0.99999831494340596371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999105658262124,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +94 ,0 ,0.14625411444917060799,-0.3963817309116931530,0.00000000000000000000,1.00000000000000000000,-0.0025695425868304975,-0.0000351198529504242,0.99999669810329361308,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998170081344142,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +95 ,0 ,0.18796310053306861109,-0.3799547041293770965,0.00000000000000000000,1.00000000000000000000,-0.0033036245139509957,-0.0000329382093923599,0.99999454247518004823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996924317620141,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +96 ,0 ,0.22961368018010483438,-0.3594229852021646465,0.00000000000000000000,1.00000000000000000000,-0.0040376516261063227,-0.0000302119119839257,0.99999184819506714561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995369799489708,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +97 ,0 ,0.27119289792667228278,-0.3347879495804765292,0.00000000000000000000,1.00000000000000000000,-0.0047716117514165481,-0.0000269414648813593,0.99998861543292127951,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993508316401857,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +98 ,0 ,-0.2711679574638472534,0.50787547517970554888,0.00000000000000000000,1.00000000000000000000,0.00474879213594945302,0.00004990899620657397,0.99998872317758724648,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993606272728356,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +99 ,0 ,-0.2295912198298393769,0.48335782371776159216,0.00000000000000000000,1.00000000000000000000,0.00401834075515646645,0.00004665914657954548,0.99999192534764946849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995440011007303,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +100 ,0 ,-0.1879437983318197613,0.46292396083103798387,0.00000000000000000000,1.00000000000000000000,0.00328782337009044965,0.00004395003017124635,0.99999459412832891747,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996971361742907,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +101 ,0 ,-0.1462385255215668256,0.44657524239653650921,0.00000000000000000000,1.00000000000000000000,0.00255725197416844206,0.00004178214218000457,0.99999672935294758868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998198560970195,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +102 ,0 ,-0.1044882453814210687,0.43431275360320753531,0.00000000000000000000,1.00000000000000000000,0.00182663856522347046,0.00004015587904972801,0.99999833088813550041,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999120196607691,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +103 ,0 ,-0.0627058107901158345,0.42613730862839643842,0.00000000000000000000,1.00000000000000000000,0.00109599514452313369,0.00003907153827847688,0.99999939863384790239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999735209294158,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +104 ,0 ,-0.0209040809841344633,0.42204945039016700247,0.00000000000000000000,1.00000000000000000000,0.00036533371578828315,0.00003852931827799075,0.99999993252338137406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042892297642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +105 ,0 ,0.02090408098413446338,0.42204945039016700247,0.00000000000000000000,1.00000000000000000000,-0.0003653337157882831,0.00003852931827799075,0.99999993252338137406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042892297642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +106 ,0 ,0.06270581079011583458,0.42613730862839643842,0.00000000000000000000,1.00000000000000000000,-0.0010959951445231336,0.00003907153827847688,0.99999939863384790239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999735209294158,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +107 ,0 ,0.10448824538142086060,0.43431275360320753531,0.00000000000000000000,1.00000000000000000000,-0.0018266385652234711,0.00004015587904972801,0.99999833088813550041,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999120196607691,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +108 ,0 ,0.14623852552156682560,0.44657524239653650921,0.00000000000000000000,1.00000000000000000000,-0.0025572519741684420,0.00004178214218000457,0.99999672935294758868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998198560970195,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +109 ,0 ,0.18794379833181976136,0.46292396083103798387,0.00000000000000000000,1.00000000000000000000,-0.0032878233700904496,0.00004395003017124635,0.99999459412832891747,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996971361742907,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +110 ,0 ,0.22959121982983937693,0.48335782371776159216,0.00000000000000000000,1.00000000000000000000,-0.0040183407551564673,0.00004665914657954548,0.99999192534764946849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995440011007303,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +111 ,0 ,0.27116795746384725340,0.50787547517970554888,0.00000000000000000000,1.00000000000000000000,-0.0047487921359494530,0.00004990899620657397,0.99998872317758724648,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993606272728356,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +112 ,0 ,-0.2711429998461978851,1.35054282813340864599,0.00000000000000000000,1.00000000000000000000,0.00472618903923839074,0.00012676031249381593,0.99998882347203665865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994354188893339,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +113 ,0 ,-0.2295687642182647481,1.32614144767200237140,0.00000000000000000000,1.00000000000000000000,0.00399921313006967524,0.00012353081799485317,0.99999199548520212310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996160444388806,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +114 ,0 ,-0.1879245131451382500,1.30580451251633533615,0.00000000000000000000,1.00000000000000000000,0.00327217218036350262,0.00012083868025856277,0.99999463912924801967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997668846972374,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +115 ,0 ,-0.1462229580067806733,1.28953335933625679032,0.00000000000000000000,1.00000000000000000000,0.00254507800849345213,0.00011868438572817114,0.99999675424070588736,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998877657653792,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +116 ,0 ,-0.1044768213985394628,1.27732905794839668445,0.00000000000000000000,1.00000000000000000000,0.00181794243714035572,0.00011706832383559929,0.99999834068877446746,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999785484469612,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +117 ,0 ,-0.0626988346446431671,1.26919241098924340249,0.00000000000000000000,1.00000000000000000000,0.00109077729233507847,0.00011599078681566498,0.99999939837533680098,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000391282810596,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +118 ,0 ,-0.0209017353072888482,1.26512395368461483258,0.00000000000000000000,1.00000000000000000000,0.00036359440250135984,0.00011545196956926161,0.99999992723497366231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000694356185704,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +119 ,0 ,0.02090173530728884829,1.26512395368461483258,0.00000000000000000000,1.00000000000000000000,-0.0003635944025013598,0.00011545196956926161,0.99999992723497366231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000694356185704,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +120 ,0 ,0.06269883464464316713,1.26919241098924340249,0.00000000000000000000,1.00000000000000000000,-0.0010907772923350784,0.00011599078681566498,0.99999939837533680098,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000391282810596,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +121 ,0 ,0.10447682139853946281,1.27732905794839668445,0.00000000000000000000,1.00000000000000000000,-0.0018179424371403563,0.00011706832383559929,0.99999834068877446746,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999785484469612,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +122 ,0 ,0.14622295800678067334,1.28953335933625679032,0.00000000000000000000,1.00000000000000000000,-0.0025450780084934521,0.00011868438572817114,0.99999675424070588736,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998877657653792,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +123 ,0 ,0.18792451314513825000,1.30580451251633533615,0.00000000000000000000,1.00000000000000000000,-0.0032721721803635026,0.00012083868025856277,0.99999463912924801967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997668846972374,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +124 ,0 ,0.22956876421826388767,1.32614144767200237140,0.00000000000000000000,1.00000000000000000000,-0.0039992131300696769,0.00012353081799485317,0.99999199548520212310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996160444388806,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +125 ,0 ,0.27114299984619788519,1.35054282813340864599,0.00000000000000000000,1.00000000000000000000,-0.0047261890392383907,0.00012676031249381593,0.99998882347203665865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994354188893339,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +126 ,0 ,-0.2711180256908776176,2.19321406374725524912,0.00000000000000000000,1.00000000000000000000,0.00470379939426426689,0.00020361246907339385,0.99998891634518660698,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995752078048099,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +127 ,0 ,-0.2295463135050568592,2.16892785687802280847,0.00000000000000000000,1.00000000000000000000,0.00398026615478243740,0.00020040309144291423,0.99999205862843609793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997531109074770,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +128 ,0 ,-0.1879052448562122390,2.14868693428379708976,0.00000000000000000000,1.00000000000000000000,0.00325666882010882188,0.00019772773346730124,0.99999467749180515063,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999016779693192,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +129 ,0 ,-0.1462074116598500728,2.13249261379120591541,0.00000000000000000000,1.00000000000000000000,0.00253301903691187987,0.00019558687303157756,0.99999677277495913063,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000207375360332,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +130 ,0 ,-0.1044654168367173535,2.12034595012851312390,0.00000000000000000000,1.00000000000000000000,0.00180932845606178904,0.00019398089271396523,0.99999834434960499507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001101523721445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +131 ,0 ,-0.0626918718728270013,2.11224773461259118789,0.00000000000000000000,1.00000000000000000000,0.00108560873169666078,0.00019291007960425064,0.99999939211950650275,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001698194919299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +132 ,0 ,-0.0208993943752221744,2.10819849491656130524,0.00000000000000000000,1.00000000000000000000,0.00036187152028883501,0.00019237462517111535,0.99999991602049942418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001996702267206,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +133 ,0 ,0.02089939437522217446,2.10819849491656130524,0.00000000000000000000,1.00000000000000000000,-0.0003618715202888350,0.00019237462517111535,0.99999991602049942418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001996702267206,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +134 ,0 ,0.06269187187282700135,2.11224773461259118789,0.00000000000000000000,1.00000000000000000000,-0.0010856087316966607,0.00019291007960425064,0.99999939211950650275,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001698194919299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +135 ,0 ,0.10446541683671757561,2.12034595012851312390,0.00000000000000000000,1.00000000000000000000,-0.0018093284560617892,0.00019398089271396523,0.99999834434960499507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001101523721445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +136 ,0 ,0.14620741165985007281,2.13249261379120591541,0.00000000000000000000,1.00000000000000000000,-0.0025330190369118798,0.00019558687303157756,0.99999677277495913063,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000207375360332,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +137 ,0 ,0.18790524485621223904,2.14868693428379708976,0.00000000000000000000,1.00000000000000000000,-0.0032566688201088218,0.00019772773346730124,0.99999467749180515063,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999016779693192,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +138 ,0 ,0.22954631350505685927,2.16892785687802280847,0.00000000000000000000,1.00000000000000000000,-0.0039802661547824374,0.00020040309144291423,0.99999205862843609793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997531109074770,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +139 ,0 ,0.27111802569087761760,2.19321406374725524912,0.00000000000000000000,1.00000000000000000000,-0.0047037993942642668,0.00020361246907339385,0.99998891634518660698,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995752078048099,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +140 ,0 ,-0.2710930355964913940,3.03588913752935329881,0.00000000000000000000,1.00000000000000000000,0.00468162019165506339,0.00028046545135299055,0.99998900182527572511,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997799952980130,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +141 ,0 ,-0.2295238678426358702,3.01171702230029714186,0.00000000000000000000,1.00000000000000000000,0.00396149728203482303,0.00027727595633059197,0.99999211479757577070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999552014360233,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +142 ,0 ,-0.1878859933480905575,2.99157120999310244258,0.00000000000000000000,1.00000000000000000000,0.00324131120461245520,0.00027461718254654846,0.99999470922954258877,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001015166108118,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +143 ,0 ,-0.1461918862393201123,2.97545299994436662771,0.00000000000000000000,1.00000000000000000000,0.00252107343761097868,0.00027248959951992317,0.99999678496390165260,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002187717818742,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +144 ,0 ,-0.1044540314428023392,2.96336343207751884420,0.00000000000000000000,1.00000000000000000000,0.00180079546335261192,0.00027089358312807547,0.99999834187480807212,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003068316309509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +145 ,0 ,-0.0626849222904931752,2.95530328660009811159,0.00000000000000000000,1.00000000000000000000,0.00108048876734778091,0.00026982941543183619,0.99999937986786258115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003655946256913,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +146 ,0 ,-0.0208970581211611987,2.95127308377568775554,0.00000000000000000000,1.00000000000000000000,0.00036016483738417366,0.00026929728454443921,0.99999989888012585925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003949930523958,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +147 ,0 ,0.02089705812116119873,2.95127308377568775554,0.00000000000000000000,1.00000000000000000000,-0.0003601648373841736,0.00026929728454443921,0.99999989888012585925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003949930523958,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +148 ,0 ,0.06268492229049317521,2.95530328660009811159,0.00000000000000000000,1.00000000000000000000,-0.0010804887673477809,0.00026982941543183619,0.99999937986786258115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003655946256913,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +149 ,0 ,0.10445403144280211715,2.96336343207751884420,0.00000000000000000000,1.00000000000000000000,-0.0018007954633526127,0.00027089358312807547,0.99999834187480807212,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003068316309509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +150 ,0 ,0.14619188623932011239,2.97545299994436662771,0.00000000000000000000,1.00000000000000000000,-0.0025210734376109786,0.00027248959951992317,0.99999678496390165260,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002187717818742,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +151 ,0 ,0.18788599334809055751,2.99157120999310244258,0.00000000000000000000,1.00000000000000000000,-0.0032413112046124552,0.00027461718254654846,0.99999470922954258877,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001015166108118,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +152 ,0 ,0.22952386784263587027,3.01171702230029714186,0.00000000000000000000,1.00000000000000000000,-0.0039614972820348239,0.00027727595633059197,0.99999211479757577070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999552014360233,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +153 ,0 ,0.27109303559649139403,3.03588913752935329881,0.00000000000000000000,1.00000000000000000000,-0.0046816201916550633,0.00028046545135299055,0.99998900182527572511,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997799952980130,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +154 ,0 ,-0.2710680301435713923,3.87856800600898621311,0.00000000000000000000,1.00000000000000000000,0.00465964847833793237,0.00035731924504778250,0.99998907993988372933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000497826440550,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +155 ,0 ,-0.2295014273764565126,3.85450891563329678390,0.00000000000000000000,1.00000000000000000000,0.00394290401222902216,0.00035414940228513727,0.99999216401237411844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002223169340140,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +156 ,0 ,-0.1878667585037630538,3.83445732399266603351,0.00000000000000000000,1.00000000000000000000,0.00322609728817338384,0.00035150702039336595,0.99999473435568730916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003664012383524,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +157 ,0 ,-0.1461763815071913663,3.81841451227713513105,0.00000000000000000000,1.00000000000000000000,0.00250923961913174535,0.00034939256071204918,0.99999679081553660697,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004818688757950,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +158 ,0 ,-0.1044426649680022661,3.80638150588199497548,0.00000000000000000000,1.00000000000000000000,0.00179234232206445945,0.00034780639256736764,0.99999833326846776504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005685864216502,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +159 ,0 ,-0.0626779857168343751,3.79835907411187978510,0.00000000000000000000,1.00000000000000000000,0.00107541671704262974,0.00034674879310279081,0.99999936162187563759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006264537587412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +160 ,0 ,-0.0208947264795778485,3.79434772996007785295,0.00000000000000000000,1.00000000000000000000,0.00035847412635930708,0.00034621994715169191,0.99999987581401661440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006554041228810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +161 ,0 ,0.02089472647957784853,3.79434772996007785295,0.00000000000000000000,1.00000000000000000000,-0.0003584741263593070,0.00034621994715169191,0.99999987581401661440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006554041228810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +162 ,0 ,0.06267798571683437514,3.79835907411187978510,0.00000000000000000000,1.00000000000000000000,-0.0010754167170426297,0.00034674879310279081,0.99999936162187563759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006264537587412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +163 ,0 ,0.10444266496800204413,3.80638150588199497548,0.00000000000000000000,1.00000000000000000000,-0.0017923423220644601,0.00034780639256736764,0.99999833326846776504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005685864216502,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +164 ,0 ,0.14617638150719136636,3.81841451227713513105,0.00000000000000000000,1.00000000000000000000,-0.0025092396191317453,0.00034939256071204918,0.99999679081553660697,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004818688757950,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +165 ,0 ,0.18786675850376305385,3.83445732399266603351,0.00000000000000000000,1.00000000000000000000,-0.0032260972881733838,0.00035150702039336595,0.99999473435568730916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003664012383524,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +166 ,0 ,0.22950142737645651269,3.85450891563329678390,0.00000000000000000000,1.00000000000000000000,-0.0039429040122290221,0.00035414940228513727,0.99999216401237411844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002223169340140,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +167 ,0 ,0.27106803014357139236,3.87856800600898621311,0.00000000000000000000,1.00000000000000000000,-0.0046596484783379323,0.00035731924504778250,0.99998907993988372933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000497826440550,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +168 ,0 ,-0.2710430098952623656,4.72125062671126727309,0.00000000000000000000,1.00000000000000000000,0.00463788135622887533,0.00043417383617081432,0.99998915071594918213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003845710907626,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +169 ,0 ,-0.2294789922452536712,4.69730350928453610492,0.00000000000000000000,1.00000000000000000000,0.00392448389231987888,0.00043102341914751996,0.99999220629212437483,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005544583000300,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +170 ,0 ,-0.1878475402061829113,4.67734526110882065097,0.00000000000000000000,1.00000000000000000000,0.00321102506319523826,0.00042839724004827413,0.99999475288315786691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006963324576645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +171 ,0 ,-0.1461608972288671315,4.66137714556063098569,0.00000000000000000000,1.00000000000000000000,0.00249751601966215555,0.00042629575221373301,0.99999679033768029690,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008100291943264,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +172 ,0 ,-0.1044313171677766771,4.64940017377633640904,0.00000000000000000000,1.00000000000000000000,0.00178396791643075313,0.00042471931856531995,0.99999831853457299413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008954169425123,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +173 ,0 ,-0.0626710619743217761,4.64141510436080206858,0.00000000000000000000,1.00000000000000000000,0.00107039191124662651,0.00042366821143778317,0.99999933738298163454,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009523969711153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +174 ,0 ,-0.0208923993861642107,4.63742244317082352722,0.00000000000000000000,1.00000000000000000000,0.00035679916402360094,0.00042314261245714624,0.99999984682233122867,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009809034472709,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +175 ,0 ,0.02089239938616421071,4.63742244317082352722,0.00000000000000000000,1.00000000000000000000,-0.0003567991640236009,0.00042314261245714624,0.99999984682233122867,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009809034472709,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +176 ,0 ,0.06267106197432177616,4.64141510436080206858,0.00000000000000000000,1.00000000000000000000,-0.0010703919112466265,0.00042366821143778317,0.99999933738298163454,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009523969711153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +177 ,0 ,0.10443131716777689921,4.64940017377633640904,0.00000000000000000000,1.00000000000000000000,-0.0017839679164307535,0.00042471931856531995,0.99999831853457299413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008954169425123,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +178 ,0 ,0.14616089722886713153,4.66137714556063098569,0.00000000000000000000,1.00000000000000000000,-0.0024975160196621555,0.00042629575221373301,0.99999679033768029690,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008100291943264,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +179 ,0 ,0.18784754020618291137,4.67734526110882065097,0.00000000000000000000,1.00000000000000000000,-0.0032110250631952382,0.00042839724004827413,0.99999475288315786691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006963324576645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +180 ,0 ,0.22947899224525367123,4.69730350928453610492,0.00000000000000000000,1.00000000000000000000,-0.0039244838923198797,0.00043102341914751996,0.99999220629212437483,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005544583000300,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +181 ,0 ,0.27104300989526236564,4.72125062671126727309,0.00000000000000000000,1.00000000000000000000,-0.0046378813562288753,0.00043417383617081432,0.99998915071594918213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003845710907626,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +182 ,0 ,-0.2710179753978296801,5.56393695813002953087,0.00000000000000000000,1.00000000000000000000,0.00461631598095904940,0.00051102921102592479,0.99998921417978769987,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007843618586775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +183 ,0 ,-0.2294565625812482190,5.54010077636063069661,0.00000000000000000000,1.00000000000000000000,0.00390623451473634140,0.00050789799696800933,0.99999224165567424105,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009516264181002,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +184 ,0 ,-0.1878283383383415883,5.52023500663407595823,0.00000000000000000000,1.00000000000000000000,0.00319609255930328401,0.00050528783469173802,0.99999476482457450021,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010913108635577,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +185 ,0 ,-0.1461454331730737132,5.50434089484661015490,0.00000000000000000000,1.00000000000000000000,0.00248590110635004855,0.00050319916971648269,0.99999678353796961349,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012032530994474,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +186 ,0 ,-0.1044199878017561256,5.49241943813912847360,0.00000000000000000000,1.00000000000000000000,0.00177567115137570747,0.00050163235869894317,0.99999829767702042015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012873233736172,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +187 ,0 ,-0.0626641508886448955,5.48447138461175676127,0.00000000000000000000,1.00000000000000000000,0.00106541369284174217,0.00050058766927285548,0.99999930715258400493,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013434243319352,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +188 ,0 ,-0.0208900767777976045,5.48049723311681091786,0.00000000000000000000,1.00000000000000000000,0.00035513973132561923,0.00050006527992727445,0.99999981190522568841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013714910401176,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +189 ,0 ,0.02089007677779760457,5.48049723311681091786,0.00000000000000000000,1.00000000000000000000,-0.0003551397313256192,0.00050006527992727445,0.99999981190522568841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013714910401176,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +190 ,0 ,0.06266415088864489557,5.48447138461175676127,0.00000000000000000000,1.00000000000000000000,-0.0010654136928417421,0.00050058766927285548,0.99999930715258400493,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013434243319352,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +191 ,0 ,0.10441998780175656968,5.49241943813912847360,0.00000000000000000000,1.00000000000000000000,-0.0017756711513757076,0.00050163235869894317,0.99999829767702042015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012873233736172,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +192 ,0 ,0.14614543317307371328,5.50434089484661015490,0.00000000000000000000,1.00000000000000000000,-0.0024859011063500485,0.00050319916971648269,0.99999678353796961349,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012032530994474,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +193 ,0 ,0.18782833833834158832,5.52023500663407595823,0.00000000000000000000,1.00000000000000000000,-0.0031960925593032840,0.00050528783469173802,0.99999476482457450021,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010913108635577,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +194 ,0 ,0.22945656258124821902,5.54010077636063069661,0.00000000000000000000,1.00000000000000000000,-0.0039062345147363422,0.00050789799696800933,0.99999224165567424105,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009516264181002,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +195 ,0 ,0.27101797539782968016,5.56393695813002953087,0.00000000000000000000,1.00000000000000000000,-0.0046163159809590494,0.00051102921102592479,0.99998921417978769987,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007843618586775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +196 ,0 ,-0.2713421433857011177,-5.3906833182260909254,0.00000000000000000000,1.00000000000000000000,0.00491325571278591714,-0.0004880253954975021,0.99998781080046872382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006568969638465,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +197 ,0 ,-0.2297485318659306385,-5.4160469562458857240,0.00000000000000000000,1.00000000000000000000,0.00415751684694949316,-0.0004914247575058800,0.99999123673929013467,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008602640409662,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +198 ,0 ,-0.1880792775549418871,-5.4371860744766671302,0.00000000000000000000,1.00000000000000000000,0.00340170467656383682,-0.0004942585910492584,0.99999409203941713730,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010300948142685,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +199 ,0 ,-0.1463481118585067131,-5.4540991717425688634,0.00000000000000000000,1.00000000000000000000,0.00264583252093794196,-0.0004965263336368058,0.99999637650937045485,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011661940043268,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/CylinderDefault.rayui.csv b/Intern/RayCore/tests/output/CylinderDefault.rayui.csv new file mode 100644 index 000000000..903ce3988 --- /dev/null +++ b/Intern/RayCore/tests/output/CylinderDefault.rayui.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-5.5324996004110502667,-0.1052689433323930057,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,0.00495130793916306963,0.99998761719822104598,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103415551279795008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-4.6813457055822800256,-0.1052689360067270013,0.00000000000000000000,-1.0000000000000000000,-0.0004230768575709329,0.00495130793932834975,0.99998765270160294704,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00064362304453879904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,-3.8301918658285800667,-0.1052689299020110047,0.00000000000000000000,-1.0000000000000000000,-0.0003461537959717820,0.00495130793946596970,0.99998768228775603006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031817933813727000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,-2.9790380711363098065,-0.1052689250183270058,0.00000000000000000000,-1.0000000000000000000,-0.0002692307323243830,0.00495130793957607000,0.99998770595667796357,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005782438404366989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-2.1278843114918197798,-0.1052689213555210029,0.00000000000000000000,-1.0000000000000000000,-0.0001923076670839029,0.00495130793965892039,0.99998772370836996881,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001374418228579090,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-1.2767305768814400934,-0.1052689189135460057,0.00000000000000000000,-1.0000000000000000000,-0.0001153846007055080,0.00495130793971348959,0.99998773554283104658,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002676192932540289,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,-0.4255768572915389902,-0.1052689176926659975,0.00000000000000000000,-1.0000000000000000000,-0.0000384615336443635,0.00495130793974133016,0.99998774146006197405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003327080266899429,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,0.42557685729153899023,-0.1052689176926659975,0.00000000000000000000,-1.0000000000000000000,0.00003846153364436359,0.00495130793974133016,0.99998774146006197405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003327080266899429,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,1.27673057688144009347,-0.1052689189135460057,0.00000000000000000000,-1.0000000000000000000,0.00011538460070550800,0.00495130793971348959,0.99998773554283104658,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002676192932540289,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,2.12788431149181977986,-0.1052689213555210029,0.00000000000000000000,-1.0000000000000000000,0.00019230766708390299,0.00495130793965892039,0.99998772370836996881,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001374418228579090,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,2.97903807113630980651,-0.1052689250183270058,0.00000000000000000000,-1.0000000000000000000,0.00026923073232438301,0.00495130793957607000,0.99998770595667796357,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005782438404366989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,3.83019186582858006673,-0.1052689299020110047,0.00000000000000000000,-1.0000000000000000000,0.00034615379597178200,0.00495130793946596970,0.99998768228775603006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031817933813727000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,4.68134570558228002568,-0.1052689360067270013,0.00000000000000000000,-1.0000000000000000000,0.00042307685757093298,0.00495130793932834975,0.99998765270160294704,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00064362304453879904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,5.53249960041105026675,-0.1052689433323930057,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,0.00495130793916306963,0.99998761719822104598,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103415551279795008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,-5.5324998626028198955,-0.0757501133801463943,0.00000000000000000000,-1.0000000000000000000,-0.0004999999344181489,0.00419300807627904018,0.99999108430192396035,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00116800652608616993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,-4.6813459274368298679,-0.0757501081224827010,0.00000000000000000000,-1.0000000000000000000,-0.0004230768725914139,0.00419300807629780034,0.99999111980518695652,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00077747401223859902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-3.8301920473459301064,-0.0757501037411465044,0.00000000000000000000,-1.0000000000000000000,-0.0003461538082612659,0.00419300807631379016,0.99999114939124000844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045203026809303997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-2.9790382123164600436,-0.0757501002359930036,0.00000000000000000000,-1.0000000000000000000,-0.0002692307418828710,0.00419300807632641981,0.99999117306008200589,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019167528205343798,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,-2.1278844123347702144,-0.0757500976071971976,0.00000000000000000000,-1.0000000000000000000,-0.0001923076739113949,0.00419300807633624008,0.99999119081171394807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000035909488360630,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,-1.2767306373872100433,-0.0757500958546479946,0.00000000000000000000,-1.0000000000000000000,-0.0001153846048020029,0.00419300807634215028,0.99999120264613594599,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001337684327609170,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +20 ,0 ,-0.4255768774601290105,-0.0757500949782752008,0.00000000000000000000,-1.0000000000000000000,-0.0000384615350098619,0.00419300807634561973,0.99999120856334600127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001988571727906670,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +21 ,0 ,0.42557687746012901053,-0.0757500949782752008,0.00000000000000000000,-1.0000000000000000000,0.00003846153500986199,0.00419300807634561973,0.99999120856334600127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001988571727906670,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +22 ,0 ,1.27673063738721004334,-0.0757500958546479946,0.00000000000000000000,-1.0000000000000000000,0.00011538460480200299,0.00419300807634215028,0.99999120264613594599,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001337684327609170,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +23 ,0 ,2.12788441233477998437,-0.0757500976071971976,0.00000000000000000000,-1.0000000000000000000,0.00019230767391139499,0.00419300807633624008,0.99999119081171394807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000035909488360630,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +24 ,0 ,2.97903821231646004363,-0.0757501002359930036,0.00000000000000000000,-1.0000000000000000000,0.00026923074188287102,0.00419300807632641981,0.99999117306008200589,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019167528205343798,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +25 ,0 ,3.83019204734593010641,-0.0757501037411465044,0.00000000000000000000,-1.0000000000000000000,0.00034615380826126599,0.00419300807631379016,0.99999114939124000844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045203026809303997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +26 ,0 ,4.68134592743682986792,-0.0757501081224827010,0.00000000000000000000,-1.0000000000000000000,0.00042307687259141398,0.00419300807629780034,0.99999111980518695652,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00077747401223859902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +27 ,0 ,5.53249986260281989558,-0.0757501133801463943,0.00000000000000000000,-1.0000000000000000000,0.00049999993441814897,0.00419300807627904018,0.99999108430192396035,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00116800652608616993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +28 ,0 ,-5.5325000719977399654,-0.0510410209630424993,0.00000000000000000000,-1.0000000000000000000,-0.0004999999492110469,0.00343346763726595999,0.99999398063190103602,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00126135257630721991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +29 ,0 ,-4.6813461046171296331,-0.0510410174348363970,0.00000000000000000000,-1.0000000000000000000,-0.0004230768851084819,0.00343346763718202019,0.99999401613506300190,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087082002528404700,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +30 ,0 ,-3.8301921923116197810,-0.0510410144947534977,0.00000000000000000000,-1.0000000000000000000,-0.0003461538185025039,0.00343346763711208004,0.99999404572103300914,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054537624885142598,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +31 ,0 ,-2.9790383250675400717,-0.0510410121427104998,0.00000000000000000000,-1.0000000000000000000,-0.0002692307498482780,0.00343346763705629004,0.99999406938980794912,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00028502124064289102,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +32 ,0 ,-2.1278844928712601358,-0.0510410103786202995,0.00000000000000000000,-1.0000000000000000000,-0.0001923076796009709,0.00343346763701409983,0.99999408714139004228,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008975499179086909,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +33 ,0 ,-1.2767306857091000882,-0.0510410092025423978,0.00000000000000000000,-1.0000000000000000000,-0.0001153846082157489,0.00343346763698634989,0.99999409897577795636,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000404225057764052,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +34 ,0 ,-0.4255768935674250075,-0.0510410086145189970,0.00000000000000000000,-1.0000000000000000000,-0.0000384615361477773,0.00343346763697225006,0.99999410489297202442,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001055112523999920,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +35 ,0 ,0.42557689356742500752,-0.0510410086145189970,0.00000000000000000000,-1.0000000000000000000,0.00003846153614777730,0.00343346763697225006,0.99999410489297202442,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001055112523999920,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +36 ,0 ,1.27673068570910008823,-0.0510410092025423978,0.00000000000000000000,-1.0000000000000000000,0.00011538460821574899,0.00343346763698634989,0.99999409897577795636,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000404225057764052,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +37 ,0 ,2.12788449287126013587,-0.0510410103786202995,0.00000000000000000000,-1.0000000000000000000,0.00019230767960097099,0.00343346763701409983,0.99999408714139004228,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008975499179086909,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +38 ,0 ,2.97903832506754007170,-0.0510410121427104998,0.00000000000000000000,-1.0000000000000000000,0.00026923074984827800,0.00343346763705629004,0.99999406938980794912,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00028502124064289102,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +39 ,0 ,3.83019219231161978100,-0.0510410144947534977,0.00000000000000000000,-1.0000000000000000000,0.00034615381850250397,0.00343346763711208004,0.99999404572103300914,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054537624885142598,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +40 ,0 ,4.68134610461712963314,-0.0510410174348363970,0.00000000000000000000,-1.0000000000000000000,0.00042307688510848199,0.00343346763718202019,0.99999401613506300190,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087082002528404700,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +41 ,0 ,5.53250007199773996546,-0.0510410209630424993,0.00000000000000000000,-1.0000000000000000000,0.00049999994921104699,0.00343346763726595999,0.99999398063190103602,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00126135257630721991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +42 ,0 ,-5.5325002321981200381,-0.0311649353066715990,0.00000000000000000000,-1.0000000000000000000,-0.0004999999610453660,0.00267267983458408008,0.99999630338443801225,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00132139828815524998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +43 ,0 ,-4.6813462401712797600,-0.0311649331670986982,0.00000000000000000000,-1.0000000000000000000,-0.0004230768951221369,0.00267267983444107988,0.99999633888752004207,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00093086570768719000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +44 ,0 ,-3.8301923032195501761,-0.0311649313842643008,0.00000000000000000000,-1.0000000000000000000,-0.0003461538266954939,0.00267267983432161989,0.99999636847342199263,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060542191124568500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +45 ,0 ,-2.9790384113292600609,-0.0311649299579160009,0.00000000000000000000,-1.0000000000000000000,-0.0002692307562206040,0.00267267983422620012,0.99999639214214297577,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00034506688359670100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +46 ,0 ,-2.1278845544867701633,-0.0311649288881135008,0.00000000000000000000,-1.0000000000000000000,-0.0001923076841526319,0.00267267983415458987,0.99999640989368498988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014980062189806601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +47 ,0 ,-1.2767307226784099238,-0.0311649281749368997,0.00000000000000000000,-1.0000000000000000000,-0.0001153846109467459,0.00267267983410688020,0.99999642172804603656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001962311523584500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +48 ,0 ,-0.4255769058905259916,-0.0311649278183367996,0.00000000000000000000,-1.0000000000000000000,-0.0000384615370581095,0.00267267983408295013,0.99999642764522600479,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000454656357078419,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +49 ,0 ,0.42557690589052599161,-0.0311649278183367996,0.00000000000000000000,-1.0000000000000000000,0.00003846153705810950,0.00267267983408295013,0.99999642764522600479,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000454656357078419,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +50 ,0 ,1.27673072267840992388,-0.0311649281749368997,0.00000000000000000000,-1.0000000000000000000,0.00011538461094674599,0.00267267983410688020,0.99999642172804603656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001962311523584500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +51 ,0 ,2.12788455448677016335,-0.0311649288881135008,0.00000000000000000000,-1.0000000000000000000,0.00019230768415263299,0.00267267983415458987,0.99999640989368498988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014980062189806601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +52 ,0 ,2.97903841132926006096,-0.0311649299579160009,0.00000000000000000000,-1.0000000000000000000,0.00026923075622060400,0.00267267983422620012,0.99999639214214297577,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00034506688359670100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +53 ,0 ,3.83019230321955017615,-0.0311649313842643008,0.00000000000000000000,-1.0000000000000000000,0.00034615382669549399,0.00267267983432161989,0.99999636847342199263,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060542191124568500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +54 ,0 ,4.68134624017127976003,-0.0311649331670986982,0.00000000000000000000,-1.0000000000000000000,0.00042307689512213698,0.00267267983444107988,0.99999633888752004207,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00093086570768719000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +55 ,0 ,5.53250023219812003816,-0.0311649353066715990,0.00000000000000000000,-1.0000000000000000000,0.00049999996104536600,0.00267267983458408008,0.99999630338443801225,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00132139828815524998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +56 ,0 ,-5.5325003468415001606,-0.0161453579272319014,0.00000000000000000000,-1.0000000000000000000,-0.0004999999699211050,0.00191063781544259991,0.99999804972968198146,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00135541876113620999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +57 ,0 ,-4.6813463371772101595,-0.0161453568329858986,0.00000000000000000000,-1.0000000000000000000,-0.0004230769026323780,0.00191063781528439009,0.99999808523270294902,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00096488616350143296,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +58 ,0 ,-3.8301923825880299645,-0.0161453559210881988,0.00000000000000000000,-1.0000000000000000000,-0.0003461538328402370,0.00191063781515204999,0.99999811481855505057,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00063944235239432600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +59 ,0 ,-2.9790384730602998963,-0.0161453551916182005,0.00000000000000000000,-1.0000000000000000000,-0.0002692307609998480,0.00191063781504637996,0.99999813848723595466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00037908731314928402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +60 ,0 ,-2.1278845985803598317,-0.0161453546444502993,0.00000000000000000000,-1.0000000000000000000,-0.0001923076875663780,0.00191063781496736005,0.99999815623874699355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018382103792191598,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +61 ,0 ,-1.2767307491345600833,-0.0161453542797934009,0.00000000000000000000,-1.0000000000000000000,-0.0001153846129949930,0.00191063781491413006,0.99999816807308694599,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005364352716696889,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +62 ,0 ,-0.4255769147092450244,-0.0161453540973221995,0.00000000000000000000,-1.0000000000000000000,-0.0000384615377408587,0.00191063781488789996,0.99999817399025803243,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000114452271873233,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +63 ,0 ,0.42557691470924502441,-0.0161453540973221995,0.00000000000000000000,-1.0000000000000000000,0.00003846153774085870,0.00191063781488789996,0.99999817399025803243,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000114452271873233,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +64 ,0 ,1.27673074913456008339,-0.0161453542797934009,0.00000000000000000000,-1.0000000000000000000,0.00011538461299499300,0.00191063781491413006,0.99999816807308694599,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005364352716696889,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +65 ,0 ,2.12788459858035983174,-0.0161453546444502993,0.00000000000000000000,-1.0000000000000000000,0.00019230768756637800,0.00191063781496736005,0.99999815623874699355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018382103792191598,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +66 ,0 ,2.97903847306029989638,-0.0161453551916182005,0.00000000000000000000,-1.0000000000000000000,0.00026923076099984801,0.00191063781504637996,0.99999813848723595466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00037908731314928402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +67 ,0 ,3.83019238258802996455,-0.0161453559210881988,0.00000000000000000000,-1.0000000000000000000,0.00034615383284023701,0.00191063781515204999,0.99999811481855505057,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00063944235239432600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +68 ,0 ,4.68134633717721015955,-0.0161453568329858986,0.00000000000000000000,-1.0000000000000000000,0.00042307690263237800,0.00191063781528439009,0.99999808523270294902,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00096488616350143296,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +69 ,0 ,5.53250034684150016062,-0.0161453579272319014,0.00000000000000000000,-1.0000000000000000000,0.00049999996992110501,0.00191063781544259991,0.99999804972968198146,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00135541876113620999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +70 ,0 ,-5.5325004196011695611,-0.0060060257764416001,0.00000000000000000000,-1.0000000000000000000,-0.0004999999758382650,0.00114733466092053993,0.99999921681129300132,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137076057922059005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +71 ,0 ,-4.6813463987430798951,-0.0060060253816098798,0.00000000000000000000,-1.0000000000000000000,-0.0004230769076392049,0.00114733466079128005,0.99999925231427300165,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098022796976238190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +72 ,0 ,-3.8301924329601000351,-0.0060060250524556196,0.00000000000000000000,-1.0000000000000000000,-0.0003461538369367320,0.00114733466068415003,0.99999928190009101935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065478414796871198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +73 ,0 ,-2.9790385122385698579,-0.0060060247892508300,0.00000000000000000000,-1.0000000000000000000,-0.0002692307641860109,0.00114733466059830009,0.99999930556874494502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039442909985609698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +74 ,0 ,-2.1278846265648398983,-0.0060060245917388198,0.00000000000000000000,-1.0000000000000000000,-0.0001923076898422090,0.00114733466053376989,0.99999932332023500070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019916282167287100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +75 ,0 ,-1.2767307659252500329,-0.0060060244601718403,0.00000000000000000000,-1.0000000000000000000,-0.0001153846143604919,0.00114733466049060997,0.99999933515456296273,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006898530864418719,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +76 ,0 ,-0.4255769203061410266,-0.0060060243942809997,0.00000000000000000000,-1.0000000000000000000,-0.0000384615381960247,0.00114733466046910005,0.99999934107172594455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000389655042454251,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +77 ,0 ,0.42557692030614102662,-0.0060060243942809997,0.00000000000000000000,-1.0000000000000000000,0.00003846153819602479,0.00114733466046910005,0.99999934107172594455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000389655042454251,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +78 ,0 ,1.27673076592525003292,-0.0060060244601718403,0.00000000000000000000,-1.0000000000000000000,0.00011538461436049199,0.00114733466049060997,0.99999933515456296273,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006898530864418719,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +79 ,0 ,2.12788462656483989832,-0.0060060245917388198,0.00000000000000000000,-1.0000000000000000000,0.00019230768984220900,0.00114733466053376989,0.99999932332023500070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019916282167287100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +80 ,0 ,2.97903851223856985797,-0.0060060247892508300,0.00000000000000000000,-1.0000000000000000000,0.00026923076418601098,0.00114733466059830009,0.99999930556874494502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039442909985609698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +81 ,0 ,3.83019243296010003518,-0.0060060250524556196,0.00000000000000000000,-1.0000000000000000000,0.00034615383693673202,0.00114733466068415003,0.99999928190009101935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065478414796871198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +82 ,0 ,4.68134639874307989515,-0.0060060253816098798,0.00000000000000000000,-1.0000000000000000000,0.00042307690763920499,0.00114733466079128005,0.99999925231427300165,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098022796976238190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +83 ,0 ,5.53250041960116956119,-0.0060060257764416001,0.00000000000000000000,-1.0000000000000000000,0.00049999997583826500,0.00114733466092053993,0.99999921681129300132,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137076057922059005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +84 ,0 ,-5.5325004541866702467,-0.0007709144402204269,0.00000000000000000000,-1.0000000000000000000,-0.0004999999787968440,0.00038276338507636797,0.99999980174608604777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137484281935940002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +85 ,0 ,-4.6813464280077301538,-0.0007709143962607020,0.00000000000000000000,-1.0000000000000000000,-0.0004230769101426190,0.00038276338502193902,0.99999983724904595305,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098431020501266197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +86 ,0 ,-3.8301924569038998669,-0.0007709143596528189,0.00000000000000000000,-1.0000000000000000000,-0.0003461538389849799,0.00038276338497672502,0.99999986683484598515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065886637855783203,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +87 ,0 ,-2.9790385308615299209,-0.0007709143303404329,0.00000000000000000000,-1.0000000000000000000,-0.0002692307657790929,0.00038276338494039297,0.99999989050348703223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039851132783041997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +88 ,0 ,-2.1278846398669499784,-0.0007709143083045040,0.00000000000000000000,-1.0000000000000000000,-0.0001923076909801239,0.00038276338491319300,0.99999990825496698487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020324504612290200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +89 ,0 ,-1.2767307739065199001,-0.0007709142936063170,0.00000000000000000000,-1.0000000000000000000,-0.0001153846150432410,0.00038276338489506801,0.99999992008928795250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007306752888780469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +90 ,0 ,-0.4255769229665630204,-0.0007709142863444600,0.00000000000000000000,-1.0000000000000000000,-0.0000384615384236079,0.00038276338488607602,0.99999992600644804774,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000797877305558358,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +91 ,0 ,0.42557692296656302044,-0.0007709142863444600,0.00000000000000000000,-1.0000000000000000000,0.00003846153842360790,0.00038276338488607602,0.99999992600644804774,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000797877305558358,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +92 ,0 ,1.27673077390651990015,-0.0007709142936063170,0.00000000000000000000,-1.0000000000000000000,0.00011538461504324100,0.00038276338489506801,0.99999992008928795250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007306752888780469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +93 ,0 ,2.12788463986694997842,-0.0007709143083045040,0.00000000000000000000,-1.0000000000000000000,0.00019230769098012398,0.00038276338491319300,0.99999990825496698487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020324504612290200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +94 ,0 ,2.97903853086152992091,-0.0007709143303404329,0.00000000000000000000,-1.0000000000000000000,0.00026923076577909299,0.00038276338494039297,0.99999989050348703223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039851132783041997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +95 ,0 ,3.83019245690389986691,-0.0007709143596528189,0.00000000000000000000,-1.0000000000000000000,0.00034615383898497999,0.00038276338497672502,0.99999986683484598515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065886637855783203,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +96 ,0 ,4.68134642800773015380,-0.0007709143962607020,0.00000000000000000000,-1.0000000000000000000,0.00042307691014261902,0.00038276338502193902,0.99999983724904595305,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098431020501266197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +97 ,0 ,5.53250045418667024677,-0.0007709144402204269,0.00000000000000000000,-1.0000000000000000000,0.00049999997879684402,0.00038276338507636797,0.99999980174608604777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137484281935940002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +98 ,0 ,-5.5325004543443201399,-0.0004642413950640129,0.00000000000000000000,-1.0000000000000000000,-0.0004999999787968440,-0.0003830830659691810,0.99999980162367296809,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137515811491084995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +99 ,0 ,-4.6813464281411203415,-0.0004642413510152489,0.00000000000000000000,-1.0000000000000000000,-0.0004230769101426190,-0.0003830830659035939,0.99999983712663298440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098462550170097507,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +100 ,0 ,-3.8301924570130401193,-0.0004642413141975330,0.00000000000000000000,-1.0000000000000000000,-0.0003461538389849799,-0.0003830830658483609,0.99999986671243301650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065918167422296402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +101 ,0 ,-2.9790385309464197938,-0.0004642412848368529,0.00000000000000000000,-1.0000000000000000000,-0.0002692307657790929,-0.0003830830658045630,0.99999989038107395256,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039882662315449097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +102 ,0 ,-2.1278846399275899159,-0.0004642412627091639,0.00000000000000000000,-1.0000000000000000000,-0.0001923076909801239,-0.0003830830657715890,0.99999990813255401622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020356034417545699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +103 ,0 ,-1.2767307739428999102,-0.0004642412480632129,0.00000000000000000000,-1.0000000000000000000,-0.0001153846150432410,-0.0003830830657496060,0.99999991996687398465,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007338282694036020,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +104 ,0 ,-0.4255769229786899865,-0.0004642412407763199,0.00000000000000000000,-1.0000000000000000000,-0.0000384615384236079,-0.0003830830657388100,0.99999992588403496807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000829406769753404,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +105 ,0 ,0.42557692297868998654,-0.0004642412407763199,0.00000000000000000000,-1.0000000000000000000,0.00003846153842360790,-0.0003830830657388100,0.99999992588403496807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000829406769753404,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +106 ,0 ,1.27673077394289991026,-0.0004642412480632129,0.00000000000000000000,-1.0000000000000000000,0.00011538461504324100,-0.0003830830657496060,0.99999991996687398465,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007338282694036020,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +107 ,0 ,2.12788463992758991594,-0.0004642412627091639,0.00000000000000000000,-1.0000000000000000000,0.00019230769098012398,-0.0003830830657715890,0.99999990813255401622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020356034417545699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +108 ,0 ,2.97903853094641979382,-0.0004642412848368529,0.00000000000000000000,-1.0000000000000000000,0.00026923076577909299,-0.0003830830658045630,0.99999989038107395256,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039882662315449097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +109 ,0 ,3.83019245701304011930,-0.0004642413141975330,0.00000000000000000000,-1.0000000000000000000,0.00034615383898497999,-0.0003830830658483609,0.99999986671243301650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065918167422296402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +110 ,0 ,4.68134642814112034159,-0.0004642413510152489,0.00000000000000000000,-1.0000000000000000000,0.00042307691014261902,-0.0003830830659035939,0.99999983712663298440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098462550170097507,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +111 ,0 ,5.53250045434432013991,-0.0004642413950640129,0.00000000000000000000,-1.0000000000000000000,0.00049999997879684402,-0.0003830830659691810,0.99999980162367296809,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137515811491084995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +112 ,0 ,-5.5325004238577397686,-0.0051104693205330500,0.00000000000000000000,-1.0000000000000000000,-0.0004999999758382650,-0.0011502118149558598,0.99999921350609299874,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137927371872592998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +113 ,0 ,-4.6813464023447899364,-0.0051104689226515497,0.00000000000000000000,-1.0000000000000000000,-0.0004230769076392049,-0.0011502118147236300,0.99999924900907399827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098874110926772096,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +114 ,0 ,-3.8301924359069499104,-0.0051104685910918802,0.00000000000000000000,-1.0000000000000000000,-0.0003461538369367320,-0.0011502118145300399,0.99999927859489101678,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066329728633718299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +115 ,0 ,-2.9790385145305697811,-0.0051104683258826897,0.00000000000000000000,-1.0000000000000000000,-0.0002692307641860109,-0.0011502118143751100,0.99999930226354505347,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040294223811088202,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +116 ,0 ,-2.1278846282019800995,-0.0051104681269142897,0.00000000000000000000,-1.0000000000000000000,-0.0001923076898422090,-0.0011502118142591199,0.99999932001503599732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020767596015502899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +117 ,0 ,-1.2767307669075400600,-0.0051104679943518903,0.00000000000000000000,-1.0000000000000000000,-0.0001153846143604919,-0.0011502118141818499,0.99999933184936296015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007749844473892149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +118 ,0 ,-0.4255769206335690002,-0.0051104679281248595,0.00000000000000000000,-1.0000000000000000000,-0.0000384615381960247,-0.0011502118141434600,0.99999933776652705219,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001240968754245840,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +119 ,0 ,0.42557692063356900025,-0.0051104679281248595,0.00000000000000000000,-1.0000000000000000000,0.00003846153819602479,-0.0011502118141434600,0.99999933776652705219,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001240968754245840,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +120 ,0 ,1.27673076690754006001,-0.0051104679943518903,0.00000000000000000000,-1.0000000000000000000,0.00011538461436049199,-0.0011502118141818499,0.99999933184936296015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007749844473892149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +121 ,0 ,2.12788462820198009950,-0.0051104681269142897,0.00000000000000000000,-1.0000000000000000000,0.00019230768984220900,-0.0011502118142591199,0.99999932001503599732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020767596015502899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +122 ,0 ,2.97903851453056978115,-0.0051104683258826897,0.00000000000000000000,-1.0000000000000000000,0.00026923076418601098,-0.0011502118143751100,0.99999930226354505347,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040294223811088202,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +123 ,0 ,3.83019243590694991041,-0.0051104685910918802,0.00000000000000000000,-1.0000000000000000000,0.00034615383693673202,-0.0011502118145300399,0.99999927859489101678,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066329728633718299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +124 ,0 ,4.68134640234478993647,-0.0051104689226515497,0.00000000000000000000,-1.0000000000000000000,0.00042307690763920499,-0.0011502118147236300,0.99999924900907399827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098874110926772096,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +125 ,0 ,5.53250042385773976860,-0.0051104693205330500,0.00000000000000000000,-1.0000000000000000000,0.00049999997583826500,-0.0011502118149558598,0.99999921350609299874,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137927371872592998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +126 ,0 ,-5.5325003665484100423,-0.0147343094711111996,0.00000000000000000000,-1.0000000000000000000,-0.0004999999699211050,-0.0019186300544280800,0.99999803442744095161,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00139483258635664003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +127 ,0 ,-4.6813463538522803730,-0.0147343083632423006,0.00000000000000000000,-1.0000000000000000000,-0.0004230769026323780,-0.0019186300539828799,0.99999806993046302938,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00100429998281015005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +128 ,0 ,-3.8301923962312698357,-0.0147343074400049997,0.00000000000000000000,-1.0000000000000000000,-0.0003461538328402370,-0.0019186300536123100,0.99999809951631501991,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00067885616419971494,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +129 ,0 ,-2.9790384836717098693,-0.0147343067014013996,0.00000000000000000000,-1.0000000000000000000,-0.0002692307609998480,-0.0019186300533156899,0.99999812318499703422,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041850112279462299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +130 ,0 ,-2.1278846061599399064,-0.0147343061475014008,0.00000000000000000000,-1.0000000000000000000,-0.0001923076875663780,-0.0019186300530930099,0.99999814093650796209,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022323484779462901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +131 ,0 ,-1.2767307536823100377,-0.0147343057781587991,0.00000000000000000000,-1.0000000000000000000,-0.0001153846129949930,-0.0019186300529446499,0.99999815277084902476,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00009305733317432900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +132 ,0 ,-0.4255769162251599735,-0.0147343055935059003,0.00000000000000000000,-1.0000000000000000000,-0.0000384615377408587,-0.0019186300528703798,0.99999815868802000018,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002796857916109729,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +133 ,0 ,0.42557691622515997353,-0.0147343055935059003,0.00000000000000000000,-1.0000000000000000000,0.00003846153774085870,-0.0019186300528703798,0.99999815868802000018,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002796857916109729,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +134 ,0 ,1.27673075368231003778,-0.0147343057781587991,0.00000000000000000000,-1.0000000000000000000,0.00011538461299499300,-0.0019186300529446499,0.99999815277084902476,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00009305733317432900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +135 ,0 ,2.12788460615993990643,-0.0147343061475014008,0.00000000000000000000,-1.0000000000000000000,0.00019230768756637800,-0.0019186300530930099,0.99999814093650796209,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022323484779462901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +136 ,0 ,2.97903848367170986932,-0.0147343067014013996,0.00000000000000000000,-1.0000000000000000000,0.00026923076099984801,-0.0019186300533156899,0.99999812318499703422,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041850112279462299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +137 ,0 ,3.83019239623126983573,-0.0147343074400049997,0.00000000000000000000,-1.0000000000000000000,0.00034615383284023701,-0.0019186300536123100,0.99999809951631501991,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00067885616419971494,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +138 ,0 ,4.68134635385228037307,-0.0147343083632423006,0.00000000000000000000,-1.0000000000000000000,0.00042307690263237800,-0.0019186300539828799,0.99999806993046302938,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00100429998281015005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +139 ,0 ,5.53250036654841004235,-0.0147343094711111996,0.00000000000000000000,-1.0000000000000000000,0.00049999996992110501,-0.0019186300544280800,0.99999803442744095161,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00139483258635664003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +140 ,0 ,-5.5325002862762096000,-0.0293607251074722991,0.00000000000000000000,-1.0000000000000000000,-0.0004999999610453660,-0.0026883450476948601,0.99999626139348296582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00142955447074655001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +141 ,0 ,-4.6813462859296599560,-0.0293607229305367992,0.00000000000000000000,-1.0000000000000000000,-0.0004230768951221369,-0.0026883450469894999,0.99999629689656799325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103902187731819009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +142 ,0 ,-3.8301923406582201181,-0.0293607211164080006,0.00000000000000000000,-1.0000000000000000000,-0.0003461538266954939,-0.0026883450464019200,0.99999632648247205324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00071357806871219498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +143 ,0 ,-2.9790384404482201929,-0.0293607196650901985,0.00000000000000000000,-1.0000000000000000000,-0.0002692307562206040,-0.0026883450459315701,0.99999635015119603398,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045322303037664802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +144 ,0 ,-2.1278845752860200413,-0.0293607185766572992,0.00000000000000000000,-1.0000000000000000000,-0.0001923076841526319,-0.0026883450455790799,0.99999636790273904729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025795676049256100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +145 ,0 ,-1.2767307351579599838,-0.0293607178510528997,0.00000000000000000000,-1.0000000000000000000,-0.0001153846109467459,-0.0026883450453440700,0.99999637973710098215,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012777924996498800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +146 ,0 ,-0.4255769100503780100,-0.0293607174881133983,0.00000000000000000000,-1.0000000000000000000,-0.0000384615370581095,-0.0026883450452264701,0.99999638565428194958,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006269049492857449,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +147 ,0 ,0.42557691005037801001,-0.0293607174881133983,0.00000000000000000000,-1.0000000000000000000,0.00003846153705810950,-0.0026883450452264701,0.99999638565428194958,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006269049492857449,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +148 ,0 ,1.27673073515795998389,-0.0293607178510528997,0.00000000000000000000,-1.0000000000000000000,0.00011538461094674599,-0.0026883450453440700,0.99999637973710098215,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012777924996498800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +149 ,0 ,2.12788457528602004131,-0.0293607185766572992,0.00000000000000000000,-1.0000000000000000000,0.00019230768415263299,-0.0026883450455790799,0.99999636790273904729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025795676049256100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +150 ,0 ,2.97903844044822019299,-0.0293607196650901985,0.00000000000000000000,-1.0000000000000000000,0.00026923075622060400,-0.0026883450459315701,0.99999635015119603398,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045322303037664802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +151 ,0 ,3.83019234065822011814,-0.0293607211164080006,0.00000000000000000000,-1.0000000000000000000,0.00034615382669549399,-0.0026883450464019200,0.99999632648247205324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00071357806871219498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +152 ,0 ,4.68134628592965995608,-0.0293607229305367992,0.00000000000000000000,-1.0000000000000000000,0.00042307689512213698,-0.0026883450469894999,0.99999629689656799325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103902187731819009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +153 ,0 ,5.53250028627620960008,-0.0293607251074722991,0.00000000000000000000,-1.0000000000000000000,0.00049999996104536600,-0.0026883450476948601,0.99999626139348296582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00142955447074655001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +154 ,0 ,-5.5325001869399796916,-0.0490149349890555974,0.00000000000000000000,-1.0000000000000000000,-0.0004999999492110469,-0.0034593641298053300,0.99999389138127603438,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00149123706739828993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +155 ,0 ,-4.6813462018759297578,-0.0490149313813615025,0.00000000000000000000,-1.0000000000000000000,-0.0004230768851084819,-0.0034593641287923599,0.99999392688444499466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00110070448351962005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +156 ,0 ,-3.8301922718869900741,-0.0490149283750205000,0.00000000000000000000,-1.0000000000000000000,-0.0003461538185025039,-0.0034593641279483900,0.99999395647041999790,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00077526068048427998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +157 ,0 ,-2.9790383869595000732,-0.0490149259698023018,0.00000000000000000000,-1.0000000000000000000,-0.0002692307498482780,-0.0034593641272726801,0.99999398013920004490,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00051490565078893301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +158 ,0 ,-2.1278845370797898617,-0.0490149241660247023,0.00000000000000000000,-1.0000000000000000000,-0.0001923076796009709,-0.0034593641267664501,0.99999399789078502465,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031963938442913802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +159 ,0 ,-1.2767307122342199665,-0.0490149229634138025,0.00000000000000000000,-1.0000000000000000000,-0.0001153846082157489,-0.0034593641264286699,0.99999400972517504815,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018946187594792699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +160 ,0 ,-0.4255769024091309860,-0.0490149223622134005,0.00000000000000000000,-1.0000000000000000000,-0.0000384615361477773,-0.0034593641262597998,0.99999401564237000439,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012437312523161400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +161 ,0 ,0.42557690240913098600,-0.0490149223622134005,0.00000000000000000000,-1.0000000000000000000,0.00003846153614777730,-0.0034593641262597998,0.99999401564237000439,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012437312523161400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +162 ,0 ,1.27673071223421996656,-0.0490149229634138025,0.00000000000000000000,-1.0000000000000000000,0.00011538460821574899,-0.0034593641264286699,0.99999400972517504815,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018946187594792699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +163 ,0 ,2.12788453707978986173,-0.0490149241660247023,0.00000000000000000000,-1.0000000000000000000,0.00019230767960097099,-0.0034593641267664501,0.99999399789078502465,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031963938442913802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +164 ,0 ,2.97903838695950007320,-0.0490149259698023018,0.00000000000000000000,-1.0000000000000000000,0.00026923074984827800,-0.0034593641272726801,0.99999398013920004490,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00051490565078893301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +165 ,0 ,3.83019227188699007413,-0.0490149283750205000,0.00000000000000000000,-1.0000000000000000000,0.00034615381850250397,-0.0034593641279483900,0.99999395647041999790,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00077526068048427998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +166 ,0 ,4.68134620187592975781,-0.0490149313813615025,0.00000000000000000000,-1.0000000000000000000,0.00042307688510848199,-0.0034593641287923599,0.99999392688444499466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00110070448351962005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +167 ,0 ,5.53250018693997969165,-0.0490149349890555974,0.00000000000000000000,-1.0000000000000000000,0.00049999994921104699,-0.0034593641298053300,0.99999389138127603438,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00149123706739828993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +168 ,0 ,-5.5325000724780997174,-0.0737224169291375019,0.00000000000000000000,-1.0000000000000000000,-0.0004999999344181489,-0.0042316947085464500,0.99999092133876799071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00158775714294278995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +169 ,0 ,-4.6813461050235796179,-0.0737224115262024998,0.00000000000000000000,-1.0000000000000000000,-0.0004230768725914139,-0.0042316947071773204,0.99999095684204297729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00119722456747694996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +170 ,0 ,-3.8301921926441702126,-0.0737224070237774004,0.00000000000000000000,-1.0000000000000000000,-0.0003461538082612659,-0.0042316947060362401,0.99999098642810602122,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087178077342286997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +171 ,0 ,-2.9790383253261900620,-0.0737224034218603996,0.00000000000000000000,-1.0000000000000000000,-0.0002692307418828710,-0.0042316947051237200,0.99999101009695601227,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00061142575032135904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +172 ,0 ,-2.1278844930559999149,-0.0737224007204248937,0.00000000000000000000,-1.0000000000000000000,-0.0001923076739113949,-0.0042316947044387697,0.99999102784859394965,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041615948657636197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +173 ,0 ,-1.2767306858199500840,-0.0737223989194673023,0.00000000000000000000,-1.0000000000000000000,-0.0001153846048020029,-0.0042316947039831003,0.99999103968301894518,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00028598198377949302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +174 ,0 ,-0.4255768936043740069,-0.0737223980189653932,0.00000000000000000000,-1.0000000000000000000,-0.0000384615350098619,-0.0042316947037545297,0.99999104560023199805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022089323283580600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +175 ,0 ,0.42557689360437400694,-0.0737223980189653932,0.00000000000000000000,-1.0000000000000000000,0.00003846153500986199,-0.0042316947037545297,0.99999104560023199805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022089323283580600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +176 ,0 ,1.27673068581995008408,-0.0737223989194673023,0.00000000000000000000,-1.0000000000000000000,0.00011538460480200299,-0.0042316947039831003,0.99999103968301894518,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00028598198377949302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +177 ,0 ,2.12788449305601012895,-0.0737224007204248937,0.00000000000000000000,-1.0000000000000000000,0.00019230767391139499,-0.0042316947044387697,0.99999102784859394965,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041615948657636197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +178 ,0 ,2.97903832532619006201,-0.0737224034218603996,0.00000000000000000000,-1.0000000000000000000,0.00026923074188287102,-0.0042316947051237200,0.99999101009695601227,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00061142575032135904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +179 ,0 ,3.83019219264417021264,-0.0737224070237774004,0.00000000000000000000,-1.0000000000000000000,0.00034615380826126599,-0.0042316947060362401,0.99999098642810602122,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087178077342286997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +180 ,0 ,4.68134610502357961792,-0.0737224115262024998,0.00000000000000000000,-1.0000000000000000000,0.00042307687259141398,-0.0042316947071773204,0.99999095684204297729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00119722456747694996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +181 ,0 ,5.53250007247809971744,-0.0737224169291375019,0.00000000000000000000,-1.0000000000000000000,0.00049999993441814897,-0.0042316947085464500,0.99999092133876799071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00158775714294278995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +182 ,0 ,-5.5324999468690903015,-0.1035089114136970023,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,-0.0050053442654487403,0.99998734818440004890,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00172707170213470991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +183 ,0 ,-4.6813459987390402261,-0.1035089038482499973,0.00000000000000000000,-1.0000000000000000000,-0.0004230768575709329,-0.0050053442636747999,0.99998738368780204499,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00133653913599118996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +184 ,0 ,-3.8301921056840901869,-0.1035088975437900016,0.00000000000000000000,-1.0000000000000000000,-0.0003461537959717820,-0.0050053442621964001,0.99998741327397000500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00101109534762144990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +185 ,0 ,-2.9790382576905800604,-0.1035088925001159954,0.00000000000000000000,-1.0000000000000000000,-0.0002692307323243830,-0.0050053442610135702,0.99998743694290603833,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00075074032929478594,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +186 ,0 ,-2.1278844447448599375,-0.1035088887173999938,0.00000000000000000000,-1.0000000000000000000,-0.0001923076670839029,-0.0050053442601265497,0.99998745469460703638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00055547406850564595,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +187 ,0 ,-1.2767306568332599248,-0.1035088861955749950,0.00000000000000000000,-1.0000000000000000000,-0.0001153846007055080,-0.0050053442595356699,0.99998746652907499754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00042529656866463499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +188 ,0 ,-0.4255768839421449900,-0.1035088849347149952,0.00000000000000000000,-1.0000000000000000000,-0.0000384615336443635,-0.0050053442592397903,0.99998747244630903363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036020781908519000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +189 ,0 ,0.42557688394214499005,-0.1035088849347149952,0.00000000000000000000,-1.0000000000000000000,0.00003846153364436359,-0.0050053442592397903,0.99998747244630903363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036020781908519000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +190 ,0 ,1.27673065683325992480,-0.1035088861955749950,0.00000000000000000000,-1.0000000000000000000,0.00011538460070550800,-0.0050053442595356699,0.99998746652907499754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00042529656866463499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +191 ,0 ,2.12788444474485993751,-0.1035088887173999938,0.00000000000000000000,-1.0000000000000000000,0.00019230766708390299,-0.0050053442601265497,0.99998745469460703638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00055547406850564595,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +192 ,0 ,2.97903825769058006045,-0.1035088925001159954,0.00000000000000000000,-1.0000000000000000000,0.00026923073232438301,-0.0050053442610135702,0.99998743694290603833,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00075074032929478594,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +193 ,0 ,3.83019210568409018691,-0.1035088975437900016,0.00000000000000000000,-1.0000000000000000000,0.00034615379597178200,-0.0050053442621964001,0.99998741327397000500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00101109534762144990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +194 ,0 ,4.68134599873904022615,-0.1035089038482499973,0.00000000000000000000,-1.0000000000000000000,0.00042307685757093298,-0.0050053442636747999,0.99998738368780204499,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00133653913599118996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +195 ,0 ,5.53249994686909030150,-0.1035089114136970023,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,-0.0050053442654487403,0.99998734818440004890,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00172707170213470991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +196 ,0 ,-5.5324996004110502667,-0.1052689433323930057,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,0.00495130793916306963,0.99998761719822104598,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103415551279795008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +197 ,0 ,-4.6813457055822800256,-0.1052689360067270013,0.00000000000000000000,-1.0000000000000000000,-0.0004230768575709329,0.00495130793932834975,0.99998765270160294704,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00064362304453879904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +198 ,0 ,-3.8301918658285800667,-0.1052689299020110047,0.00000000000000000000,-1.0000000000000000000,-0.0003461537959717820,0.00495130793946596970,0.99998768228775603006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031817933813727000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +199 ,0 ,-2.9790380711363098065,-0.1052689250183270058,0.00000000000000000000,-1.0000000000000000000,-0.0002692307323243830,0.00495130793957607000,0.99998770595667796357,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005782438404366989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/CylinderDefault.rayx.csv b/Intern/RayCore/tests/output/CylinderDefault.rayx.csv new file mode 100644 index 000000000..93796a84f --- /dev/null +++ b/Intern/RayCore/tests/output/CylinderDefault.rayx.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-5.5324996004110484904,-0.1052689433153378845,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00495130793918071004,0.99998761719822049087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010341555116610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-4.6813457055822755847,-0.1052689359895805643,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00495130793934610811,0.99998765270160316909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006436230432882,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,-3.8301918658285831753,-0.1052689298850338212,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00495130793948350862,0.99998768228775580801,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003181793363182,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,-2.9790380711363129151,-0.1052689250015643035,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00495130793959354040,0.99998770595667818561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000578243852942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-2.1278843114918162271,-0.1052689213378861232,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,0.00495130793967609676,0.99998772370837007983,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998625581793021,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-1.2767305768814414257,-0.1052689188971109440,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,0.00495130793973130867,0.99998773554283115760,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997323807074280,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,-0.4255768572915387126,-0.1052689176755418759,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,0.00495130793975870862,0.99998774146006197405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996672919733100,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,0.42557685729153871267,-0.1052689176755418759,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,0.00495130793975870862,0.99998774146006197405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996672919733100,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,1.27673057688144142574,-0.1052689188971109440,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,0.00495130793973130867,0.99998773554283115760,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997323807074280,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,2.12788431149181667123,-0.1052689213378861232,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,0.00495130793967609676,0.99998772370837007983,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998625581793021,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,2.97903807113631291514,-0.1052689250015643035,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,0.00495130793959354040,0.99998770595667818561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000578243852942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,3.83019186582858317535,-0.1052689298850338212,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,0.00495130793948350862,0.99998768228775580801,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003181793363182,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,4.68134570558227647296,-0.1052689359895805643,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,0.00495130793934610811,0.99998765270160316909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006436230432882,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,5.53249960041104849040,-0.1052689433153378845,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,0.00495130793918071004,0.99998761719822049087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010341555116610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,-5.5324998626028234482,-0.0757501133658783215,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,0.00419300807629373502,0.99999108430192384933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011680065290420,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,-4.6813459274368325324,-0.0757501081077115306,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,0.00419300807631259059,0.99999111980518673448,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007774740115564,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-3.8301920473459305505,-0.0757501037265893434,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,0.00419300807632876429,0.99999114939123956435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004520302682067,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-2.9790382123164627081,-0.0757501002216710433,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,0.00419300807634125690,0.99999117306008189487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001916752826218,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,-2.1278844123347755434,-0.0757500975926663072,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,0.00419300807635082824,0.99999119081171405909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999964090548019,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,-1.2767306373872144842,-0.0757500958404693502,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,0.00419300807635703595,0.99999120264613527986,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998662315683759,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +20 ,0 ,-0.4255768774601294546,-0.0757500949633296560,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,0.00419300807636027034,0.99999120856334600127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998011428288009,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,0 ,0.42557687746012945462,-0.0757500949633296560,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,0.00419300807636027034,0.99999120856334600127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998011428288009,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,0 ,1.27673063738721448423,-0.0757500958404693502,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,0.00419300807635703595,0.99999120264613527986,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998662315683759,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +23 ,0 ,2.12788441233477598757,-0.0757500975926663072,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,0.00419300807635082824,0.99999119081171405909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999964090548019,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +24 ,0 ,2.97903821231646270817,-0.0757501002216710433,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,0.00419300807634125690,0.99999117306008189487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001916752826218,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,0 ,3.83019204734593055050,-0.0757501037265893434,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,0.00419300807632876429,0.99999114939123956435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004520302682067,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,0 ,4.68134592743683342064,-0.0757501081077115306,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,0.00419300807631259059,0.99999111980518673448,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007774740115564,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +27 ,0 ,5.53249986260282344829,-0.0757501133658783215,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,0.00419300807629373502,0.99999108430192384933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011680065290420,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +28 ,0 ,-5.5325000719977426300,-0.0510410209511804116,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,0.00343346763727807877,0.99999398063190081398,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012613525759661,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +29 ,0 ,-4.6813461046171305213,-0.0510410174226627391,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,0.00343346763719416065,0.99999401613506333497,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008708200275577,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,0 ,-3.8301921923116171164,-0.0510410144826281414,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,0.00343346763712468238,0.99999404572103256505,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005453762496472,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,0 ,-2.9790383250675431803,-0.0510410121310130859,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,0.00343346763706829389,0.99999406938980806014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002850212422345,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +32 ,0 ,-2.1278844928712574713,-0.0510410103666757569,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,0.00343346763702664578,0.99999408714138993126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000897549925866,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +33 ,0 ,-1.2767306857091023086,-0.0510410091906037255,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,0.00343346763699871890,0.99999409897577784533,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999595774934277,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +34 ,0 ,-0.4255768935674251185,-0.0510410086024323042,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,0.00343346763698442261,0.99999410489297169135,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998944887465768,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +35 ,0 ,0.42557689356742511854,-0.0510410086024323042,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,0.00343346763698442261,0.99999410489297169135,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998944887465768,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,0 ,1.27673068570910230867,-0.0510410091906037255,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,0.00343346763699871890,0.99999409897577784533,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999595774934277,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,0 ,2.12788449287125791542,-0.0510410103666757569,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,0.00343346763702664578,0.99999408714138993126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000897549925866,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +38 ,0 ,2.97903832506754318032,-0.0510410121310130859,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,0.00343346763706829389,0.99999406938980806014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002850212422345,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +39 ,0 ,3.83019219231161711647,-0.0510410144826281414,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,0.00343346763712468238,0.99999404572103256505,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005453762496472,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +40 ,0 ,4.68134610461713140949,-0.0510410174226627391,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,0.00343346763719416065,0.99999401613506333497,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008708200275577,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,0 ,5.53250007199774263000,-0.0510410209511804116,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,0.00343346763727807877,0.99999398063190081398,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012613525759661,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +42 ,0 ,-5.5325002321981173736,-0.0311649352972233131,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,0.00267267983459367440,0.99999630338443767918,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013213982856541,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +43 ,0 ,-4.6813462401712806482,-0.0311649331577874451,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,0.00267267983445030471,0.99999633888751948695,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009308657081419,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,0 ,-3.8301923032195479557,-0.0311649313750618772,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,0.00267267983433108150,0.99999636847342165957,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006054219102225,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,0 ,-2.9790384113292627255,-0.0311649299486440982,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,0.00267267983423593756,0.99999639214214330884,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003450668846198,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,0 ,-2.1278845544867679429,-0.0311649288789428331,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,0.00267267983416399857,0.99999640989368465682,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001498006204201,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +47 ,0 ,-1.2767307226784072593,-0.0311649281656878884,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,0.00267267983411600745,0.99999642172804570350,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000196231158042,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +48 ,0 ,-0.4255769058905265467,-0.0311649278086710973,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,0.00267267983409217061,0.99999642764522600479,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999545343653153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +49 ,0 ,0.42557690589052654672,-0.0311649278086710973,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,0.00267267983409217061,0.99999642764522600479,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999545343653153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +50 ,0 ,1.27673072267840725935,-0.0311649281656878884,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,0.00267267983411600745,0.99999642172804570350,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000196231158042,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +51 ,0 ,2.12788455448676838699,-0.0311649288789428331,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,0.00267267983416399857,0.99999640989368465682,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001498006204201,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,0 ,2.97903841132926272550,-0.0311649299486440982,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,0.00267267983423593756,0.99999639214214330884,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003450668846198,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +53 ,0 ,3.83019230321954795570,-0.0311649313750618772,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,0.00267267983433108150,0.99999636847342165957,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006054219102225,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +54 ,0 ,4.68134624017128153639,-0.0311649331577874451,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,0.00267267983445030471,0.99999633888751948695,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009308657081419,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +55 ,0 ,5.53250023219811737362,-0.0311649352972233131,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,0.00267267983459367440,0.99999630338443767918,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013213982856541,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +56 ,0 ,-5.5325003468414974960,-0.0161453579203043526,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,0.00191063781544916714,0.99999804972968231453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013554187607951,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +57 ,0 ,-4.6813463371772074950,-0.0161453568263398537,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,0.00191063781529102151,0.99999808523270328208,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009648861632740,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +58 ,0 ,-3.8301923825880264118,-0.0161453559143680328,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,0.00191063781515872326,0.99999811481855449546,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006394423508027,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +59 ,0 ,-2.9790384730602976759,-0.0161453551853660733,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,0.00191063781505312825,0.99999813848723562159,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003790873142861,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +60 ,0 ,-2.1278845985803620521,-0.0161453546381223021,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,0.00191063781497408753,0.99999815623874677150,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001838210391724,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +61 ,0 ,-1.2767307491345629699,-0.0161453542734491632,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,0.00191063781492123311,0.99999816807308750110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000536435272806,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,0 ,-0.4255769147092448023,-0.0161453540911309263,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,0.00191063781489478703,0.99999817399025792141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999885547713347,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +63 ,0 ,0.42557691470924480237,-0.0161453540911309263,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,0.00191063781489478703,0.99999817399025792141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999885547713347,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +64 ,0 ,1.27673074913456296997,-0.0161453542734491632,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,0.00191063781492123311,0.99999816807308750110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000536435272806,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +65 ,0 ,2.12788459858036249627,-0.0161453546381223021,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,0.00191063781497408753,0.99999815623874677150,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001838210391724,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +66 ,0 ,2.97903847306029767594,-0.0161453551853660733,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,0.00191063781505312825,0.99999813848723562159,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003790873142861,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,0 ,3.83019238258802641183,-0.0161453559143680328,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,0.00191063781515872326,0.99999811481855449546,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006394423508027,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +68 ,0 ,4.68134633717720749501,-0.0161453568263398537,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,0.00191063781529102151,0.99999808523270328208,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009648861632740,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +69 ,0 ,5.53250034684149749608,-0.0161453579203043526,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,0.00191063781544916714,0.99999804972968231453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013554187607951,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +70 ,0 ,-5.5325004196011686730,-0.0060060257724747316,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,0.00114733466092457902,0.99999921681129311235,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013707605794479,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +71 ,0 ,-4.6813463987430763424,-0.0060060253772772648,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,0.00114733466079581223,0.99999925231427333471,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009802279728319,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +72 ,0 ,-3.8301924329600978147,-0.0060060250484691175,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,0.00114733466068836194,0.99999928190009079731,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006547841476276,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +73 ,0 ,-2.9790385122385716343,-0.0060060247857139570,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,0.00114733466060210542,0.99999930556874472298,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003944291020161,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +74 ,0 ,-2.1278846265648425628,-0.0060060245878257728,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,0.00114733466053778187,0.99999932332023544478,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001991628214454,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +75 ,0 ,-1.2767307659252511431,-0.0060060244562628040,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,0.00114733466049483923,0.99999933515456240762,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000689853077346,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +76 ,0 ,-0.4255769203061407490,-0.0060060243904466155,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,0.00114733466047340303,0.99999934107172616659,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000038965517887,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +77 ,0 ,0.42557692030614074907,-0.0060060243904466155,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,0.00114733466047340303,0.99999934107172616659,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000038965517887,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +78 ,0 ,1.27673076592525114314,-0.0060060244562628040,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,0.00114733466049483923,0.99999933515456240762,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000689853077346,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +79 ,0 ,2.12788462656484345103,-0.0060060245878257728,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,0.00114733466053778187,0.99999932332023544478,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001991628214454,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +80 ,0 ,2.97903851223857163432,-0.0060060247857139570,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,0.00114733466060210542,0.99999930556874472298,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003944291020161,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +81 ,0 ,3.83019243296009781474,-0.0060060250484691175,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,0.00114733466068836194,0.99999928190009079731,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006547841476276,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +82 ,0 ,4.68134639874307723061,-0.0060060253772772648,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,0.00114733466079581223,0.99999925231427333471,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009802279728319,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +83 ,0 ,5.53250041960116867301,-0.0060060257724747316,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,0.00114733466092457902,0.99999921681129311235,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013707605794479,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +84 ,0 ,-5.5325004541866693585,-0.0007709144390380543,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,0.00038276338507780356,0.99999980174608626981,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013748428191320,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +85 ,0 ,-4.6813464280077274892,-0.0007709143951225172,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,0.00038276338502338285,0.99999983724904617510,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009843102052400,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +86 ,0 ,-3.8301924569039020873,-0.0007709143585723709,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,0.00038276338497806098,0.99999986683484631821,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006588663800357,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +87 ,0 ,-2.9790385308615299209,-0.0007709143294440416,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,0.00038276338494178249,0.99999989050348669916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003985113289672,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +88 ,0 ,-2.1278846398669539752,-0.0007709143072627055,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,0.00038276338491456776,0.99999990825496720692,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002032450465776,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +89 ,0 ,-1.2767307739065179017,-0.0007709142922020185,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,0.00038276338489669729,0.99999992008928750841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000730675328668,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +90 ,0 ,-0.4255769229665629094,-0.0007709142850723371,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,0.00038276338488781757,0.99999992600644760365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000079787714639,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,0 ,0.42557692296656290942,-0.0007709142850723371,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,0.00038276338488781757,0.99999992600644760365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000079787714639,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +92 ,0 ,1.27673077390651790175,-0.0007709142922020185,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,0.00038276338489669729,0.99999992008928750841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000730675328668,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +93 ,0 ,2.12788463986695486340,-0.0007709143072627055,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,0.00038276338491456776,0.99999990825496720692,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002032450465776,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +94 ,0 ,2.97903853086152992091,-0.0007709143294440416,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,0.00038276338494178249,0.99999989050348669916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003985113289672,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +95 ,0 ,3.83019245690390208736,-0.0007709143585723709,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,0.00038276338497806098,0.99999986683484631821,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006588663800357,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +96 ,0 ,4.68134642800772837745,-0.0007709143951225172,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,0.00038276338502338285,0.99999983724904617510,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009843102052400,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +97 ,0 ,5.53250045418666935859,-0.0007709144390380543,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,0.00038276338507780356,0.99999980174608626981,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013748428191320,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +98 ,0 ,-5.5325004543443183635,-0.0004642413966301533,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,-0.0003830830659705315,0.99999980162367296809,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013751581136602,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +99 ,0 ,-4.6813464281411221179,-0.0004642413525654769,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,-0.0003830830659049143,0.99999983712663298440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009846255015872,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +100 ,0 ,-3.8301924570130432279,-0.0004642413154932556,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,-0.0003830830658501846,0.99999986671243301650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006591816745640,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +101 ,0 ,-2.9790385309464175733,-0.0004642412861942799,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,-0.0003830830658062139,0.99999989038107339744,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003988266234955,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +102 ,0 ,-2.1278846399275885836,-0.0004642412639256439,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,-0.0003830830657731686,0.99999990813255390520,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002035603429249,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +103 ,0 ,-1.2767307739428979118,-0.0004642412496656610,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,-0.0003830830657511189,0.99999991996687420670,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000733828273951,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +104 ,0 ,-0.4255769229786898200,-0.0004642412418241660,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,-0.0003830830657402898,0.99999992588403441295,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000082940696302,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +105 ,0 ,0.42557692297868982000,-0.0004642412418241660,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,-0.0003830830657402898,0.99999992588403441295,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000082940696302,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +106 ,0 ,1.27673077394289791186,-0.0004642412496656610,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,-0.0003830830657511189,0.99999991996687420670,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000733828273951,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +107 ,0 ,2.12788463992758902776,-0.0004642412639256439,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,-0.0003830830657731686,0.99999990813255390520,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002035603429249,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +108 ,0 ,2.97903853094641757337,-0.0004642412861942799,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,-0.0003830830658062139,0.99999989038107339744,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003988266234955,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +109 ,0 ,3.83019245701304322793,-0.0004642413154932556,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,-0.0003830830658501846,0.99999986671243301650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006591816745640,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +110 ,0 ,4.68134642814112300612,-0.0004642413525654769,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,-0.0003830830659049143,0.99999983712663298440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009846255015872,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +111 ,0 ,5.53250045434431836355,-0.0004642413966301533,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,-0.0003830830659705315,0.99999980162367296809,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013751581136602,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +112 ,0 ,-5.5325004238577379922,-0.0051104693245821349,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,-0.0011502118149598705,0.99999921350609288772,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013792737190669,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +113 ,0 ,-4.6813464023447881601,-0.0051104689269180431,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,-0.0011502118147275039,0.99999924900907355418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009887411106319,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +114 ,0 ,-3.8301924359069539072,-0.0051104685957476898,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,-0.0011502118145343758,0.99999927859489112780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006632972872466,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +115 ,0 ,-2.9790385145305702252,-0.0051104683300878814,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,-0.0011502118143795164,0.99999930226354505347,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004029422379971,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +116 ,0 ,-2.1278846282019845403,-0.0051104681308080874,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,-0.0011502118142633374,0.99999932001503599732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002076759610645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +117 ,0 ,-1.2767307669075358411,-0.0051104679985304064,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,-0.0011502118141860028,0.99999933184936318220,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000774984455347,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +118 ,0 ,-0.4255769206335690002,-0.0051104679323017397,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,-0.0011502118141474742,0.99999933776652683015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000124096877698,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +119 ,0 ,0.42557692063356900025,-0.0051104679323017397,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,-0.0011502118141474742,0.99999933776652683015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000124096877698,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +120 ,0 ,1.27673076690753584117,-0.0051104679985304064,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,-0.0011502118141860028,0.99999933184936318220,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000774984455347,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +121 ,0 ,2.12788462820198498448,-0.0051104681308080874,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,-0.0011502118142633374,0.99999932001503599732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002076759610645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +122 ,0 ,2.97903851453057022524,-0.0051104683300878814,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,-0.0011502118143795164,0.99999930226354505347,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004029422379971,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +123 ,0 ,3.83019243590695390722,-0.0051104685957476898,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,-0.0011502118145343758,0.99999927859489112780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006632972872466,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +124 ,0 ,4.68134640234478904829,-0.0051104689269180431,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,-0.0011502118147275039,0.99999924900907355418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009887411106319,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +125 ,0 ,5.53250042385773799225,-0.0051104693245821349,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,-0.0011502118149598705,0.99999921350609288772,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013792737190669,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +126 ,0 ,-5.5325003665484100423,-0.0147343094777857980,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,-0.0019186300544351566,0.99999803442744028547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013948325868113,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +127 ,0 ,-4.6813463538522839257,-0.0147343083704547742,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,-0.0019186300539900187,0.99999806993046247427,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010042999838333,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +128 ,0 ,-3.8301923962312698357,-0.0147343074469585989,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,-0.0019186300536191025,0.99999809951631479787,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006788561659050,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +129 ,0 ,-2.9790384836717080929,-0.0147343067081407985,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,-0.0019186300533223469,0.99999812318499647911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004185011257504,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +130 ,0 ,-2.1278846061599403505,-0.0147343061544944788,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,-0.0019186300530997925,0.99999814093650818414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002232348488178,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +131 ,0 ,-1.2767307536823098157,-0.0147343057848594548,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,-0.0019186300529516380,0.99999815277084924680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000930573369259,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +132 ,0 ,-0.4255769162251604731,-0.0147343056006547009,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,-0.0019186300528774950,0.99999815868801966711,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000279685773421,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +133 ,0 ,0.42557691622516047313,-0.0147343056006547009,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,-0.0019186300528774950,0.99999815868801966711,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000279685773421,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +134 ,0 ,1.27673075368230981574,-0.0147343057848594548,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,-0.0019186300529516380,0.99999815277084924680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000930573369259,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +135 ,0 ,2.12788460615994079461,-0.0147343061544944788,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,-0.0019186300530997925,0.99999814093650818414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002232348488178,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +136 ,0 ,2.97903848367170809297,-0.0147343067081407985,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,-0.0019186300533223469,0.99999812318499647911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004185011257504,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +137 ,0 ,3.83019239623126983573,-0.0147343074469585989,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,-0.0019186300536191025,0.99999809951631479787,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006788561659050,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +138 ,0 ,4.68134635385228392578,-0.0147343083704547742,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,-0.0019186300539900187,0.99999806993046247427,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010042999838333,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +139 ,0 ,5.53250036654841004235,-0.0147343094777857980,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,-0.0019186300544351566,0.99999803442744028547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013948325868113,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +140 ,0 ,-5.5325002862762060473,-0.0293607251172388200,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,-0.0026883450477043933,0.99999626139348296582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014295544697233,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +141 ,0 ,-4.6813462859296572915,-0.0293607229408725661,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,-0.0026883450469991649,0.99999629689656777120,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010390218776592,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +142 ,0 ,-3.8301923406582156772,-0.0293607211263358404,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,-0.0026883450464114827,0.99999632648247238631,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007135780688258,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +143 ,0 ,-2.9790384404482237457,-0.0293607196750424112,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,-0.0026883450459413969,0.99999635015119614500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004532230304903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +144 ,0 ,-2.1278845752860240381,-0.0293607185867077562,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,-0.0026883450455886291,0.99999636790273904729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002579567590146,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +145 ,0 ,-1.2767307351579608720,-0.0293607178607816245,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,-0.0026883450453535303,0.99999637973710087113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001277792471228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +146 ,0 ,-0.4255769100503776214,-0.0293607174981505222,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,-0.0026883450452360835,0.99999638565428183856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000626904948148,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +147 ,0 ,0.42557691005037762144,-0.0293607174981505222,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,-0.0026883450452360835,0.99999638565428183856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000626904948148,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +148 ,0 ,1.27673073515796087207,-0.0293607178607816245,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,-0.0026883450453535303,0.99999637973710087113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001277792471228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +149 ,0 ,2.12788457528602492629,-0.0293607185867077562,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,-0.0026883450455886291,0.99999636790273904729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002579567590146,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +150 ,0 ,2.97903844044822374570,-0.0293607196750424112,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,-0.0026883450459413969,0.99999635015119614500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004532230304903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +151 ,0 ,3.83019234065821567725,-0.0293607211263358404,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,-0.0026883450464114827,0.99999632648247238631,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007135780688258,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +152 ,0 ,4.68134628592965817972,-0.0293607229408725661,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,-0.0026883450469991649,0.99999629689656777120,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010390218776592,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +153 ,0 ,5.53250028627620604737,-0.0293607251172388200,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,-0.0026883450477043933,0.99999626139348296582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014295544697233,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +154 ,0 ,-5.5325001869399770271,-0.0490149350023435168,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,-0.0034593641298178785,0.99999389138127625642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014912370679667,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +155 ,0 ,-4.6813462018759324223,-0.0490149313937941755,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,-0.0034593641288048720,0.99999392688444521670,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011007044849975,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +156 ,0 ,-3.8301922718869909623,-0.0490149283872408567,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,-0.0034593641279605930,0.99999395647041977586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007752606816211,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +157 ,0 ,-2.9790383869594956323,-0.0490149259822842894,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,-0.0034593641272855379,0.99999398013919960082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005149056505615,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +158 ,0 ,-2.1278845370797920821,-0.0490149241784554948,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,-0.0034593641267787978,0.99999399789078458056,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003196393863618,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +159 ,0 ,-1.2767307122342219649,-0.0490149229761982982,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,-0.0034593641264412614,0.99999400972517460406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001894618781079,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +160 ,0 ,-0.4255769024091313745,-0.0490149223748500284,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,-0.0034593641262722803,0.99999401564236956030,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001243731239810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +161 ,0 ,0.42557690240913137458,-0.0490149223748500284,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,-0.0034593641262722803,0.99999401564236956030,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001243731239810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +162 ,0 ,1.27673071223422196496,-0.0490149229761982982,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,-0.0034593641264412614,0.99999400972517460406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001894618781079,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +163 ,0 ,2.12788453707979252627,-0.0490149241784554948,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,-0.0034593641267787978,0.99999399789078458056,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003196393863618,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +164 ,0 ,2.97903838695949563231,-0.0490149259822842894,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,-0.0034593641272855379,0.99999398013919960082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005149056505615,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +165 ,0 ,3.83019227188699096231,-0.0490149283872408567,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,-0.0034593641279605930,0.99999395647041977586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007752606816211,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +166 ,0 ,4.68134620187593242235,-0.0490149313937941755,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,-0.0034593641288048720,0.99999392688444521670,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011007044849975,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +167 ,0 ,5.53250018693997702712,-0.0490149350023435168,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,-0.0034593641298178785,0.99999389138127625642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014912370679667,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +168 ,0 ,-5.5325000724781041583,-0.0737224169448966043,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,-0.0042316947085615629,0.99999092133876832377,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015877571440796,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +169 ,0 ,-4.6813461050235840588,-0.0737224115415915509,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,-0.0042316947071926094,0.99999095684204297729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011972245683864,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +170 ,0 ,-3.8301921926441662158,-0.0737224070389522756,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,-0.0042316947060516254,0.99999098642810535508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008717807722860,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +171 ,0 ,-2.9790383253261909501,-0.0737224034377950560,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,-0.0042316947051389630,0.99999101009695567920,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006114257485023,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +172 ,0 ,-2.1278844930560047998,-0.0737224007360162691,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,-0.0042316947044539164,0.99999102784859361658,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004161594879406,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +173 ,0 ,-1.2767306858199505281,-0.0737223989349240910,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,-0.0042316947039977414,0.99999103968301861211,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002859819833247,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +174 ,0 ,-0.4255768936043742289,-0.0737223980344576951,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,-0.0042316947037695186,0.99999104560023155396,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002208932328358,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +175 ,0 ,0.42557689360437422898,-0.0737223980344576951,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,-0.0042316947037695186,0.99999104560023155396,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002208932328358,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +176 ,0 ,1.27673068581995052817,-0.0737223989349240910,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,-0.0042316947039977414,0.99999103968301861211,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002859819833247,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +177 ,0 ,2.12788449305600568806,-0.0737224007360162691,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,-0.0042316947044539164,0.99999102784859361658,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004161594879406,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +178 ,0 ,2.97903832532619095019,-0.0737224034377950560,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,-0.0042316947051389630,0.99999101009695567920,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006114257485023,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +179 ,0 ,3.83019219264416621584,-0.0737224070389522756,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,-0.0042316947060516254,0.99999098642810535508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008717807722860,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +180 ,0 ,4.68134610502358494699,-0.0737224115415915509,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,-0.0042316947071926094,0.99999095684204297729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011972245683864,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +181 ,0 ,5.53250007247810415833,-0.0737224169448966043,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,-0.0042316947085615629,0.99999092133876832377,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015877571440796,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +182 ,0 ,-5.5324999468690867487,-0.1035089114318905600,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,-0.0050053442654663833,0.99998734818439949378,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017270717034989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +183 ,0 ,-4.6813459987390393379,-0.1035089038666126559,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,-0.0050053442636926086,0.99998738368780148988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013365391369006,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +184 ,0 ,-3.8301921056840892987,-0.1035088975623240092,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,-0.0050053442622143510,0.99998741327397011602,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010110953462572,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +185 ,0 ,-2.9790382576905800604,-0.1035088925183670627,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,-0.0050053442610318334,0.99998743694290526118,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007507403279305,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +186 ,0 ,-2.1278844447448550525,-0.1035088887358819875,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,-0.0050053442601448666,0.99998745469460681434,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005554740728257,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +187 ,0 ,-1.2767306568332612570,-0.1035088862141353011,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,-0.0050053442595536165,0.99998746652907433141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004252965663908,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +188 ,0 ,-0.4255768839421447125,-0.1035088849529834792,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,-0.0050053442592579390,0.99998747244630847852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003602078177209,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +189 ,0 ,0.42557688394214471250,-0.1035088849529834792,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,-0.0050053442592579390,0.99998747244630847852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003602078177209,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +190 ,0 ,1.27673065683326125707,-0.1035088862141353011,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,-0.0050053442595536165,0.99998746652907433141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004252965663908,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +191 ,0 ,2.12788444474485594071,-0.1035088887358819875,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,-0.0050053442601448666,0.99998745469460681434,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005554740728257,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +192 ,0 ,2.97903825769058006045,-0.1035088925183670627,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,-0.0050053442610318334,0.99998743694290526118,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007507403279305,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +193 ,0 ,3.83019210568408929873,-0.1035088975623240092,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,-0.0050053442622143510,0.99998741327397011602,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010110953462572,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +194 ,0 ,4.68134599873904022615,-0.1035089038666126559,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,-0.0050053442636926086,0.99998738368780148988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013365391369006,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +195 ,0 ,5.53249994686908674879,-0.1035089114318905600,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,-0.0050053442654663833,0.99998734818439949378,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017270717034989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +196 ,0 ,-5.5324996004110484904,-0.1052689433153378845,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00495130793918071004,0.99998761719822049087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010341555116610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +197 ,0 ,-4.6813457055822755847,-0.1052689359895805643,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00495130793934610811,0.99998765270160316909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006436230432882,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +198 ,0 ,-3.8301918658285831753,-0.1052689298850338212,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00495130793948350862,0.99998768228775580801,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003181793363182,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +199 ,0 ,-2.9790380711363129151,-0.1052689250015643035,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00495130793959354040,0.99998770595667818561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000578243852942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/Ellipsoid.rayx.csv b/Intern/RayCore/tests/output/Ellipsoid.rayx.csv new file mode 100644 index 000000000..5f1d3a137 --- /dev/null +++ b/Intern/RayCore/tests/output/Ellipsoid.rayx.csv @@ -0,0 +1,238 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.8208624317208490506,0.00271895172861148651,5.86883048335785151294,1.00000000000000000000,0.00082563400467130544,0.17465483853544519488,0.98462937479269208029,100.000000000000000000,0.70094095336303818832,0.70094095336303818832,0.00000000000000001113,0.00000000000000000502,10005.7792834639330976,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +0 ,1 ,0.00000000000000053564,-0.0000000000002071379,0.00000000000000000000,1.00000000000000000000,0.00082563400467130544,0.00102234248072186300,0.99999913657179828607,100.000000000000000000,0.70094095336303818832,0.70094095336303818832,0.00000000000000001113,0.00000000000000000502,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +0 ,2 ,0.00000000000000053564,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,0.00082563400467130544,0.34298053570088166130,0.93934214770701418562,100.000000000000000000,0.70094095336303818832,0.70094095336303818832,0.00000000000000001113,0.00000000000000000502,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,13.1488109581360514965,0.42123782399874459825,-57.502073563837001302,1.00000000000000000000,-0.0124434145014516561,0.16393380528068624002,0.98639285729456649409,100.000000000000000000,0.70869386921155264058,0.70869386921155264058,0.00000000000000001095,0.00000000000000000499,9943.31166444691552896,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +1 ,1 ,-0.0000000000000105729,-0.0000000000003192404,0.00000000000000000000,1.00000000000000000000,-0.0124434145014516561,-0.0098420397116644707,0.99987413992454998723,100.000000000000000000,0.70869386921155264058,0.70869386921155264058,0.00000000000000001095,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,2 ,-0.0000000000000105729,342.020143325668357192,10939.6926207859087298,0.00000000000000000000,-0.0124434145014516561,0.33272860455409131175,0.94294052683455675811,100.000000000000000000,0.70869386921155264058,0.70869386921155264058,0.00000000000000001095,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,-18.211469373818474082,0.54034079004051693839,-20.203586581015056111,1.00000000000000000000,0.01785484704958924251,0.16971798854218700380,0.98533091334943401218,100.000000000000000000,0.70422877614141543567,0.70422877614141543567,0.00000000000000001105,0.00000000000000000501,9980.02658195621734193,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +2 ,1 ,0.00000000000001579326,-0.0000000000000930742,0.00000000000000000000,1.00000000000000000000,0.01785484704958924251,-0.0039613265600383761,0.99983274217677042816,100.000000000000000000,0.70422877614141543567,0.70422877614141543567,0.00000000000000001105,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,2 ,0.00000000000001579326,342.020143325668527722,10939.6926207859087298,0.00000000000000000000,0.01785484704958924251,0.33824050844400405102,0.94089030332147483015,100.000000000000000000,0.70422877614141543567,0.70422877614141543567,0.00000000000000001105,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,-4.1820973275160042703,0.05339703631939562988,-23.445371624948215583,1.00000000000000000000,0.00408768500637922502,0.16967581727489661203,0.98549145499257595481,100.000000000000000000,0.70461854456259254142,0.70461854456259254142,0.00000000000000001104,0.00000000000000000501,9976.90322982582074473,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +3 ,1 ,-0.0000000000000030707,-0.0000000000000818897,0.00000000000000000000,1.00000000000000000000,0.00408768500637922502,-0.0040307349147915569,0.99998352186790306905,100.000000000000000000,0.70461854456259254142,0.70461854456259254142,0.00000000000000001104,0.00000000000000000501,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,2 ,-0.0000000000000030707,342.020143325668584566,10939.6926207859087298,0.00000000000000000000,0.00408768500637922502,0.33822685561679338706,0.94105572894003730599,100.000000000000000000,0.70461854456259254142,0.70461854456259254142,0.00000000000000001104,0.00000000000000000501,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,2.87225448589241105779,0.02448549018802721743,-15.578105371346707030,1.00000000000000000000,-0.0028288460755579018,0.17099971560683227544,0.98526701705287134114,100.000000000000000000,0.70364766648957521866,0.70364766648957521866,0.00000000000000001107,0.00000000000000000501,9984.65508225789562857,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +4 ,1 ,-0.0000000000000002538,-0.0000000000005914062,0.00000000000000000000,1.00000000000000000000,-0.0028288460755579018,-0.0026879763340723747,0.99999238617756880387,100.000000000000000000,0.70364766648957521866,0.70364766648957521866,0.00000000000000001107,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,2 ,-0.0000000000000002538,342.020143325668072975,10939.6926207859087298,0.00000000000000000000,-0.0028288460755579018,0.33949166771905453510,0.94060480818418923387,100.000000000000000000,0.70364766648957521866,0.70364766648957521866,0.00000000000000001107,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,10.0093102601071493040,0.34311327481168019115,-63.731589598318691969,3.00000000000000000000,-0.0094177608163586983,0.16306274881034044099,0.98657075049467257699,100.000000000000000000,0.70941460462584193802,0.70941460462584193802,0.00000000000000001093,0.00000000000000000499,9937.18788836504245409,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +6 ,0 ,-3.8960504180493127357,0.03524304551839960858,-15.480701986288000426,3.00000000000000000000,0.00383752613923638323,0.17100501873196569113,0.98526268424294383141,100.000000000000000000,0.70363577122196696578,0.70363577122196696578,0.00000000000000001107,0.00000000000000000501,9984.74947747859005175,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +7 ,0 ,-2.7661422826941146624,0.11115585663511395875,45.0235014847562595718,1.00000000000000000000,0.00289443432356383239,0.18158556610744955306,0.98337088854174625751,100.000000000000000000,0.69575817363116787550,0.69575817363116787550,0.00000000000000001125,0.00000000000000000503,10044.3237007747193274,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +7 ,1 ,-0.0000000000000030480,-0.0000000000007772039,0.00000000000000000000,1.00000000000000000000,0.00289443432356383239,0.00806631057174291704,0.99996327776759197369,100.000000000000000000,0.69575817363116787550,0.69575817363116787550,0.00000000000000001125,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,2 ,-0.0000000000000030480,342.020143325667902445,10939.6926207859087298,0.00000000000000000000,0.00289443432356383239,0.34958743610371140198,0.93689927247723880920,100.000000000000000000,0.69575817363116787550,0.69575817363116787550,0.00000000000000001125,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-5.0549440832372329879,0.06539019087414953135,22.5412873604695072060,1.00000000000000000000,0.00516965640244173435,0.17752191791894109118,0.98410326862126684677,100.000000000000000000,0.69877418959926507202,0.69877418959926507202,0.00000000000000001118,0.00000000000000000502,10022.1895441929791559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +8 ,1 ,-0.0000000000000030107,-0.0000000000003103798,0.00000000000000000000,1.00000000000000000000,0.00516965640244173435,0.00393722186401735362,0.99997888624544162272,100.000000000000000000,0.69877418959926507202,0.69877418959926507202,0.00000000000000001118,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,2 ,-0.0000000000000030107,342.020143325668357192,10939.6926207859087298,0.00000000000000000000,0.00516965640244173435,0.34571270032832251972,0.93832617116031657999,100.000000000000000000,0.69877418959926507202,0.69877418959926507202,0.00000000000000001118,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,2.84358472285670416113,0.02019926816361695964,-12.536772634059669684,3.00000000000000000000,-0.0028088971444116712,0.17150997077530849566,0.98517837979803679626,100.000000000000000000,0.70326929520977832233,0.70326929520977832233,0.00000000000000001108,0.00000000000000000501,9987.65081928541076194,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +10 ,0 ,-2.5585713875464297650,0.48040466971745759972,96.9702440257593281103,1.00000000000000000000,0.00282849085987728170,0.19143630915751891352,0.98150096239158235444,100.000000000000000000,0.68834960815050028060,0.68834960815050028060,0.00000000000000001141,0.00000000000000000505,10095.4287942590563034,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +10 ,1 ,0.00000000000000221260,0.00000000000003241143,0.00000000000000000000,1.00000000000000000000,0.00282849085987728170,0.01809210796873001944,0.99983232357666007583,100.000000000000000000,0.68834960815050028060,0.68834960815050028060,0.00000000000000001141,0.00000000000000000505,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,2 ,0.00000000000000221260,342.020143325668698253,10939.6926207859087298,0.00000000000000000000,0.00282849085987728170,0.35896381496400314725,0.93334719112768749216,100.000000000000000000,0.68834960815050028060,0.68834960815050028060,0.00000000000000001141,0.00000000000000000505,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,-13.164254617793801571,-388.75767567263636692,0.00000000000000000000,1.00000000000000000000,-0.0011888942174626106,-0.3439958881558409786,0.93897040180317381530,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.6879014430087408,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +11 ,1 ,-13.164254617793801571,-23.292575777789181756,11072.6555767384179489,0.00000000000000000000,-0.0011888942174626106,-0.0021036062774562364,0.99999708068132320271,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.6879014430087408,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +12 ,0 ,7.44813000626506571677,0.08785896030592459104,-0.2110985822887304907,1.00000000000000000000,-0.0074464889925757258,0.17352207892580903680,0.98480182672807248245,100.000000000000000000,0.70171896490464014117,0.70171896490464014117,0.00000000000000001111,0.00000000000000000502,9999.77962584904344112,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +12 ,1 ,-0.0000000000000029772,0.00000000000001527144,0.00000000000000000000,1.00000000000000000000,-0.0074464889925757258,-0.0001231539294608149,0.99997226693283480791,100.000000000000000000,0.70171896490464014117,0.70171896490464014117,0.00000000000000001111,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,2 ,-0.0000000000000029772,342.020143325668641409,10939.6926207859087298,0.00000000000000000000,-0.0074464889925757258,0.34189493121932684749,0.93970868135194673964,100.000000000000000000,0.70171896490464014117,0.70171896490464014117,0.00000000000000001111,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-15.162411375714913930,0.38720583707064382128,-23.764747956230824144,1.00000000000000000000,0.01481487339979122366,0.16928965315473357144,0.98545498773962181271,100.000000000000000000,0.70466359036019554640,0.70466359036019554640,0.00000000000000001104,0.00000000000000000501,9976.54127939233148936,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +13 ,1 ,-0.0000000000000044650,-0.0000000000000229160,0.00000000000000000000,1.00000000000000000000,0.01481487339979122366,-0.0044046998622432071,0.99988055193871605563,100.000000000000000000,0.70466359036019554640,0.70466359036019554640,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,2 ,-0.0000000000000044650,342.020143325668641409,10939.6926207859087298,0.00000000000000000000,0.01481487339979122366,0.33784022572530170158,0.94108687240234356607,100.000000000000000000,0.70466359036019554640,0.70466359036019554640,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,-7.6330117877166268058,0.20700265372352003034,-49.972482919756274100,3.00000000000000000000,0.00727478189489976292,0.16530129323875486502,0.98621628459581667236,100.000000000000000000,0.70780853260618159517,0.70780853260618159517,0.00000000000000001097,0.00000000000000000500,9950.75730131950513168,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +15 ,0 ,-9.5293571310425804199,0.14858471107732842964,-10.676498352055984852,3.00000000000000000000,0.00943000814177996464,0.17169076063268517984,0.98510575963183577563,100.000000000000000000,0.70303934154907421483,0.70303934154907421483,0.00000000000000001108,0.00000000000000000501,9989.46459135889563185,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +16 ,0 ,3.21126326829594654910,0.17243483250383706550,-57.972148343796597202,1.00000000000000000000,-0.0030377588755008933,0.16410285717839306895,0.98643855575849337391,100.000000000000000000,0.70874440977433472710,0.70874440977433472710,0.00000000000000001095,0.00000000000000000499,9942.88408003862969053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +16 ,1 ,0.00000000000000604580,-0.0000000000007697755,0.00000000000000000000,1.00000000000000000000,-0.0030377588755008933,-0.0096834915471244453,0.99994849968009391627,100.000000000000000000,0.70874440977433472710,0.70874440977433472710,0.00000000000000001095,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,2 ,0.00000000000000604580,342.020143325667902445,10939.6926207859087298,0.00000000000000000000,-0.0030377588755008933,0.33290302362859752749,0.94295617548216481562,100.000000000000000000,0.70874440977433472710,0.70874440977433472710,0.00000000000000001095,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-8.9753185992343205157,0.19074964951178000061,-37.252138209418106384,1.00000000000000000000,0.00865747419155783910,0.16731475209391583058,0.98586551916190567901,100.000000000000000000,0.70629586299825108941,0.70629586299825108941,0.00000000000000001100,0.00000000000000000500,9963.28670456951476808,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +17 ,1 ,-0.0000000000000033867,-0.0000000000004020843,0.00000000000000000000,1.00000000000000000000,0.00865747419155783910,-0.0064208857717232307,0.99994190849595276926,100.000000000000000000,0.70629586299825108941,0.70629586299825108941,0.00000000000000001100,0.00000000000000000500,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,2 ,-0.0000000000000033867,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,0.00865747419155783910,0.33596661588253085017,0.94183410490014729532,100.000000000000000000,0.70629586299825108941,0.70629586299825108941,0.00000000000000001100,0.00000000000000000500,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,-3.3323240961560571804,0.14540298727249920118,51.0591502549130566990,1.00000000000000000000,0.00350868014522791316,0.18268503395654064891,0.98316522900880498614,100.000000000000000000,0.69492990358146056184,0.69492990358146056184,0.00000000000000001127,0.00000000000000000503,10050.2627887901708163,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +18 ,1 ,-0.0000000000000008841,-0.0000000000004261113,0.00000000000000000000,1.00000000000000000000,0.00350868014522791316,0.00918478743683052642,0.99995166325346862556,100.000000000000000000,0.69492990358146056184,0.69492990358146056184,0.00000000000000001127,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,2 ,-0.0000000000000008841,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,0.00350868014522791316,0.35063448816256886919,0.93650581678631938942,100.000000000000000000,0.69492990358146056184,0.69492990358146056184,0.00000000000000001127,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,13.4323762541003475234,0.36351637655365492962,-42.026632788471637525,3.00000000000000000000,-0.0128978902528744353,0.16638951303553167759,0.98597574735833304337,100.000000000000000000,0.70686989974632918887,0.70686989974632918887,0.00000000000000001099,0.00000000000000000500,9958.56019932354683987,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +20 ,0 ,9.57313839504018382342,0.15442584148982857472,13.2227770407213096603,1.00000000000000000000,-0.0096992279036101462,0.17577886888997210079,0.98438189450529600676,100.000000000000000000,0.69999462871127526852,0.69999462871127526852,0.00000000000000001115,0.00000000000000000502,10012.9999531739049416,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +20 ,1 ,0.00000000000001046081,-0.0000000000004732327,0.00000000000000000000,1.00000000000000000000,-0.0096992279036101462,0.00217227078939581522,0.99995060188875883877,100.000000000000000000,0.69999462871127526852,0.69999462871127526852,0.00000000000000001115,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +20 ,2 ,0.00000000000001046081,342.020143325668186662,10939.6926207859087298,0.00000000000000000000,-0.0096992279036101462,0.34404451500772598171,0.93890324137856295827,100.000000000000000000,0.69999462871127526852,0.69999462871127526852,0.00000000000000001115,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,0 ,20.1961714341372307046,0.64636982942683607333,-0.9597205211121303536,1.00000000000000000000,-0.0201752502300818273,0.17282259534985325299,0.98474631749232466315,100.000000000000000000,0.70182428352998615928,0.70182428352998615928,0.00000000000000001111,0.00000000000000000502,9998.96302629128149419,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +21 ,1 ,0.00000000000001217805,-0.0000000000000955488,0.00000000000000000000,1.00000000000000000000,-0.0201752502300818273,-0.0008023717005354654,0.99979613695883395863,100.000000000000000000,0.70182428352998615928,0.70182428352998615928,0.00000000000000001111,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,2 ,0.00000000000001217805,342.020143325668527722,10939.6926207859087298,0.00000000000000000000,-0.0201752502300818273,0.34119643529298959716,0.93977547947449124876,100.000000000000000000,0.70182428352998615928,0.70182428352998615928,0.00000000000000001111,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,0 ,-8.5955539335088975150,0.29793139508224414369,-62.927312483675407861,3.00000000000000000000,0.00809363802681327751,0.16322789153979821996,0.98655519280320180808,100.000000000000000000,0.70932100404793252401,0.70932100404793252401,0.00000000000000001093,0.00000000000000000499,9937.98636595399693760,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +23 ,0 ,2.76758101826002933520,0.24744062013377027264,-71.340489242811685244,1.00000000000000000000,-0.0025858190829626584,0.16201257773378346938,0.98678530501610373093,100.000000000000000000,0.71028599023865091055,0.71028599023865091055,0.00000000000000001091,0.00000000000000000499,9929.70817777045886032,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +23 ,1 ,0.00000000000000455628,-0.0000000000007476836,0.00000000000000000000,1.00000000000000000000,-0.0025858190829626584,-0.0118022273268293658,0.99992700782096877176,100.000000000000000000,0.71028599023865091055,0.71028599023865091055,0.00000000000000001091,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +23 ,2 ,0.00000000000000455628,342.020143325667959288,10939.6926207859087298,0.00000000000000000000,-0.0025858190829626584,0.33090471260227538596,0.94366063005578193489,100.000000000000000000,0.71028599023865091055,0.71028599023865091055,0.00000000000000001091,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +24 ,0 ,-13.631146927497532317,0.34249262079148057313,30.1725376936455873533,1.00000000000000000000,0.01404788428625847185,0.17860406190529290459,0.98382073876189968242,100.000000000000000000,0.69776777458209493509,0.69776777458209493509,0.00000000000000001120,0.00000000000000000503,10029.6654891419184423,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +24 ,1 ,-0.0000000000000054357,-0.0000000000003605798,0.00000000000000000000,1.00000000000000000000,0.01404788428625847185,0.00505198644686781408,0.99988856098068246147,100.000000000000000000,0.69776777458209493509,0.69776777458209493509,0.00000000000000001120,0.00000000000000000503,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +24 ,2 ,-0.0000000000000054357,342.020143325668300349,10939.6926207859087298,0.00000000000000000000,0.01404788428625847185,0.34672934332074167862,0.93786002123315093115,100.000000000000000000,0.69776777458209493509,0.69776777458209493509,0.00000000000000001120,0.00000000000000000503,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,0 ,-1.6428047507136378513,0.05399616489106964095,32.0170672412832217901,1.00000000000000000000,0.00169627644685661597,0.17924450319817128440,0.98380309550207079016,100.000000000000000000,0.69751579984314715510,0.69751579984314715510,0.00000000000000001121,0.00000000000000000503,10031.5229845005906099,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +25 ,1 ,-0.0000000000000025884,-0.0000000000002293461,0.00000000000000000000,1.00000000000000000000,0.00169627644685661597,0.00568576171736103960,0.99998239722502568760,100.000000000000000000,0.69751579984314715510,0.69751579984314715510,0.00000000000000001121,0.00000000000000000503,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,2 ,-0.0000000000000025884,342.020143325668414036,10939.6926207859087298,0.00000000000000000000,0.00169627644685661597,0.34735699115140017401,0.93773143455067220486,100.000000000000000000,0.69751579984314715510,0.69751579984314715510,0.00000000000000001121,0.00000000000000000503,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,0 ,1.48634293136153994296,0.01944814609041152150,18.1852602720361922195,1.00000000000000000000,-0.0015134429775992351,0.17679445022965145639,0.98424663162154069073,100.000000000000000000,0.69934530691785368183,0.69934530691785368183,0.00000000000000001117,0.00000000000000000502,10017.9062221958865848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +26 ,1 ,0.00000000000000093715,-0.0000000000004173043,0.00000000000000000000,1.00000000000000000000,-0.0015134429775992351,0.00319591131979664582,0.99999374780104965942,100.000000000000000000,0.69934530691785368183,0.69934530691785368183,0.00000000000000001117,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,2 ,0.00000000000000093715,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,-0.0015134429775992351,0.34502117923158664991,0.93859367959303796613,100.000000000000000000,0.69934530691785368183,0.69934530691785368183,0.00000000000000001117,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +27 ,0 ,9.21983246934597389099,0.21043380428446564756,-40.815330999331585815,3.00000000000000000000,-0.0088633046912960956,0.16673096544178817035,0.98596258904321454341,100.000000000000000000,0.70672277704750774418,0.70672277704750774418,0.00000000000000001099,0.00000000000000000500,9959.77484804285268182,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +28 ,0 ,-7.6368970763968722081,0.12270059217004547491,-25.771361663137295039,1.00000000000000000000,0.00744774469676313336,0.16922755913931841753,0.98554886450478973447,100.000000000000000000,0.70490441700300077165,0.70490441700300077165,0.00000000000000001104,0.00000000000000000501,9974.60273044590940116,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +28 ,1 ,0.00000000000000489817,-0.0000000000002036382,0.00000000000000000000,1.00000000000000000000,0.00744774469676313336,-0.0044821520592364496,0.99996221999226020393,100.000000000000000000,0.70490441700300077165,0.70490441700300077165,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +28 ,2 ,0.00000000000000489817,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,0.00744774469676313336,0.33779537658670177879,0.94119010548112946867,100.000000000000000000,0.70490441700300077165,0.70490441700300077165,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +29 ,0 ,2.18419292645215890047,0.23855408114538140251,68.4396100641845777090,1.00000000000000000000,-0.0023419614194492466,0.18593533715851437437,0.98255919191286356095,100.000000000000000000,0.69249788385862753870,0.69249788385862753870,0.00000000000000001132,0.00000000000000000504,10067.3659658467768167,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +29 ,1 ,0.00000000000000235410,-0.0000000000004141328,0.00000000000000000000,1.00000000000000000000,-0.0023419614194492466,0.01249094846708347257,0.99991924245066021725,100.000000000000000000,0.69249788385862753870,0.69249788385862753870,0.00000000000000001132,0.00000000000000000504,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +29 ,2 ,0.00000000000000235410,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,-0.0023419614194492466,0.35373017471820422663,0.93534457752773558780,100.000000000000000000,0.69249788385862753870,0.69249788385862753870,0.00000000000000001132,0.00000000000000000504,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,0 ,19.8554955834969426575,1.01854492523166584305,-95.520364933029597409,1.00000000000000000000,-0.0181458995038627952,0.15776589176264257941,0.98730980433070425483,100.000000000000000000,0.71300888203566969991,0.71300888203566969991,0.00000000000000001084,0.00000000000000000498,9905.78609347691963193,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +30 ,1 ,0.00000000000000754026,-0.0000000000004261656,0.00000000000000000000,1.00000000000000000000,-0.0181458995038627952,-0.0160754749459850673,0.99970610953242455831,100.000000000000000000,0.71300888203566969991,0.71300888203566969991,0.00000000000000001084,0.00000000000000000498,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,2 ,0.00000000000000754026,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,-0.0181458995038627952,0.32681362168345556851,0.94491459032726232702,100.000000000000000000,0.71300888203566969991,0.71300888203566969991,0.00000000000000001084,0.00000000000000000498,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,0 ,9.64621458679677701297,0.30593501872860201507,-59.036542989922729418,1.00000000000000000000,-0.0091158273881513166,0.16381119752601025485,0.98644958982003927427,100.000000000000000000,0.70887040987140059744,0.70887040987140059744,0.00000000000000001094,0.00000000000000000499,9941.81688879553985316,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +31 ,1 ,-0.0000000000000007699,-0.0000000000005178586,0.00000000000000000000,1.00000000000000000000,-0.0091158273881513166,-0.0099726362787116145,0.99990871994231633745,100.000000000000000000,0.70887040987140059744,0.70887040987140059744,0.00000000000000001094,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,2 ,-0.0000000000000007699,342.020143325668129818,10939.6926207859087298,0.00000000000000000000,-0.0091158273881513166,0.33261771098636977450,0.94301768807865782306,100.000000000000000000,0.70887040987140059744,0.70887040987140059744,0.00000000000000001094,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +32 ,0 ,0.84692601683928570022,0.05808089008891697407,34.2623136268611361288,3.00000000000000000000,-0.0008764932366809061,0.17965033870078633837,0.98373013960348842932,100.000000000000000000,0.69721492636551052335,0.69721492636551052335,0.00000000000000001121,0.00000000000000000503,10033.7335402080061612,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +33 ,0 ,9.18153456725341676758,0.18149710336838234536,-32.538698647816900688,1.00000000000000000000,-0.0088962311096362541,0.16807644395511217583,0.98573382109951357410,100.000000000000000000,0.70572787307425577374,0.70572787307425577374,0.00000000000000001102,0.00000000000000000500,9967.92985095585936505,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +33 ,1 ,-0.0000000000000088838,-0.0000000000001474571,0.00000000000000000000,1.00000000000000000000,-0.0088962311096362541,-0.0056478965928740765,0.99994447762669291801,100.000000000000000000,0.70572787307425577374,0.70572787307425577374,0.00000000000000001102,0.00000000000000000500,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +33 ,2 ,-0.0000000000000088838,342.020143325668527722,10939.6926207859087298,0.00000000000000000000,-0.0088962311096362541,0.33669386680430674063,0.94157214122360644026,100.000000000000000000,0.70572787307425577374,0.70572787307425577374,0.00000000000000001102,0.00000000000000000500,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +34 ,0 ,-12.309168919022127397,0.47420276617363871229,-72.221989751321615358,1.00000000000000000000,0.01149109330198833621,0.16166471645259292144,0.98677883754619888367,100.000000000000000000,0.71039022321931799552,0.71039022321931799552,0.00000000000000001091,0.00000000000000000499,9928.80785182622639695,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +34 ,1 ,-0.0000000000000010731,-0.0000000000002642313,0.00000000000000000000,1.00000000000000000000,0.01149109330198833621,-0.0121436807491555696,0.99986023312890448533,100.000000000000000000,0.71039022321931799552,0.71039022321931799552,0.00000000000000001091,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +34 ,2 ,-0.0000000000000010731,342.020143325668414036,10939.6926207859087298,0.00000000000000000000,0.01149109330198833621,0.33056101305122298494,0.94371466631883682563,100.000000000000000000,0.71039022321931799552,0.71039022321931799552,0.00000000000000001091,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +35 ,0 ,7.71193572756398548762,0.12204199797192583076,23.5823203995562877821,1.00000000000000000000,-0.0078951563531782734,0.17764877987410385151,0.98406228335172019061,100.000000000000000000,0.69863797935164018149,0.69863797935164018149,0.00000000000000001118,0.00000000000000000502,10023.2067127512345905,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +35 ,1 ,0.00000000000001400978,-0.0000000000007561649,0.00000000000000000000,1.00000000000000000000,-0.0078951563531782734,0.00406927351839194394,0.99996055298156194535,100.000000000000000000,0.69863797935164018149,0.69863797935164018149,0.00000000000000001118,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +35 ,2 ,0.00000000000001400978,342.020143325667902445,10939.6926207859087298,0.00000000000000000000,-0.0078951563531782734,0.34583051794796110245,0.93826377920177828073,100.000000000000000000,0.69863797935164018149,0.69863797935164018149,0.00000000000000001118,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,0 ,7.64699682498994093293,0.09376732594999868941,-5.3544313848644087272,1.00000000000000000000,-0.0076067842627988661,0.17264175565063652473,0.98495530915826079443,100.000000000000000000,0.70237014051164137207,0.70237014051164137207,0.00000000000000001110,0.00000000000000000501,9994.71359239307639654,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +36 ,1 ,0.00000000000000283655,-0.0000000000001683672,0.00000000000000000000,1.00000000000000000000,-0.0076067842627988661,-0.0010167550603138837,0.99997055108754384633,100.000000000000000000,0.70237014051164137207,0.70237014051164137207,0.00000000000000001110,0.00000000000000000501,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,2 ,0.00000000000000283655,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,-0.0076067842627988661,0.34105463397708590811,0.94001269857163871623,100.000000000000000000,0.70237014051164137207,0.70237014051164137207,0.00000000000000001110,0.00000000000000000501,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,0 ,-13.423827974585105238,0.44799426586235541192,-60.415852092052993782,1.00000000000000000000,0.01266922787484858585,0.16346399817012841060,0.98646794776479762578,100.000000000000000000,0.70903287001190107297,0.70903287001190107297,0.00000000000000001094,0.00000000000000000499,9940.43835131937339610,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +37 ,1 ,0.00000000000000216023,-0.0000000000002440116,0.00000000000000000000,1.00000000000000000000,0.01266922787484858585,-0.0103177487198778568,0.99986650845320768077,100.000000000000000000,0.70903287001190107297,0.70903287001190107297,0.00000000000000001094,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,2 ,0.00000000000000216023,342.020143325668414036,10939.6926207859087298,0.00000000000000000000,0.01266922787484858585,0.33227897419250951305,0.94309605766042114982,100.000000000000000000,0.70903287001190107297,0.70903287001190107297,0.00000000000000001094,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +38 ,0 ,16.4509379631673908761,0.51373620176832879291,-44.575221710831542054,1.00000000000000000000,-0.0157580409340129443,0.16584219220836460273,0.98602639489490617741,100.000000000000000000,0.70717561215348023750,0.70717561215348023750,0.00000000000000001098,0.00000000000000000500,9956.02898659446691453,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +38 ,1 ,0.00000000000000637216,-0.0000000000005763130,0.00000000000000000000,1.00000000000000000000,-0.0157580409340129443,-0.0078990099416552227,0.99984463282445190657,100.000000000000000000,0.70717561215348023750,0.70717561215348023750,0.00000000000000001098,0.00000000000000000500,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +38 ,2 ,0.00000000000000637216,342.020143325668072975,10939.6926207859087298,0.00000000000000000000,-0.0157580409340129443,0.33454436326833164594,0.94224824390990924438,100.000000000000000000,0.70717561215348023750,0.70717561215348023750,0.00000000000000001098,0.00000000000000000500,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +39 ,0 ,9.77058820750191969750,0.17828606331963881004,22.9888901692427012335,1.00000000000000000000,-0.0099966556487147608,0.17748355932652087885,0.98407299172603568404,100.000000000000000000,0.69871733654995438200,0.69871733654995438200,0.00000000000000001118,0.00000000000000000502,10022.6143071399983455,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +39 ,1 ,-0.0000000000000152383,-0.0000000000002066932,0.00000000000000000000,1.00000000000000000000,-0.0099966556487147608,0.00390470355248968576,0.99994240842460913043,100.000000000000000000,0.69871733654995438200,0.69871733654995438200,0.00000000000000001118,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +39 ,2 ,-0.0000000000000152383,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,-0.0099966556487147608,0.34566966696143019976,0.93830301513882730102,100.000000000000000000,0.69871733654995438200,0.69871733654995438200,0.00000000000000001118,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +40 ,0 ,-13.827056985003961742,0.58404008391585959802,-79.431598123003539058,1.00000000000000000000,0.01282292178502232420,0.16049604065609485159,0.98695318714243596147,100.000000000000000000,0.71120913342062896944,0.71120913342062896944,0.00000000000000001089,0.00000000000000000498,9921.69216838283500692,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +40 ,1 ,-0.0000000000000063714,0.00000000000004737248,0.00000000000000000000,1.00000000000000000000,0.01282292178502232420,-0.0133248772239680599,0.99982899554066795300,100.000000000000000000,0.71120913342062896944,0.71120913342062896944,0.00000000000000001089,0.00000000000000000498,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +40 ,2 ,-0.0000000000000063714,342.020143325668698253,10939.6926207859087298,0.00000000000000000000,0.01282292178502232420,0.32944036755573757879,0.94408930557529102678,100.000000000000000000,0.71120913342062896944,0.71120913342062896944,0.00000000000000001089,0.00000000000000000498,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,0 ,-7.6042256962217589233,0.22410055915066051657,51.6354180992114919490,1.00000000000000000000,0.00801135575205329589,0.18270919790982340091,0.98313435866017984121,100.000000000000000000,0.69485189443374406614,0.69485189443374406614,0.00000000000000001127,0.00000000000000000503,10050.8191208120024384,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +41 ,1 ,0.00000000000001078319,0.00000000000004627634,0.00000000000000000000,1.00000000000000000000,0.00801135575205329589,0.00921394486514951274,0.99992545792125719916,100.000000000000000000,0.69485189443374406614,0.69485189443374406614,0.00000000000000001127,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,2 ,0.00000000000001078319,342.020143325668698253,10939.6926207859087298,0.00000000000000000000,0.00801135575205329589,0.35065292443132245470,0.93647121940120237049,100.000000000000000000,0.69485189443374406614,0.69485189443374406614,0.00000000000000001127,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +42 ,0 ,2.39901064426452448330,0.01320989529559026161,9.19950037835543277253,3.00000000000000000000,-0.0024209391784400739,0.17522210550858219324,0.98452595333725623216,100.000000000000000000,0.70051263191766999227,0.70051263191766999227,0.00000000000000001114,0.00000000000000000502,10009.0578624902409501,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +43 ,0 ,-0.4526835870140141215,0.00035056035658596960,-0.7399660894948142386,1.00000000000000000000,0.00045235392316904496,0.17352136921855512707,0.98483000045715807235,100.000000000000000000,0.70178455044895793335,0.70178455044895793335,0.00000000000000001111,0.00000000000000000502,9999.27122585196048021,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +43 ,1 ,0.00000000000000033626,-0.0000000000002378630,0.00000000000000000000,1.00000000000000000000,0.00045235392316904496,-0.0001287451713806173,0.99999988940029826967,100.000000000000000000,0.70178455044895793335,0.70178455044895793335,0.00000000000000001111,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +43 ,2 ,0.00000000000000033626,342.020143325668414036,10939.6926207859087298,0.00000000000000000000,0.00045235392316904496,0.34189912461083465933,0.93973655029815283956,100.000000000000000000,0.70178455044895793335,0.70178455044895793335,0.00000000000000001111,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,0 ,14.9882210124446757504,0.48569789131960416916,49.8840562275269121528,1.00000000000000000000,-0.0157614327625755362,0.18209557890279401415,0.98315450331131937211,100.000000000000000000,0.69509870241285454106,0.69509870241285454106,0.00000000000000001126,0.00000000000000000503,10049.0571994169731624,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +44 ,1 ,0.00000000000001461143,-0.0000000000002865735,0.00000000000000000000,1.00000000000000000000,-0.0157614327625755362,0.00860615002767125061,0.99983874270752870483,100.000000000000000000,0.69509870241285454106,0.69509870241285454106,0.00000000000000001126,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,2 ,0.00000000000001461143,342.020143325668357192,10939.6926207859087298,0.00000000000000000000,-0.0157614327625755362,0.35005212575776445405,0.93659761183217882241,100.000000000000000000,0.69509870241285454106,0.69509870241285454106,0.00000000000000001126,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,0 ,8.90570587251371392767,0.15082216403093190448,22.2755832804269999769,1.00000000000000000000,-0.0091052542475915012,0.17738487614039880058,0.98409943606413174954,100.000000000000000000,0.69881081663430433259,0.69881081663430433259,0.00000000000000001118,0.00000000000000000502,10021.9157389405754656,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +45 ,1 ,-0.0000000000000029865,-0.0000000000005193602,0.00000000000000000000,1.00000000000000000000,-0.0091052542475915012,0.00380292757458475542,0.99995131485835297979,100.000000000000000000,0.69881081663430433259,0.69881081663430433259,0.00000000000000001118,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,2 ,-0.0000000000000029865,342.020143325668129818,10939.6926207859087298,0.00000000000000000000,-0.0091052542475915012,0.34557707500576523296,0.93834619388344409074,100.000000000000000000,0.69881081663430433259,0.69881081663430433259,0.00000000000000001118,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,0 ,-0.3307864004869899288,-386.90290006754088381,0.00000000000000000000,1.00000000000000000000,-0.0000298758255289863,-0.3438484310890401740,0.93902516235990218795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.0421822671360132,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +46 ,1 ,-0.3307864004869899288,-21.549656828467220748,11072.0212061201254982,0.00000000000000000000,-0.0000298758255289863,-0.0019463127464399154,0.99999810548526935072,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.0421822671360132,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +47 ,0 ,-3.7334459048680939119,0.02230075292620381857,2.07407763459179816933,3.00000000000000000000,0.00374107545166759217,0.17398069302418059378,0.98474195747377923915,100.000000000000000000,0.70142680148950953267,0.70142680148950953267,0.00000000000000001112,0.00000000000000000502,10002.0393993379893800,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +48 ,0 ,7.52825323832961146308,0.40305219449320689451,79.1174593882176395709,1.00000000000000000000,-0.0081638782991516004,0.18787254831932909127,0.98215948637638161855,100.000000000000000000,0.69097045761255371232,0.69097045761255371232,0.00000000000000001135,0.00000000000000000504,10077.8582234485347726,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +48 ,1 ,0.00000000000000123490,-0.0000000000003961963,0.00000000000000000000,1.00000000000000000000,-0.0081638782991516004,0.01446813717548900424,0.99986200252724244386,100.000000000000000000,0.69097045761255371232,0.69097045761255371232,0.00000000000000001135,0.00000000000000000504,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +48 ,2 ,0.00000000000000123490,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,-0.0081638782991516004,0.35556854715058283655,0.93461455122865477740,100.000000000000000000,0.69097045761255371232,0.69097045761255371232,0.00000000000000001135,0.00000000000000000504,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +49 ,0 ,1.49659911924146382666,0.01015168628197833135,-11.807436983616005576,1.00000000000000000000,-0.0014793945041201800,0.17164191668924991263,0.98515829379198849302,100.000000000000000000,0.70317813099590575909,0.70317813099590575909,0.00000000000000001108,0.00000000000000000501,9988.37050220656783494,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +49 ,1 ,0.00000000000000029409,-0.0000000000000435318,0.00000000000000000000,1.00000000000000000000,-0.0014793945041201800,-0.0020366521329922946,0.99999683171497610878,100.000000000000000000,0.70317813099590575909,0.70317813099590575909,0.00000000000000001108,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +49 ,2 ,0.00000000000000029409,342.020143325668584566,10939.6926207859087298,0.00000000000000000000,-0.0014793945041201800,0.34010523272788995008,0.94038621962628132777,100.000000000000000000,0.70317813099590575909,0.70317813099590575909,0.00000000000000001108,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +50 ,0 ,-3.2479248710679478051,0.06630060813680353770,-32.533567236256210719,3.00000000000000000000,0.00314706542427192412,0.16819155160825169370,0.98574930786018022388,100.000000000000000000,0.70572524334667607881,0.70572524334667607881,0.00000000000000001102,0.00000000000000000500,9967.95127104186030919,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +51 ,0 ,2.38639377097429639107,0.03704219871626772409,-24.396318915645345271,1.00000000000000000000,-0.0023303922390261666,0.16953700081879910510,0.98552106757054103169,100.000000000000000000,0.70473475381719019594,0.70473475381719019594,0.00000000000000001104,0.00000000000000000501,9975.96905318757490022,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +51 ,1 ,0.00000000000000107002,-0.0000000000006801173,0.00000000000000000000,1.00000000000000000000,-0.0023303922390261666,-0.0041725846072017186,0.99998857933963813948,100.000000000000000000,0.70473475381719019594,0.70473475381719019594,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +51 ,2 ,0.00000000000000107002,342.020143325668016132,10939.6926207859087298,0.00000000000000000000,-0.0023303922390261666,0.33809529026478252200,0.94110899686103532957,100.000000000000000000,0.70473475381719019594,0.70473475381719019594,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,0 ,-14.493378582902934681,0.33580904053693927391,-9.6011612679789717361,1.00000000000000000000,0.01435694441967719052,0.17168088374831902420,0.98504799492325567644,100.000000000000000000,0.70290815781344440082,0.70290815781344440082,0.00000000000000001108,0.00000000000000000501,9990.49699161342869047,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +52 ,1 ,-0.0000000000000120203,-0.0000000000003886213,0.00000000000000000000,1.00000000000000000000,0.01435694441967719052,-0.0019791238735548115,0.99989497509269598118,100.000000000000000000,0.70290815781344440082,0.70290815781344440082,0.00000000000000001108,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,2 ,-0.0000000000000120203,342.020143325668300349,10939.6926207859087298,0.00000000000000000000,0.01435694441967719052,0.34012445459221907206,0.94027082988640842131,100.000000000000000000,0.70290815781344440082,0.70290815781344440082,0.00000000000000001108,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +53 ,0 ,12.4939909143168108585,0.24775574238375006053,-4.4313477427700034283,3.00000000000000000000,-0.0124392677678118474,0.17264093548357870022,0.98490627575051803432,100.000000000000000000,0.70225648239539728567,0.70225648239539728567,0.00000000000000001110,0.00000000000000000501,9995.60077429584998753,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +54 ,0 ,-17.401646228156440798,0.48071450343642624369,-6.8823326871978869334,1.00000000000000000000,0.01728332334388305718,0.17199000710932715874,0.98494706669380183150,100.000000000000000000,0.70256956437951778582,0.70256956437951778582,0.00000000000000001109,0.00000000000000000501,9993.15392752197658410,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +54 ,1 ,-0.0000000000000147404,-0.0000000000001801974,0.00000000000000000000,1.00000000000000000000,0.01728332334388305718,-0.0016571707878769729,0.99984925889814535437,100.000000000000000000,0.70256956437951778582,0.70256956437951778582,0.00000000000000001109,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +54 ,2 ,-0.0000000000000147404,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,0.01728332334388305718,0.34041135567165731190,0.94011775627523119780,100.000000000000000000,0.70256956437951778582,0.70256956437951778582,0.00000000000000001109,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +55 ,0 ,3.60526234965565262058,-342.70312529197684625,0.00000000000000000000,1.00000000000000000000,0.00032606381239634125,-0.3403211436641045972,0.94030921130101974281,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11056.9226408766189706,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +55 ,1 ,3.60526234965565262058,19.9845453685294387469,11056.9039928164256707,0.00000000000000000000,0.00032606381239634125,0.00180742382104117282,0.99999831344933820531,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11056.9226408766189706,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +56 ,0 ,11.8994768122247993602,0.22463718286265718648,1.73414155744581433005,1.00000000000000000000,-0.0119194523906198997,0.17371466551276948386,0.98472389106819901982,100.000000000000000000,0.70147387151198592469,0.70147387151198592469,0.00000000000000001112,0.00000000000000000502,10001.6758805472327367,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +56 ,1 ,0.00000000000001432774,-0.0000000000006304013,0.00000000000000000000,1.00000000000000000000,-0.0119194523906198997,0.00008004021981626740,0.99992895760062405763,100.000000000000000000,0.70147387151198592469,0.70147387151198592469,0.00000000000000001112,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +56 ,2 ,0.00000000000001432774,342.020143325668072975,10939.6926207859087298,0.00000000000000000000,-0.0119194523906198997,0.34207105859797931612,0.93959848739999840550,100.000000000000000000,0.70147387151198592469,0.70147387151198592469,0.00000000000000001112,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +57 ,0 ,7.83712448396275807027,0.15235259403091033769,33.2524961321846745931,1.00000000000000000000,-0.0081022769280714238,0.17936568743821790228,0.98374910585900721127,100.000000000000000000,0.69735224097407655374,0.69735224097407655374,0.00000000000000001121,0.00000000000000000503,10032.7256703840903355,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +57 ,1 ,0.00000000000000034215,-0.0000000000003116812,0.00000000000000000000,1.00000000000000000000,-0.0081022769280714238,0.00581448009963271127,0.99995027122840030031,100.000000000000000000,0.69735224097407655374,0.69735224097407655374,0.00000000000000001121,0.00000000000000000503,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +57 ,2 ,0.00000000000000034215,342.020143325668357192,10939.6926207859087298,0.00000000000000000000,-0.0081022769280714238,0.34746695912741010214,0.93765722170915466460,100.000000000000000000,0.69735224097407655374,0.69735224097407655374,0.00000000000000001121,0.00000000000000000503,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +58 ,0 ,-11.078788707728095985,0.25587490610302027205,34.6887235734814822762,3.00000000000000000000,0.01147021400805807271,0.17951843585836707584,0.98368773773874729204,100.000000000000000000,0.69716148088622609257,0.69716148088622609257,0.00000000000000001122,0.00000000000000000503,10034.1253702899521158,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +59 ,0 ,6.46046913624813878840,0.06632177593608047649,1.84415734869520320238,1.00000000000000000000,-0.0064721625070438132,0.17389603694526870047,0.98474274785205295756,100.000000000000000000,0.70145693327953262397,0.70145693327953262397,0.00000000000000001112,0.00000000000000000502,10001.8067177366065152,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +59 ,1 ,0.00000000000000276766,-0.0000000000005138987,0.00000000000000000000,1.00000000000000000000,-0.0064721625070438132,0.00025538176656357005,0.99997902272629457520,100.000000000000000000,0.70145693327953262397,0.70145693327953262397,0.00000000000000001112,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +59 ,2 ,0.00000000000000276766,342.020143325668186662,10939.6926207859087298,0.00000000000000000000,-0.0064721625070438132,0.34225294903703240567,0.93958556288820027635,100.000000000000000000,0.70145693327953262397,0.70145693327953262397,0.00000000000000001112,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +60 ,0 ,2.00127033499683459893,0.00721953829610212823,4.25151414192824628202,1.00000000000000000000,-0.0020096826623723796,0.17437085681350311672,0.98467800090675394741,100.000000000000000000,0.70114830536340777555,0.70114830536340777555,0.00000000000000001112,0.00000000000000000502,10004.1858983674646879,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +60 ,1 ,0.00000000000000318026,-0.0000000000008541457,0.00000000000000000000,1.00000000000000000000,-0.0020096826623723796,0.00073423124314569282,0.99999771103741930122,100.000000000000000000,0.70114830536340777555,0.70114830536340777555,0.00000000000000001112,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +60 ,2 ,0.00000000000000318026,342.020143325667845601,10939.6926207859087298,0.00000000000000000000,-0.0020096826623723796,0.34270931213549321592,0.93943934798964712218,100.000000000000000000,0.70114830536340777555,0.70114830536340777555,0.00000000000000001112,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +61 ,0 ,10.4794518388644171125,0.17414194811346284108,-2.9053341646778645390,1.00000000000000000000,-0.0104492958297827676,0.17297484123068854189,0.98487081209561688766,100.000000000000000000,0.70206224324438815109,0.70206224324438815109,0.00000000000000001110,0.00000000000000000502,9997.11406303612238843,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +61 ,1 ,0.00000000000000386725,-0.0000000000004696252,0.00000000000000000000,1.00000000000000000000,-0.0104492958297827676,-0.0006740570377157658,0.99994517742912858437,100.000000000000000000,0.70206224324438815109,0.70206224324438815109,0.00000000000000001110,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +61 ,2 ,0.00000000000000386725,342.020143325668186662,10939.6926207859087298,0.00000000000000000000,-0.0104492958297827676,0.34136798647779142967,0.93987164550525714723,100.000000000000000000,0.70206224324438815109,0.70206224324438815109,0.00000000000000001110,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,0 ,21.6850031053740117670,0.91527977813848249155,-63.937234455373108232,1.00000000000000000000,-0.0203979740965516617,0.16248100863239919866,0.98650080815301643966,100.000000000000000000,0.70944784709048624993,0.70944784709048624993,0.00000000000000001093,0.00000000000000000499,9936.90407671220964402,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +62 ,1 ,-0.0000000000000084471,0.00000000000002541394,0.00000000000000000000,1.00000000000000000000,-0.0203979740965516617,-0.0112915105842951168,0.99972817527640023271,100.000000000000000000,0.70944784709048624993,0.70944784709048624993,0.00000000000000001093,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,2 ,-0.0000000000000084471,342.020143325668641409,10939.6926207859087298,0.00000000000000000000,-0.0203979740965516617,0.33131662462115551992,0.94329911316739833981,100.000000000000000000,0.70944784709048624993,0.70944784709048624993,0.00000000000000001093,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +63 ,0 ,-14.352560807008686083,0.37390898543223860528,-33.309563037949502017,3.00000000000000000000,0.01389598542559728616,0.16776216764421114646,0.98572955555586705411,100.000000000000000000,0.70582436967987405296,0.70582436967987405296,0.00000000000000001102,0.00000000000000000500,9967.14336065937641251,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +64 ,0 ,-12.432433041412917162,0.27024510844508470297,-24.329460362983589050,1.00000000000000000000,0.01214106880123599040,0.16931467885624706948,0.98548725713332774311,100.000000000000000000,0.70473068758765000652,0.70473068758765000652,0.00000000000000001104,0.00000000000000000501,9976.00176352288872294,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +64 ,1 ,0.00000000000000418675,-0.0000000000004015730,0.00000000000000000000,1.00000000000000000000,0.01214106880123599040,-0.0043856578787796508,0.99991667675528528302,100.000000000000000000,0.70473068758765000652,0.70473068758765000652,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +64 ,2 ,0.00000000000000418675,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,0.01214106880123599040,0.33787047475158815679,0.94111430588398747865,100.000000000000000000,0.70473068758765000652,0.70473068758765000652,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +65 ,0 ,11.8531160881149784103,0.27582449110263940195,32.1246233968862355823,3.00000000000000000000,-0.0122398638419693190,0.17902920894883617153,0.98376761894071496072,100.000000000000000000,0.69750569045452981420,0.69750569045452981420,0.00000000000000001121,0.00000000000000000503,10031.5973902036585059,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +66 ,0 ,0.92222255721226042979,0.04601190752755438678,30.3692724031979821575,1.00000000000000000000,-0.0009506482300213906,0.17895310661878735536,0.98385714506702015569,100.000000000000000000,0.69773582091258312676,0.69773582091258312676,0.00000000000000001120,0.00000000000000000503,10029.9013577382756920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +66 ,1 ,0.00000000000000049778,-0.0000000000003759145,0.00000000000000000000,1.00000000000000000000,-0.0009506482300213906,0.00538940649832534823,0.99998502517064635775,100.000000000000000000,0.69773582091258312676,0.69773582091258312676,0.00000000000000001120,0.00000000000000000503,10999.9999999999963620,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +66 ,2 ,0.00000000000000049778,342.020143325668300349,10939.6926207859087298,0.00000000000000000000,-0.0009506482300213906,0.34707940714927881797,0.93783526346626966407,100.000000000000000000,0.69773582091258312676,0.69773582091258312676,0.00000000000000001120,0.00000000000000000503,10999.9999999999963620,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,0 ,-10.126807721163308073,0.20051532845564809526,-29.171573340688116360,1.00000000000000000000,0.00984373268201403292,0.16859927327464310775,0.98563552390229292043,100.000000000000000000,0.70532006858885587519,0.70532006858885587519,0.00000000000000001103,0.00000000000000000501,9971.24312003448721952,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +67 ,1 ,-0.0000000000000024151,0.00000000000010005390,0.00000000000000000000,1.00000000000000000000,0.00984373268201403292,-0.0051159410963307790,0.99993846214333803601,100.000000000000000000,0.70532006858885587519,0.70532006858885587519,0.00000000000000001103,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,2 ,-0.0000000000000024151,342.020143325668755096,10939.6926207859087298,0.00000000000000000000,0.00984373268201403292,0.33719168404251576021,0.94138454902311685668,100.000000000000000000,0.70532006858885587519,0.70532006858885587519,0.00000000000000001103,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +68 ,0 ,-19.215531137701301389,0.59850889974901533285,14.0834930407427219023,3.00000000000000000000,0.01948410984036972118,0.17546841302158810993,0.98429223581993874336,100.000000000000000000,0.69989114340613733933,0.69989114340613733933,0.00000000000000001115,0.00000000000000000502,10013.7844995162122359,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +69 ,0 ,-29.952819986205657443,-367.48533848962830461,0.00000000000000000000,1.00000000000000000000,-0.0027068847967085855,-0.3422993808882140998,0.93958704046950458632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11065.4210414224271517,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +69 ,1 ,-29.952819986205657443,-3.3031175000468238067,11065.3800089262131223,0.00000000000000000000,-0.0027068847967085855,-0.0002985080719189855,0.99999629182693872131,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11065.4210414224271517,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +70 ,0 ,0.02358475971254117911,0.00244496507809413956,7.14277698968306307136,3.00000000000000000000,-0.0000237518280470632,0.17487579413614121048,0.98459050171180528820,100.000000000000000000,0.70077731146627209035,0.70077731146627209035,0.00000000000000001113,0.00000000000000000502,10007.0339147871527529,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +71 ,0 ,4.68425747180554274962,0.03909904222683334429,-9.7247266663770073336,1.00000000000000000000,-0.0046397964311405484,0.17196125282712415582,0.98509278741406047785,100.000000000000000000,0.70291827139386486855,0.70291827139386486855,0.00000000000000001108,0.00000000000000000501,9990.41745875603919557,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +71 ,1 ,0.00000000000000150719,-0.0000000000000480407,0.00000000000000000000,1.00000000000000000000,-0.0046397964311405484,-0.0017107923654440494,0.99998777266452598677,100.000000000000000000,0.70291827139386486855,0.70291827139386486855,0.00000000000000001108,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +71 ,2 ,0.00000000000000150719,342.020143325668584566,10939.6926207859087298,0.00000000000000000000,-0.0046397964311405484,0.34040834236913269927,0.94026625629902116365,100.000000000000000000,0.70291827139386486855,0.70291827139386486855,0.00000000000000001108,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +72 ,0 ,-17.442337026379412634,0.57827874208914531450,42.2230204765055745497,1.00000000000000000000,0.01819752329772530638,0.18056316152225537763,0.98339503499199987235,100.000000000000000000,0.69614918274795645203,0.69614918274795645203,0.00000000000000001124,0.00000000000000000503,10041.4993985165165213,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +72 ,1 ,-0.0000000000000047335,-0.0000000000004043967,0.00000000000000000000,1.00000000000000000000,0.01819752329772530638,0.00705524562244474844,0.99980951868595224762,100.000000000000000000,0.69614918274795645203,0.69614918274795645203,0.00000000000000001124,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +72 ,2 ,-0.0000000000000047335,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,0.01819752329772530638,0.34858475712858061346,0.93710059078171370483,100.000000000000000000,0.69614918274795645203,0.69614918274795645203,0.00000000000000001124,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +73 ,0 ,-9.9670705550382532322,0.20245397450685648221,29.7948880402105551468,1.00000000000000000000,0.01026806314617295830,0.17868355937414512335,0.98385301366038024895,100.000000000000000000,0.69781544003455753255,0.69781544003455753255,0.00000000000000001120,0.00000000000000000503,10029.3134729354387673,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +73 ,1 ,0.00000000000001233207,-0.0000000000001717283,0.00000000000000000000,1.00000000000000000000,0.01026806314617295830,0.00512467169323285818,0.99993415014152919884,100.000000000000000000,0.69781544003455753255,0.69781544003455753255,0.00000000000000001120,0.00000000000000000503,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +73 ,2 ,0.00000000000001233207,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,0.01026806314617295830,0.34681323752171783203,0.93787800121280695542,100.000000000000000000,0.69781544003455753255,0.69781544003455753255,0.00000000000000001120,0.00000000000000000503,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +74 ,0 ,-8.5092956436319795443,0.11972664783007103128,9.72719000175554349141,3.00000000000000000000,0.00859145054641737362,0.17520382035882259286,0.98449469694314839518,100.000000000000000000,0.70044651717834005566,0.70044651717834005566,0.00000000000000001114,0.00000000000000000502,10009.5624018716662249,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +75 ,0 ,-21.496875829434536342,0.91950628007029611143,58.3492752395213116756,3.00000000000000000000,0.02280429579967206688,0.18323386833713312116,0.98280481968053601260,100.000000000000000000,0.69393318107875523459,0.69393318107875523459,0.00000000000000001129,0.00000000000000000504,10057.3321790649806644,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +76 ,0 ,1.69284855323381910885,0.00586796878565212613,5.24941812378072469869,3.00000000000000000000,-0.0017016440689034606,0.17454450124560783041,0.98464781596893058424,100.000000000000000000,0.70102045551948743984,0.70102045551948743984,0.00000000000000001113,0.00000000000000000502,10005.1688339708489365,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +77 ,0 ,11.6193842201899872890,-340.73943505270648302,0.00000000000000000000,1.00000000000000000000,0.00105093261113999286,-0.3401639305642029653,0.94036556502445300953,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11056.2600275444183353,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +77 ,1 ,11.6193842201899872890,21.8298105958810992888,11056.2323711993431061,0.00000000000000000000,0.00105093261113999286,0.00197442991947520320,0.99999749858044129080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11056.2600275444183353,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +78 ,0 ,8.43689657289664829420,0.12814560409166295129,17.3692640704914005311,1.00000000000000000000,-0.0085835654975946838,0.17653654367896806642,0.98425665918460114589,100.000000000000000000,0.69945406234590756788,0.69945406234590756788,0.00000000000000001116,0.00000000000000000502,10017.0871795338607626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +78 ,1 ,0.00000000000001286436,-0.0000000000003818410,0.00000000000000000000,1.00000000000000000000,-0.0085835654975946838,0.00294018168107916793,0.99995883802036089615,100.000000000000000000,0.69945406234590756788,0.69945406234590756788,0.00000000000000001116,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +78 ,2 ,0.00000000000001286436,342.020143325668300349,10939.6926207859087298,0.00000000000000000000,-0.0085835654975946838,0.34476893212897291585,0.93864833981741835344,100.000000000000000000,0.69945406234590756788,0.69945406234590756788,0.00000000000000001116,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +79 ,0 ,-10.230940583145233802,0.19752622464826163906,24.8647916316258594804,1.00000000000000000000,0.01048745294172173658,0.17779944374896292091,0.98401085925580844548,100.000000000000000000,0.69846997666683119376,0.69846997666683119376,0.00000000000000001119,0.00000000000000000502,10024.4589758830788923,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +79 ,1 ,-0.0000000000000094535,-0.0000000000003154930,0.00000000000000000000,1.00000000000000000000,0.01048745294172173658,0.00422657817099528210,0.99993607264052597471,100.000000000000000000,0.69846997666683119376,0.69846997666683119376,0.00000000000000001119,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +79 ,2 ,-0.0000000000000094535,342.020143325668357192,10939.6926207859087298,0.00000000000000000000,0.01048745294172173658,0.34596996319947798115,0.93818697384612326217,100.000000000000000000,0.69846997666683119376,0.69846997666683119376,0.00000000000000001119,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +80 ,0 ,-17.203866127042882538,0.51400874570255838946,-33.133564813634542645,1.00000000000000000000,0.01665906118885861555,0.16765142745485217545,0.98570557193954033703,100.000000000000000000,0.70580555541112655060,0.70580555541112655060,0.00000000000000001102,0.00000000000000000500,9967.29678029223941848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +80 ,1 ,0.00000000000001109569,0.00000000000006031758,0.00000000000000000000,1.00000000000000000000,0.01665906118885861555,-0.0060615507223382731,0.99984285429418662261,100.000000000000000000,0.70580555541112655060,0.70580555541112655060,0.00000000000000001102,0.00000000000000000500,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +80 ,2 ,0.00000000000001109569,342.020143325668698253,10939.6926207859087298,0.00000000000000000000,0.01665906118885861555,0.33627040184454259907,0.94161812457259719266,100.000000000000000000,0.70580555541112655060,0.70580555541112655060,0.00000000000000001102,0.00000000000000000500,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +81 ,0 ,-1.1450955286575339453,0.31912329094552832620,-82.955642476809927643,3.00000000000000000000,0.00105856748213791190,0.16023161044671702102,0.98707887752121270530,100.000000000000000000,0.71160112944771203302,0.71160112944771203302,0.00000000000000001088,0.00000000000000000498,9918.25930044169945176,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +82 ,0 ,-18.286517621725504767,0.55778723288645903899,-26.825731672776871761,1.00000000000000000000,0.01781447957872702575,0.16862233091322742506,0.98551973792244718097,100.000000000000000000,0.70504076862042897033,0.70504076862042897033,0.00000000000000001103,0.00000000000000000501,9973.50256341127351333,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +82 ,1 ,0.00000000000001948995,-0.0000000000001117944,0.00000000000000000000,1.00000000000000000000,0.01781447957872702575,-0.0050731277306872123,0.99982843912961727461,100.000000000000000000,0.70504076862042897033,0.70504076862042897033,0.00000000000000001103,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +82 ,2 ,0.00000000000001948995,342.020143325668527722,10939.6926207859087298,0.00000000000000000000,0.01781447957872702575,0.33719428535936013524,0.94126651817555317958,100.000000000000000000,0.70504076862042897033,0.70504076862042897033,0.00000000000000001103,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +83 ,0 ,17.6135003898255320109,0.49891366648833185282,-14.826697811470566534,1.00000000000000000000,-0.0173588062473832085,0.17064549687107644082,0.98517957055721017134,100.000000000000000000,0.70356287154349228529,0.70356287154349228529,0.00000000000000001107,0.00000000000000000501,9985.32766949451433902,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +83 ,1 ,0.00000000000001979573,-0.0000000000002616701,0.00000000000000000000,1.00000000000000000000,-0.0173588062473832085,-0.0030216287666919540,0.99984475875270839573,100.000000000000000000,0.70356287154349228529,0.70356287154349228529,0.00000000000000001107,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +83 ,2 ,0.00000000000001979573,342.020143325668414036,10939.6926207859087298,0.00000000000000000000,-0.0173588062473832085,0.33912764543720508303,0.94058019963524774897,100.000000000000000000,0.70356287154349228529,0.70356287154349228529,0.00000000000000001107,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +84 ,0 ,-6.1150059515452008795,0.37416035326812308037,79.4652028428700560880,1.00000000000000000000,0.00663380095359580260,0.18797452535566050446,0.98215150078906987562,100.000000000000000000,0.69091953376857850877,0.69091953376857850877,0.00000000000000001135,0.00000000000000000504,10078.2047887296630506,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +84 ,1 ,0.00000000000000395341,0.00000000000006527578,0.00000000000000000000,1.00000000000000000000,0.00663380095359580260,0.01456995163418169439,0.99987184638546822146,100.000000000000000000,0.69091953376857850877,0.69091953376857850877,0.00000000000000001135,0.00000000000000000504,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +84 ,2 ,0.00000000000000395341,342.020143325668698253,10939.6926207859087298,0.00000000000000000000,0.00663380095359580260,0.35566758824390692916,0.93458897883383484916,100.000000000000000000,0.69091953376857850877,0.69091953376857850877,0.00000000000000001135,0.00000000000000000504,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +85 ,0 ,-0.6017643166528174880,0.21974176847714260718,66.7230441599111117056,3.00000000000000000000,0.00064406533726248257,0.18561958721504906444,0.98262147036483793449,100.000000000000000000,0.69274103644158890880,0.69274103644158890880,0.00000000000000001131,0.00000000000000000504,10065.6781512097222730,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +86 ,0 ,-16.491232973917998805,0.45006154707183704255,17.9954011988269684252,3.00000000000000000000,0.01678767080270367195,0.17631143539522980967,0.98419126792402178427,100.000000000000000000,0.69937827300672739117,0.69937827300672739117,0.00000000000000001117,0.00000000000000000502,10017.6580677730435127,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +87 ,0 ,3.51336457734990670331,0.02089241464175496318,-5.4018835681879986410,3.00000000000000000000,-0.0034947627064009947,0.17270799769121530919,0.98496686957842238818,100.000000000000000000,0.70237479747514908190,0.70237479747514908190,0.00000000000000001110,0.00000000000000000501,9994.67721487503877142,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +88 ,0 ,-1.5772284759190644543,0.21639584792004640245,-67.701404587940487544,1.00000000000000000000,0.00147860048197617451,0.16258666395060331066,0.98669315921720479600,100.000000000000000000,0.70986918060322012902,0.70986918060322012902,0.00000000000000001092,0.00000000000000000499,9933.29638726272423809,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +88 ,1 ,-0.0000000000000008912,-0.0000000000006391810,0.00000000000000000000,1.00000000000000000000,0.00147860048197617451,-0.0112208618195492933,0.99993595094917997467,100.000000000000000000,0.70986918060322012902,0.70986918060322012902,0.00000000000000001092,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +88 ,2 ,-0.0000000000000008912,342.020143325668016132,10939.6926207859087298,0.00000000000000000000,0.00147860048197617451,0.33145407620943850846,0.94347019513324414941,100.000000000000000000,0.70986918060322012902,0.70986918060322012902,0.00000000000000001092,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +89 ,0 ,-4.1788107304647708062,0.02831495416557183730,-3.8487808431796679542,1.00000000000000000000,0.00416301486958204312,0.17296358144644760623,0.98491942249120745245,100.000000000000000000,0.70217889686535706061,0.70217889686535706061,0.00000000000000001110,0.00000000000000000501,9996.20566791674355044,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +89 ,1 ,0.00000000000000728545,-0.0000000000000941352,0.00000000000000000000,1.00000000000000000000,0.00416301486958204312,-0.0006935868671434652,0.99999109408256880993,100.000000000000000000,0.70217889686535706061,0.70217889686535706061,0.00000000000000001110,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +89 ,2 ,0.00000000000000728545,342.020143325668527722,10939.6926207859087298,0.00000000000000000000,0.00416301486958204312,0.34136533886158365591,0.93992147264072611889,100.000000000000000000,0.70217889686535706061,0.70217889686535706061,0.00000000000000001110,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +90 ,0 ,6.81381864766946332423,0.17982039401130417433,-48.010076314579819722,1.00000000000000000000,-0.0065060422297264237,0.16563288756223293329,0.98616601947760385016,100.000000000000000000,0.70757663144900506679,0.70757663144900506679,0.00000000000000001097,0.00000000000000000500,9952.69375649964422336,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +90 ,1 ,0.00000000000000080590,-0.0000000000001541477,0.00000000000000000000,1.00000000000000000000,-0.0065060422297264237,-0.0081293803342500949,0.99994579082562562444,100.000000000000000000,0.70757663144900506679,0.70757663144900506679,0.00000000000000001097,0.00000000000000000500,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +90 ,2 ,0.00000000000000080590,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,-0.0065060422297264237,0.33436248398442269813,0.94242209265183896071,100.000000000000000000,0.70757663144900506679,0.70757663144900506679,0.00000000000000001097,0.00000000000000000500,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,0 ,-9.9701386727567875567,0.17200923542580001668,-18.266717845376163609,1.00000000000000000000,0.00979371812394634611,0.17040652598772929038,0.98532517423747068008,100.000000000000000000,0.70398323988704147868,0.70398323988704147868,0.00000000000000001106,0.00000000000000000501,9981.98635629719865391,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +91 ,1 ,-0.0000000000000061627,-0.0000000000001935137,0.00000000000000000000,1.00000000000000000000,0.00979371812394634611,-0.0032822529590952080,0.99994665352748735021,100.000000000000000000,0.70398323988704147868,0.70398323988704147868,0.00000000000000001106,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,2 ,-0.0000000000000061627,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,0.00979371812394634611,0.33891758887227946273,0.94076508812684411786,100.000000000000000000,0.70398323988704147868,0.70398323988704147868,0.00000000000000001106,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +92 ,0 ,-13.168120917465572006,0.66040770749080568435,-92.921409749872807992,1.00000000000000000000,0.01206309826043587205,0.15847124126165984536,0.98728990036024766308,100.000000000000000000,0.71271639738386127760,0.71271639738386127760,0.00000000000000001085,0.00000000000000000498,9908.39644731619955564,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +92 ,1 ,-0.0000000000000092858,-0.0000000000001551399,0.00000000000000000000,1.00000000000000000000,0.01206309826043587205,-0.0153773850025714624,0.99980899060312589110,100.000000000000000000,0.71271639738386127760,0.71271639738386127760,0.00000000000000001085,0.00000000000000000498,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +92 ,2 ,-0.0000000000000092858,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,0.01206309826043587205,0.32750479905047291673,0.94477250608771845552,100.000000000000000000,0.71271639738386127760,0.71271639738386127760,0.00000000000000001085,0.00000000000000000498,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +93 ,0 ,-7.1490650786013754114,-338.72739136233479939,0.00000000000000000000,1.00000000000000000000,-0.0006466481424787385,-0.3400031074588028001,0.94042408984698899754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11055.5719702487713220,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +93 ,1 ,-7.1490650786013754114,23.7205132044222182230,11055.5442117279835656,0.00000000000000000000,-0.0006466481424787385,0.00214557087306344691,0.99999748918275210840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11055.5719702487713220,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +94 ,0 ,3.89031397913859722237,0.16031051349501915237,-54.174796329843559306,3.00000000000000000000,-0.0036931915926833331,0.16469722902558647792,0.98633725626032864308,100.000000000000000000,0.70830106849279395042,0.70830106849279395042,0.00000000000000001096,0.00000000000000000500,9946.62546431498776655,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +95 ,0 ,-7.1138596778483504934,0.13358871890890824940,32.8313098872619093526,3.00000000000000000000,0.00735140981771886629,0.17930868902038105128,0.98376539419491892957,100.000000000000000000,0.69740832377999895097,0.69740832377999895097,0.00000000000000001121,0.00000000000000000503,10032.3135487968538654,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +96 ,0 ,-7.2427545178432835015,0.09964149949348480306,-19.085222654217098181,1.00000000000000000000,0.00710903756011141332,0.17034445376785276038,0.98535893391976747679,100.000000000000000000,0.70408303338636923918,0.70408303338636923918,0.00000000000000001106,0.00000000000000000501,9981.19056811822883901,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +96 ,1 ,0.00000000000000214517,-0.0000000000004121880,0.00000000000000000000,1.00000000000000000000,0.00710903756011141332,-0.0033492444697858420,0.99996912159648720930,100.000000000000000000,0.70408303338636923918,0.70408303338636923918,0.00000000000000001106,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +96 ,2 ,0.00000000000000214517,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,0.00710903756011141332,0.33886232197620780315,0.94080911365157460224,100.000000000000000000,0.70408303338636923918,0.70408303338636923918,0.00000000000000001106,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +97 ,0 ,9.90597021658748921879,-389.32875323796622524,0.00000000000000000000,1.00000000000000000000,0.00089461543430313292,-0.3440414646689553546,0.93895402989265897009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.8809684619554900,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +97 ,1 ,9.90597021658748921879,-23.829213151826024841,11072.8508967691614088,0.00000000000000000000,0.00089461543430313292,-0.0021520337136917491,0.99999728420337186118,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.8809684619554900,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 +98 ,0 ,-0.7849229158794012173,0.16018376067829198650,56.9948586025198693505,3.00000000000000000000,0.00083157971039126159,0.18380033607158460795,0.98296324699103465594,100.000000000000000000,0.69410688250591601189,0.69410688250591601189,0.00000000000000001128,0.00000000000000000504,10056.1062204005775129,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +99 ,0 ,1.74776068947598894887,0.03142718525943998669,23.4508272624857099231,1.00000000000000000000,-0.0017890704907367969,0.17772032913584887015,0.98407940931543969043,100.000000000000000000,0.69865360771286710850,0.69865360771286710850,0.00000000000000001118,0.00000000000000000502,10023.0900914607336744,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +99 ,1 ,0.00000000000000108536,-0.0000000000003690354,0.00000000000000000000,1.00000000000000000000,-0.0017890704907367969,0.00413676189369011244,0.99998984316232619740,100.000000000000000000,0.69865360771286710850,0.69865360771286710850,0.00000000000000001118,0.00000000000000000502,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +99 ,2 ,0.00000000000000108536,342.020143325668300349,10939.6926207859087298,0.00000000000000000000,-0.0017890704907367969,0.34590395410804064546,0.93826822058471170961,100.000000000000000000,0.69865360771286710850,0.69865360771286710850,0.00000000000000001118,0.00000000000000000502,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/Ellipsoid_DGIA.rayui.csv b/Intern/RayCore/tests/output/Ellipsoid_DGIA.rayui.csv new file mode 100644 index 000000000..dc58e82d7 --- /dev/null +++ b/Intern/RayCore/tests/output/Ellipsoid_DGIA.rayui.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,0.05882048391403579823,0.16490226832990301231,0.00000000000000000000,-1.0000000000000000000,0.00521878189192140004,0.00516383704542310983,0.99997304918809404306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00058149790447714600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,0.04977814599792829836,0.16529220016920700975,0.00000000000000000000,-1.0000000000000000000,0.00441622536327758961,0.00518769198446844981,0.99997679213340495696,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00053995472080714502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,0.04073232505912290080,0.16561720121049100518,0.00000000000000000000,-1.0000000000000000000,0.00361350236940675018,0.00520757384813070028,0.99997991168585198540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00050532631667010697,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,0.03168365380360380068,0.16587723991044600602,0.00000000000000000000,-1.0000000000000000000,0.00281064314820035979,0.00522348113795407034,0.99998240761020196210,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047761764074039097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,0.02263276527979860008,0.16607229102795800779,0.00000000000000000000,-1.0000000000000000000,0.00200767795465373001,0.00523541265483378967,0.99998427971821901572,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045683266648666198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,0.01358029280256079981,0.16620233562742101063,0.00000000000000000000,-1.0000000000000000000,0.00120463705706987003,0.00524336749924520038,0.99998552786869299158,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00044297436159013202,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,0.00452686987710892996,0.16626736108401998781,0.00000000000000000000,-1.0000000000000000000,0.00040155073325977199,0.00524734507140945001,0.99998615196747098199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043604471409253197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,-0.0045268698771089299,0.16626736108401998781,0.00000000000000000000,-1.0000000000000000000,-0.0004015507332597719,0.00524734507140945001,0.99998615196747098199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043604471409253197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-0.0135802928025607998,0.16620233562742101063,0.00000000000000000000,-1.0000000000000000000,-0.0012046370570698700,0.00524336749924520038,0.99998552786869299158,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00044297436159013202,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-0.0226327652797988013,0.16607229102795800779,0.00000000000000000000,-1.0000000000000000000,-0.0020076779546537300,0.00523541265483378967,0.99998427971821901572,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045683266648666198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,-0.0316836538036038006,0.16587723991044600602,0.00000000000000000000,-1.0000000000000000000,-0.0028106431482003597,0.00522348113795407034,0.99998240761020196210,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047761764074039097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,-0.0407323250591229008,0.16561720121049100518,0.00000000000000000000,-1.0000000000000000000,-0.0036135023694067501,0.00520757384813070028,0.99997991168585198540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00050532631667010697,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-0.0497781459979282983,0.16529220016920700975,0.00000000000000000000,-1.0000000000000000000,-0.0044162253632775896,0.00518769198446844981,0.99997679213340495696,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00053995472080714502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-0.0588204839140357982,0.16490226832990301231,0.00000000000000000000,-1.0000000000000000000,-0.0052187818919214000,0.00516383704542310983,0.99997304918809404306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00058149790447714600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,0.05812984039025170107,0.13915481323449199746,0.00000000000000000000,-1.0000000000000000000,0.00519278105207585972,0.00434616908666906991,0.99997707265677704402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045547744139184899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,0.04919368725890289895,0.13954093576061799009,0.00000000000000000000,-1.0000000000000000000,0.00439422136346555997,0.00436984518948264032,0.99998079745144596852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041432482146319698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,0.04025408512822539752,0.13986276167557298855,0.00000000000000000000,-1.0000000000000000000,0.00359549685375214981,0.00438957798892786014,0.99998390187415298058,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00038002197254627400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,0.03131166052646029707,0.14012025981700299004,0.00000000000000000000,-1.0000000000000000000,0.00279663746231617995,0.00440536600510144007,0.99998638569195896774,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035257380216080502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,0.02236704031929809960,0.14031340524847599193,0.00000000000000000000,-1.0000000000000000000,0.00199767314538970000,0.00441720805374701003,0.99998824871846103690,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00033198423659541698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,0.01342085163497449933,0.14044217926336000079,0.00000000000000000000,-1.0000000000000000000,0.00119863387231610991,0.00442510324647781960,0.99998949081382804138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031825622249925800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +20 ,0 ,0.00447372178931049017,0.14050656938957700736,0.00000000000000000000,-1.0000000000000000000,0.00039954962180648701,0.00442905099094498006,0.99999011188482300749,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031139172290295402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +21 ,0 ,-0.0044737217893104901,0.14050656938957700736,0.00000000000000000000,-1.0000000000000000000,-0.0003995496218064870,0.00442905099094498006,0.99999011188482300749,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031139172290295402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +22 ,0 ,-0.0134208516349744993,0.14044217926336000079,0.00000000000000000000,-1.0000000000000000000,-0.0011986338723161099,0.00442510324647781960,0.99998949081382804138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031825622249925800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +23 ,0 ,-0.0223670403192980996,0.14031340524847599193,0.00000000000000000000,-1.0000000000000000000,-0.0019976731453897000,0.00441720805374701003,0.99998824871846103690,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00033198423659541698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +24 ,0 ,-0.0313116605264602970,0.14012025981700299004,0.00000000000000000000,-1.0000000000000000000,-0.0027966374623161799,0.00440536600510144007,0.99998638569195896774,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035257380216080502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +25 ,0 ,-0.0402540851282253975,0.13986276167557298855,0.00000000000000000000,-1.0000000000000000000,-0.0035954968537521498,0.00438957798892786014,0.99998390187415298058,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00038002197254627400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +26 ,0 ,-0.0491936872589028989,0.13954093576061799009,0.00000000000000000000,-1.0000000000000000000,-0.0043942213634655599,0.00436984518948264032,0.99998079745144596852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041432482146319698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +27 ,0 ,-0.0581298403902517010,0.13915481323449199746,0.00000000000000000000,-1.0000000000000000000,-0.0051927810520758597,0.00434616908666906991,0.99997707265677704402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045547744139184899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +28 ,0 ,0.05744336930002540142,0.11347366461587600483,0.00000000000000000000,-1.0000000000000000000,0.00516697067379635974,0.00353251502622171009,0.99998041168397200362,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035075886580671099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +29 ,0 ,0.04861275987691639904,0.11385601512983900551,0.00000000000000000000,-1.0000000000000000000,0.00437237856364982961,0.00355601405321587021,0.99998411840876300082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030999499881545500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +30 ,0 ,0.03977873505983930274,0.11417469701279700511,0.00000000000000000000,-1.0000000000000000000,0.00357762325642718009,0.00357559925595501981,0.99998720776907801255,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027601619626693702,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +31 ,0 ,0.03094191527514799852,0.11442967947801599426,0.00000000000000000000,-1.0000000000000000000,0.00278273439664485002,0.00359126917281599004,0.99998967953424799937,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00024882731997877299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +32 ,0 ,0.02210292128174180109,0.11462093788923199966,0.00000000000000000000,-1.0000000000000000000,0.00198774164542273989,0.00360302263417105984,0.99999153351968395053,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022843225542601400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +33 ,0 ,0.01326237409724799996,0.11474845376548599429,0.00000000000000000000,-1.0000000000000000000,0.00119267467679908000,0.00361085876260969001,0.99999276958691696304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021483392595200701,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +34 ,0 ,0.00442089492414760032,0.11481221478433199789,0.00000000000000000000,-1.0000000000000000000,0.00039756317404190998,0.00361477697310009019,0.99999338764361700437,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020803427548798900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +35 ,0 ,-0.0044208949241476003,0.11481221478433199789,0.00000000000000000000,-1.0000000000000000000,-0.0003975631740419099,0.00361477697310009019,0.99999338764361700437,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020803427548798900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +36 ,0 ,-0.0132623740972479999,0.11474845376548599429,0.00000000000000000000,-1.0000000000000000000,-0.0011926746767990800,0.00361085876260969001,0.99999276958691696304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021483392595200701,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +37 ,0 ,-0.0221029212817415998,0.11462093788923199966,0.00000000000000000000,-1.0000000000000000000,-0.0019877416454227398,0.00360302263417105984,0.99999153351968395053,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022843225542601400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +38 ,0 ,-0.0309419152751479985,0.11442967947801599426,0.00000000000000000000,-1.0000000000000000000,-0.0027827343966448500,0.00359126917281599004,0.99998967953424799937,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00024882731997877299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +39 ,0 ,-0.0397787350598393027,0.11417469701279700511,0.00000000000000000000,-1.0000000000000000000,-0.0035776232564271800,0.00357559925595501981,0.99998720776907801255,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027601619626693702,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +40 ,0 ,-0.0486127598769154969,0.11385601512983900551,0.00000000000000000000,-1.0000000000000000000,-0.0043723785636498296,0.00355601405321587021,0.99998411840876300082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030999499881545500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +41 ,0 ,-0.0574433693000254014,0.11347366461587600483,0.00000000000000000000,-1.0000000000000000000,-0.0051669706737963597,0.00353251502622171009,0.99998041168397200362,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035075886580671099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +42 ,0 ,0.05676102893361090195,0.08785816907667640118,0.00000000000000000000,-1.0000000000000000000,0.00514134892082677031,0.00272284614681999985,0.99998307617685999737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00026712895453329099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +43 ,0 ,0.04803532854671919982,0.08823678441837269625,0.00000000000000000000,-1.0000000000000000000,0.00435069540949058024,0.00274616983702330019,0.99998676491275695354,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022675203126709699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +44 ,0 ,0.03930624595939310322,0.08855235297909659630,0.00000000000000000000,-1.0000000000000000000,0.00355988030530052018,0.00276560889273957987,0.99998983927821305517,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019309576362047699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +45 ,0 ,0.03057439557084769971,0.08880484434225040246,0.00000000000000000000,-1.0000000000000000000,0.00276893296150269993,0.00278116187035531980,0.99999229904480102515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016616497089216899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +46 ,0 ,0.02184039210800610072,0.08899423416766880090,0.00000000000000000000,-1.0000000000000000000,0.00197788274770293020,0.00279282761465926999,0.99999414402972996995,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014596350331430598,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +47 ,0 ,0.01310485055277599980,0.08912050419662169431,0.00000000000000000000,-1.0000000000000000000,0.00118675904623563002,0.00280060525905479005,0.99999537409587502256,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013249425433059500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +48 ,0 ,0.00436838606923151042,0.08918364225489970598,0.00000000000000000000,-1.0000000000000000000,0.00039559124852945400,0.00280449422572104020,0.99999598915180798464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012575914854551199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +49 ,0 ,-0.0043683860692315104,0.08918364225489970598,0.00000000000000000000,-1.0000000000000000000,-0.0003955912485294540,0.00280449422572104020,0.99999598915180798464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012575914854551199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +50 ,0 ,-0.0131048505527759998,0.08912050419662169431,0.00000000000000000000,-1.0000000000000000000,-0.0011867590462356300,0.00280060525905479005,0.99999537409587502256,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013249425433059500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +51 ,0 ,-0.0218403921080063991,0.08899423416766880090,0.00000000000000000000,-1.0000000000000000000,-0.0019778827477029302,0.00279282761465926999,0.99999414402972996995,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014596350331430598,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +52 ,0 ,-0.0305743955708476997,0.08880484434225040246,0.00000000000000000000,-1.0000000000000000000,-0.0027689329615026999,0.00278116187035531980,0.99999229904480102515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016616497089216899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +53 ,0 ,-0.0393062459593931032,0.08855235297909659630,0.00000000000000000000,-1.0000000000000000000,-0.0035598803053005201,0.00276560889273957987,0.99998983927821305517,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019309576362047699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +54 ,0 ,-0.0480353285467191998,0.08823678441837269625,0.00000000000000000000,-1.0000000000000000000,-0.0043506954094905802,0.00274616983702330019,0.99998676491275695354,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022675203126709699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +55 ,0 ,-0.0567610289336109019,0.08785816907667640118,0.00000000000000000000,-1.0000000000000000000,-0.0051413489208267703,0.00272284614681999985,0.99998307617685999737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00026712895453329099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +56 ,0 ,0.05608277810603200241,0.06230768000668000100,0.00000000000000000000,-1.0000000000000000000,0.00511591397875990963,0.00191713399627351996,0.99998507589933705030,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020437763032532500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +57 ,0 ,0.04746135840728980120,0.06268259656080689412,0.00000000000000000000,-1.0000000000000000000,0.00432917036514540026,0.00194028406763829992,0.99998874672752602332,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016438583111266799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +58 ,0 ,0.03883658929592750247,0.06299508213022539382,0.00000000000000000000,-1.0000000000000000000,0.00354226674338175987,0.00195957840844174007,0.99999180616582095115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013105058735618499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +59 ,0 ,0.03020907921763570092,0.06324510666208339737,0.00000000000000000000,-1.0000000000000000000,0.00275523217898651986,0.00197501559281904005,0.99999425398801600195,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010437666799134599,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +60 ,0 ,0.02157943694109110133,0.06343264610887319743,0.00000000000000000000,-1.0000000000000000000,0.00196809575359724016,0.00198659447976106979,0.99999609001309497369,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008436788971266649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +61 ,0 ,0.01294827148625139930,0.06355768243035879450,0.00000000000000000000,-1.0000000000000000000,0.00118088656139362009,0.00199431421332757008,0.99999731410526704333,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007102711435891249,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +62 ,0 ,0.00431619205260791016,0.06362020359828360338,0.00000000000000000000,-1.0000000000000000000,0.00039363370551635199,0.00199817422280268008,0.99999792617398997052,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006435624800360530,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +63 ,0 ,-0.0043161920526079101,0.06362020359828360338,0.00000000000000000000,-1.0000000000000000000,-0.0003936337055163519,0.00199817422280268008,0.99999792617398997052,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006435624800360530,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +64 ,0 ,-0.0129482714862513993,0.06355768243035879450,0.00000000000000000000,-1.0000000000000000000,-0.0011808865613936200,0.00199431421332757008,0.99999731410526704333,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007102711435891249,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +65 ,0 ,-0.0215794369410911013,0.06343264610887319743,0.00000000000000000000,-1.0000000000000000000,-0.0019680957535972401,0.00198659447976106979,0.99999609001309497369,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008436788971266649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +66 ,0 ,-0.0302090792176357009,0.06324510666208339737,0.00000000000000000000,-1.0000000000000000000,-0.0027552321789865198,0.00197501559281904005,0.99999425398801600195,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010437666799134599,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +67 ,0 ,-0.0388365892959275024,0.06299508213022539382,0.00000000000000000000,-1.0000000000000000000,-0.0035422667433817598,0.00195957840844174007,0.99999180616582095115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013105058735618499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +68 ,0 ,-0.0474613584072888991,0.06268259656080689412,0.00000000000000000000,-1.0000000000000000000,-0.0043291703651454002,0.00194028406763829992,0.99998874672752602332,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016438583111266799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +69 ,0 ,-0.0560827781060320024,0.06230768000668000100,0.00000000000000000000,-1.0000000000000000000,-0.0051159139787599096,0.00191713399627351996,0.99998507589933705030,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020437763032532500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +70 ,0 ,0.05540857614912030049,0.03682155749394829674,0.00000000000000000000,-1.0000000000000000000,0.00509066405472956978,0.00111535038451481991,0.99998642047429997514,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016229788388955100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +71 ,0 ,0.04689081503512949888,0.03719281119761189829,0.00000000000000000000,-1.0000000000000000000,0.00430780191300850039,0.00113832853421957989,0.99999007347614599083,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012268939815385200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +72 ,0 ,0.03836973689658360053,0.03750224373247300346,0.00000000000000000000,-1.0000000000000000000,0.00352478132860798007,0.00115747957490263992,0.99999311805513002582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008967366306933399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +73 ,0 ,0.02984594429821110089,0.03774982540539179726,0.00000000000000000000,-1.0000000000000000000,0.00274163108280743019,0.00117280209818593000,0.99999555398723904975,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006325540550733420,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +74 ,0 ,0.02132004012305640031,0.03793553245615519792,0.00000000000000000000,-1.0000000000000000000,0.00195837997277074991,0.00118429497705713009,0.99999738109321600898,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004343840635101509,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +75 ,0 ,0.01279262750181950000,0.03805934706062959888,0.00000000000000000000,-1.0000000000000000000,0.00117505680802066996,0.00119195736607457993,0.99999859923858702703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00003022549742581760,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +76 ,0 ,0.00426430974214375962,0.03812125733402060151,0.00000000000000000000,-1.0000000000000000000,0.00039169040690990598,0.00119578870152480996,0.99999920833369004835,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002361857104915540,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +77 ,0 ,-0.0042643097421437596,0.03812125733402060151,0.00000000000000000000,-1.0000000000000000000,-0.0003916904069099059,0.00119578870152480996,0.99999920833369004835,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002361857104915540,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +78 ,0 ,-0.0127926275018195000,0.03805934706062959888,0.00000000000000000000,-1.0000000000000000000,-0.0011750568080206699,0.00119195736607457993,0.99999859923858702703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00003022549742581760,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +79 ,0 ,-0.0213200401230560013,0.03793553245615519792,0.00000000000000000000,-1.0000000000000000000,-0.0019583799727707499,0.00118429497705713009,0.99999738109321600898,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004343840635101509,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +80 ,0 ,-0.0298459442982111008,0.03774982540539179726,0.00000000000000000000,-1.0000000000000000000,-0.0027416310828074301,0.00117280209818593000,0.99999555398723904975,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006325540550733420,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +81 ,0 ,-0.0383697368965836005,0.03750224373247300346,0.00000000000000000000,-1.0000000000000000000,-0.0035247813286079800,0.00115747957490263992,0.99999311805513002582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008967366306933399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +82 ,0 ,-0.0468908150351294988,0.03719281119761189829,0.00000000000000000000,-1.0000000000000000000,-0.0043078019130085003,0.00113832853421957989,0.99999007347614599083,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012268939815385200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +83 ,0 ,-0.0554085761491203004,0.03682155749394829674,0.00000000000000000000,-1.0000000000000000000,-0.0050906640547295697,0.00111535038451481991,0.99998642047429997514,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016229788388955100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +84 ,0 ,0.05473838290367979975,0.01139916823639089936,0.00000000000000000000,-1.0000000000000000000,0.00506559737710747959,0.00031746738068927398,0.99998711938588302761,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014068574989778399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +85 ,0 ,0.04632366443761169738,0.01176679458512690061,0.00000000000000000000,-1.0000000000000000000,0.00428658855345416013,0.00034027528543850699,0.99999075464291398152,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010145875728540000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +86 ,0 ,0.03790566094119050127,0.01207320367454980079,0.00000000000000000000,-1.0000000000000000000,0.00350742283363365001,0.00035928442372174001,0.99999378443056796683,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006876102156638809,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +87 ,0 ,0.02948496916966680120,0.01231836616638900053,0.00000000000000000000,-1.0000000000000000000,0.00272812871812746007,0.00037449340439515998,0.99999620852700599193,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004259721504240589,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +88 ,0 ,0.02106218619200459982,0.01250225858318190080,0.00000000000000000000,-1.0000000000000000000,0.00194873472306994000,0.00038590111423558699,0.99999802675470794710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002297108403581659,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +89 ,0 ,0.01263790932127070026,0.01262486331340540064,0.00000000000000000000,-1.0000000000000000000,0.00116926937677408991,0.00039350671814997200,0.99999923898050402382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000988543411040154,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +90 ,0 ,0.00421273604492366973,0.01268616861450629941,0.00000000000000000000,-1.0000000000000000000,0.00038976121625412102,0.00039730965932321900,0.99999984511560302546,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000334214439590140,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +91 ,0 ,-0.0042127360449236697,0.01268616861450629941,0.00000000000000000000,-1.0000000000000000000,-0.0003897612162541210,0.00039730965932321900,0.99999984511560302546,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000334214439590140,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +92 ,0 ,-0.0126379093212707002,0.01262486331340540064,0.00000000000000000000,-1.0000000000000000000,-0.0011692693767740899,0.00039350671814997200,0.99999923898050402382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000988543411040154,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +93 ,0 ,-0.0210621861920039996,0.01250225858318190080,0.00000000000000000000,-1.0000000000000000000,-0.0019487347230699400,0.00038590111423558699,0.99999802675470794710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002297108403581659,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +94 ,0 ,-0.0294849691696668012,0.01231836616638900053,0.00000000000000000000,-1.0000000000000000000,-0.0027281287181274600,0.00037449340439515998,0.99999620852700599193,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004259721504240589,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +95 ,0 ,-0.0379056609411905012,0.01207320367454980079,0.00000000000000000000,-1.0000000000000000000,-0.0035074228336336500,0.00035928442372174001,0.99999378443056796683,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006876102156638809,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +96 ,0 ,-0.0463236644376116973,0.01176679458512690061,0.00000000000000000000,-1.0000000000000000000,-0.0042865885534541601,0.00034027528543850699,0.99999075464291398152,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010145875728540000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +97 ,0 ,-0.0547383829036797997,0.01139916823639089936,0.00000000000000000000,-1.0000000000000000000,-0.0050655973771074795,0.00031746738068927398,0.99998711938588302761,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014068574989778399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +98 ,0 ,0.05407215871184160166,-0.0139601145436791997,0.00000000000000000000,-1.0000000000000000000,0.00504071219520539019,-0.0004765426897136439,0.99998718198166502979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013934023445472099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +99 ,0 ,0.04575987304650649956,-0.0135960804888701006,0.00000000000000000000,-1.0000000000000000000,0.00426552880458434986,-0.0004539033733991780,0.99999079957554903863,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010049292416169900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +100 ,0 ,0.03744433395694989757,-0.0132926656176671001,0.00000000000000000000,-1.0000000000000000000,0.00349019004562406984,-0.0004350347566208219,0.99999381463997405461,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006811166497300290,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +101 ,0 ,0.02912613245935569833,-0.0130498989195219003,0.00000000000000000000,-1.0000000000000000000,0.00271472414139874987,-0.0004199382135421930,0.99999622695524903459,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004220109940433759,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +102 ,0 ,0.02080585987913050050,-0.0128678035924510991,0.00000000000000000000,-1.0000000000000000000,0.00193915933040775994,-0.0004086148437937859,0.99999803634557205000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002276492728015000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +103 ,0 ,0.01248410778226900080,-0.0127463970386736003,0.00000000000000000000,-1.0000000000000000000,0.00116352386315192999,-0.0004010654722734760,0.99999924267906703523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000980593551958009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +104 ,0 ,0.00416146790666054988,-0.0126856908604254005,0.00000000000000000000,-1.0000000000000000000,0.00038784599870672598,-0.0003972906489966839,0.99999984586779899764,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000332597414853808,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +105 ,0 ,-0.0041614679066605498,-0.0126856908604254005,0.00000000000000000000,-1.0000000000000000000,-0.0003878459987067259,-0.0003972906489966839,0.99999984586779899764,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000332597414853808,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +106 ,0 ,-0.0124841077822690008,-0.0127463970386736003,0.00000000000000000000,-1.0000000000000000000,-0.0011635238631519299,-0.0004010654722734760,0.99999924267906703523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000980593551958009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +107 ,0 ,-0.0208058598791302992,-0.0128678035924510991,0.00000000000000000000,-1.0000000000000000000,-0.0019391593304077599,-0.0004086148437937859,0.99999803634557205000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002276492728015000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +108 ,0 ,-0.0291261324593556983,-0.0130498989195219003,0.00000000000000000000,-1.0000000000000000000,-0.0027147241413987498,-0.0004199382135421930,0.99999622695524903459,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004220109940433759,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +109 ,0 ,-0.0374443339569498975,-0.0132926656176671001,0.00000000000000000000,-1.0000000000000000000,-0.0034901900456240698,-0.0004350347566208219,0.99999381463997405461,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006811166497300290,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +110 ,0 ,-0.0457598730465064995,-0.0135960804888701006,0.00000000000000000000,-1.0000000000000000000,-0.0042655288045843498,-0.0004539033733991780,0.99999079957554903863,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010049292416169900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +111 ,0 ,-0.0540721587118416016,-0.0139601145436791997,0.00000000000000000000,-1.0000000000000000000,-0.0050407121952053901,-0.0004765426897136439,0.99998718198166502979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013934023445472099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +112 ,0 ,0.05340986440948029823,-0.0392569111849105992,0.00000000000000000000,-1.0000000000000000000,0.00501600677898164041,-0.0012667072477002799,0.99998661747482497919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015806328838152699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +113 ,0 ,0.04519940771158029862,-0.0388964347914408994,0.00000000000000000000,-1.0000000000000000000,0.00424462120198039038,-0.0012442348831936400,0.99999021748735494874,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011959383664361699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +114 ,0 ,0.03698572881318450134,-0.0385959852685859999,0.00000000000000000000,-1.0000000000000000000,0.00347308176605201981,-0.0012255054236134398,0.99999321789675299498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008752754672514130,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +115 ,0 ,0.02876941306082030080,-0.0383555912622677019,0.00000000000000000000,-1.0000000000000000000,0.00270141642020536995,-0.0012105202263867399,0.99999561848545404085,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006186900452576080,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +116 ,0 ,0.02055104610580539906,-0.0381752756949068003,0.00000000000000000000,-1.0000000000000000000,0.00192965312865060007,-0.0011992803777509700,0.99999741907935901785,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004262188474513100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +117 ,0 ,0.01233121383660499940,-0.0380550557623174010,0.00000000000000000000,-1.0000000000000000000,0.00115781986742513002,-0.0011917866925555999,0.99999861954786395390,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002978894031002710,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +118 ,0 ,0.00411050231111109980,-0.0379949429295846977,0.00000000000000000000,-1.0000000000000000000,0.00038594462101654698,-0.0011880397141174100,0.99999921980388895015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002337200783131269,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +119 ,0 ,-0.0041105023111110998,-0.0379949429295846977,0.00000000000000000000,-1.0000000000000000000,-0.0003859446210165469,-0.0011880397141174100,0.99999921980388895015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002337200783131269,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +120 ,0 ,-0.0123312138366049994,-0.0380550557623174010,0.00000000000000000000,-1.0000000000000000000,-0.0011578198674251300,-0.0011917866925555999,0.99999861954786395390,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002978894031002710,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +121 ,0 ,-0.0205510461058053990,-0.0381752756949068003,0.00000000000000000000,-1.0000000000000000000,-0.0019296531286506000,-0.0011992803777509700,0.99999741907935901785,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004262188474513100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +122 ,0 ,-0.0287694130608203008,-0.0383555912622677019,0.00000000000000000000,-1.0000000000000000000,-0.0027014164202053699,-0.0012105202263867399,0.99999561848545404085,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006186900452576080,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +123 ,0 ,-0.0369857288131845013,-0.0385959852685859999,0.00000000000000000000,-1.0000000000000000000,-0.0034730817660520198,-0.0012255054236134398,0.99999321789675299498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008752754672514130,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +124 ,0 ,-0.0451994077115793965,-0.0388964347914408994,0.00000000000000000000,-1.0000000000000000000,-0.0042446212019803903,-0.0012442348831936400,0.99999021748735494874,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011959383664361699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +125 ,0 ,-0.0534098644094802982,-0.0392569111849105992,0.00000000000000000000,-1.0000000000000000000,-0.0050160067789816404,-0.0012667072477002799,0.99998661747482497919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015806328838152699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +126 ,0 ,0.05275146131884420053,-0.0644918356697016942,0.00000000000000000000,-1.0000000000000000000,0.00499147941875277036,-0.0020530534635688798,0.99998543494627400995,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019665973047722199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +127 ,0 ,0.04464223569432770183,-0.0641348827270149940,0.00000000000000000000,-1.0000000000000000000,0.00422386429845865961,-0.0020307464338557000,0.99998901745934698492,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015856632865052201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +128 ,0 ,0.03652981871622709708,-0.0638373700348390943,0.00000000000000000000,-1.0000000000000000000,0.00345609681049781000,-0.0020121547835161798,0.99999200328200799070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012681348948717600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +129 ,0 ,0.02841479012979379950,-0.0635993258999229954,0.00000000000000000000,-1.0000000000000000000,0.00268820463310769997,-0.0019972798534846300,0.99999439219879504570,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010140576023332000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +130 ,0 ,0.02029772998072480044,-0.0634207729742124054,0.00000000000000000000,-1.0000000000000000000,0.00192021545950709997,-0.0019861227167996000,0.99999618403729095827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008234678170992990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +131 ,0 ,0.01217921854847790058,-0.0633017282484576032,0.00000000000000000000,-1.0000000000000000000,0.00115215699457077002,-0.0019786841784075700,0.99999737866815596731,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006963927683045770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +132 ,0 ,0.00405983627950735025,-0.0632422030530079976,0.00000000000000000000,-1.0000000000000000000,0.00038405695150127200,-0.0019749647750210699,0.99999797600514994666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006328507049602190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +133 ,0 ,-0.0040598362795073502,-0.0632422030530079976,0.00000000000000000000,-1.0000000000000000000,-0.0003840569515012720,-0.0019749647750210699,0.99999797600514994666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006328507049602190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +134 ,0 ,-0.0121792185484779005,-0.0633017282484576032,0.00000000000000000000,-1.0000000000000000000,-0.0011521569945707700,-0.0019786841784075700,0.99999737866815596731,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006963927683045770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +135 ,0 ,-0.0202977299807248004,-0.0634207729742124054,0.00000000000000000000,-1.0000000000000000000,-0.0019202154595070999,-0.0019861227167996000,0.99999618403729095827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008234678170992990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +136 ,0 ,-0.0284147901297937995,-0.0635993258999229954,0.00000000000000000000,-1.0000000000000000000,-0.0026882046331076999,-0.0019972798534846300,0.99999439219879504570,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010140576023332000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +137 ,0 ,-0.0365298187162270970,-0.0638373700348390943,0.00000000000000000000,-1.0000000000000000000,-0.0034560968104978100,-0.0020121547835161798,0.99999200328200799070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012681348948717600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +138 ,0 ,-0.0446422356943277018,-0.0641348827270149940,0.00000000000000000000,-1.0000000000000000000,-0.0042238642984586596,-0.0020307464338557000,0.99998901745934698492,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015856632865052201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +139 ,0 ,-0.0527514613188442005,-0.0644918356697016942,0.00000000000000000000,-1.0000000000000000000,-0.0049914794187527703,-0.0020530534635688798,0.99998543494627400995,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019665973047722199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +140 ,0 ,0.05209691124125100103,-0.0896654957077766961,0.00000000000000000000,-1.0000000000000000000,0.00496712842490950982,-0.0028356082596787701,0.99998364334673395248,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025493723296676800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +141 ,0 ,0.04408832466180889753,-0.0893120324208287047,0.00000000000000000000,-1.0000000000000000000,0.00420325666383021025,-0.0028134649670757401,0.99998720844233701665,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021721806115237998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +142 ,0 ,0.03607657720435990256,-0.0890174283879994060,0.00000000000000000000,-1.0000000000000000000,0.00343923400845241996,-0.0027950097941378797,0.99999017974662496310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018577715968604000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +143 ,0 ,0.02806224308028189978,-0.0887817115819067026,0.00000000000000000000,-1.0000000000000000000,0.00267508786948925016,-0.0027802440655447799,0.99999255704621503593,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016061903386344099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +144 ,0 ,0.02004589679711400035,-0.0886049043865110991,0.00000000000000000000,-1.0000000000000000000,0.00191084567241874003,-0.0027691688413243901,0.99999434017035604416,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014174728528360000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +145 ,0 ,0.01202811309282210069,-0.0884870235928180981,0.00000000000000000000,-1.0000000000000000000,0.00114653485420645995,-0.0027617849166657300,0.99999552899095700553,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012916461605527699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +146 ,0 ,0.00400946686999287000,-0.0884280803967793932,0.00000000000000000000,-1.0000000000000000000,0.00038218286002554698,-0.0027580928217732498,0.99999612342261101627,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012287283357181899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +147 ,0 ,-0.0040094668699928700,-0.0884280803967793932,0.00000000000000000000,-1.0000000000000000000,-0.0003821828600255469,-0.0027580928217732498,0.99999612342261101627,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012287283357181899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +148 ,0 ,-0.0120281130928221006,-0.0884870235928180981,0.00000000000000000000,-1.0000000000000000000,-0.0011465348542064599,-0.0027617849166657300,0.99999552899095700553,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012916461605527699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +149 ,0 ,-0.0200458967971137991,-0.0886049043865110991,0.00000000000000000000,-1.0000000000000000000,-0.0019108456724187400,-0.0027691688413243901,0.99999434017035604416,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014174728528360000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +150 ,0 ,-0.0280622430802818997,-0.0887817115819067026,0.00000000000000000000,-1.0000000000000000000,-0.0026750878694892501,-0.0027802440655447799,0.99999255704621503593,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016061903386344099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +151 ,0 ,-0.0360765772043599025,-0.0890174283879994060,0.00000000000000000000,-1.0000000000000000000,-0.0034392340084524199,-0.0027950097941378797,0.99999017974662496310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018577715968604000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +152 ,0 ,-0.0440883246618097995,-0.0893120324208287047,0.00000000000000000000,-1.0000000000000000000,-0.0042032566638302102,-0.0028134649670757401,0.99998720844233701665,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021721806115237998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +153 ,0 ,-0.0520969112412510010,-0.0896654957077766961,0.00000000000000000000,-1.0000000000000000000,-0.0049671284249095098,-0.0028356082596787701,0.99998364334673395248,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025493723296676800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +154 ,0 ,0.05144617644995010119,-0.1147784928153720018,0.00000000000000000000,-1.0000000000000000000,0.00494295212763757024,-0.0036143983131736701,0.99998125149879601991,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00033270624851411401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +155 ,0 ,0.04353764268058939873,-0.1144284857992100001,0.00000000000000000000,-1.0000000000000000000,0.00418279688466424021,-0.0035924171790578398,0.99998479925898597908,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029535949317960297,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +156 ,0 ,0.03562597814287030151,-0.1141367625958549930,0.00000000000000000000,-1.0000000000000000000,0.00342249220312393007,-0.0035740971675722898,0.99998775611332202384,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00026422901805744897,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +157 ,0 ,0.02771175158070220134,-0.1139033508489979973,0.00000000000000000000,-1.0000000000000000000,0.00266206522940607001,-0.0035594395873756999,0.99999012185048097300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00023931928024012401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +158 ,0 ,0.01979553202995610119,-0.1137282726785339981,0.00000000000000000000,-1.0000000000000000000,0.00190154312445212992,-0.0035484454856756198,0.99999189630135598694,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022063385472392800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +159 ,0 ,0.01187788875364610002,-0.1136115446783629995,0.00000000000000000000,-1.0000000000000000000,0.00114095306052567008,-0.0035411156480424400,0.99999307933909298284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020817541576434499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +160 ,0 ,0.00395939117707439034,-0.1135531779117970041,0.00000000000000000000,-1.0000000000000000000,0.00038032221797944601,-0.0035374505982663198,0.99999367087910895346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020194575063214899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +161 ,0 ,-0.0039593911770743903,-0.1135531779117970041,0.00000000000000000000,-1.0000000000000000000,-0.0003803222179794460,-0.0035374505982663198,0.99999367087910895346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020194575063214899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +162 ,0 ,-0.0118778887536461000,-0.1136115446783629995,0.00000000000000000000,-1.0000000000000000000,-0.0011409530605256700,-0.0035411156480424400,0.99999307933909298284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020817541576434499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +163 ,0 ,-0.0197955320299562989,-0.1137282726785339981,0.00000000000000000000,-1.0000000000000000000,-0.0019015431244521299,-0.0035484454856756198,0.99999189630135598694,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022063385472392800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +164 ,0 ,-0.0277117515807022013,-0.1139033508489979973,0.00000000000000000000,-1.0000000000000000000,-0.0026620652294060700,-0.0035594395873756999,0.99999012185048097300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00023931928024012401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +165 ,0 ,-0.0356259781428703015,-0.1141367625958549930,0.00000000000000000000,-1.0000000000000000000,-0.0034224922031239300,-0.0035740971675722898,0.99998775611332202384,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00026422901805744897,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +166 ,0 ,-0.0435376426805893987,-0.1144284857992100001,0.00000000000000000000,-1.0000000000000000000,-0.0041827968846642402,-0.0035924171790578398,0.99998479925898597908,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029535949317960297,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +167 ,0 ,-0.0514461764499501011,-0.1147784928153720018,0.00000000000000000000,-1.0000000000000000000,-0.0049429521276375702,-0.0036143983131736701,0.99998125149879601991,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00033270624851411401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +168 ,0 ,0.05079921968307579693,-0.1398314223968719904,0.00000000000000000000,-1.0000000000000000000,0.00491894887664269010,-0.0043894500586811897,0.99997826809892798038,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00042977998032256399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +169 ,0 ,0.04299015821079699845,-0.1394848386695800024,0.00000000000000000000,-1.0000000000000000000,0.00416248356405538033,-0.0043676295232177898,0.99998179860581803968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039280382725337398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +170 ,0 ,0.03517799571916849915,-0.1391959688026430108,0.00000000000000000000,-1.0000000000000000000,0.00340587025124703020,-0.0043494433728993300,0.99998474107867196813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036198226143824302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +171 ,0 ,0.02736329555009220024,-0.1389648401147239864,0.00000000000000000000,-1.0000000000000000000,0.00264913582343840985,-0.0043348929005951903,0.99998709530819995805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00033731970688677398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +172 ,0 ,0.01954662133329329934,-0.1387914744659660137,0.00000000000000000000,-1.0000000000000000000,0.00189230718019316006,-0.0043239791408765703,0.99998886112692597638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031881969312053099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +173 ,0 ,0.01172853692241200042,-0.1386758882548279891,0.00000000000000000000,-1.0000000000000000000,0.00113541123223419001,-0.0043167028698313202,0.99999003840921696362,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030648487881990100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +174 ,0 ,0.00390960633107712007,-0.1386180924157709992,0.00000000000000000000,-1.0000000000000000000,0.00037847489825727602,-0.0043130646049303602,0.99999062707130703664,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030031702908672698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +175 ,0 ,-0.0039096063310771200,-0.1386180924157709992,0.00000000000000000000,-1.0000000000000000000,-0.0003784748982572760,-0.0043130646049303602,0.99999062707130703664,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030031702908672698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +176 ,0 ,-0.0117285369224120004,-0.1386758882548279891,0.00000000000000000000,-1.0000000000000000000,-0.0011354112322341900,-0.0043167028698313202,0.99999003840921696362,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030648487881990100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +177 ,0 ,-0.0195466213332931015,-0.1387914744659660137,0.00000000000000000000,-1.0000000000000000000,-0.0018923071801931600,-0.0043239791408765703,0.99998886112692597638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031881969312053099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +178 ,0 ,-0.0273632955500922002,-0.1389648401147239864,0.00000000000000000000,-1.0000000000000000000,-0.0026491358234384098,-0.0043348929005951903,0.99998709530819995805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00033731970688677398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +179 ,0 ,-0.0351779957191684991,-0.1391959688026430108,0.00000000000000000000,-1.0000000000000000000,-0.0034058702512470302,-0.0043494433728993300,0.99998474107867196813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036198226143824302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +180 ,0 ,-0.0429901582107969984,-0.1394848386695800024,0.00000000000000000000,-1.0000000000000000000,-0.0041624835640553803,-0.0043676295232177898,0.99998179860581803968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039280382725337398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +181 ,0 ,-0.0507992196830757969,-0.1398314223968719904,0.00000000000000000000,-1.0000000000000000000,-0.0049189488766426901,-0.0043894500586811897,0.99997826809892798038,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00042977998032256399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +182 ,0 ,0.05015600413677920310,-0.1648248738205140007,0.00000000000000000000,-1.0000000000000000000,0.00489511704088030005,-0.0051607896909705601,0.99997470171946001293,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054597432949776703,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +183 ,0 ,0.04244584010027269843,-0.1644816807989659956,0.00000000000000000000,-1.0000000000000000000,0.00414231532139469962,-0.0051391282128494496,0.99997821505520401164,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00050936696334247201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +184 ,0 ,0.03473260443801209906,-0.1641956371067750108,0.00000000000000000000,-1.0000000000000000000,0.00338936702289541983,-0.0051210746388576896,0.99998114321507503010,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047885280014270398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +185 ,0 ,0.02701685515439499959,-0.1639667697428980053,0.00000000000000000000,-1.0000000000000000000,0.00263629877254489006,-0.0051066302463011496,0.99998348599179898155,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045443621502272397,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +186 ,0 ,0.01929915053756769971,-0.1637951003111509928,0.00000000000000000000,-1.0000000000000000000,0.00188313721164269989,-0.0050957960572950398,0.99998524321951198778,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043612071067400398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +187 ,0 ,0.01158004909643330082,-0.1636806450183919958,0.00000000000000000000,-1.0000000000000000000,0.00112990899248756999,-0.0050885728385844401,0.99998641477378902298,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00042390891280774699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +188 ,0 ,0.00386010949761495013,-0.1636234146703779979,0.00000000000000000000,-1.0000000000000000000,0.00037664077523672000,-0.0050849611014086599,0.99998700057167000387,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041780257811296900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +189 ,0 ,-0.0038601094976149501,-0.1636234146703779979,0.00000000000000000000,-1.0000000000000000000,-0.0003766407752367200,-0.0050849611014086599,0.99998700057167000387,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041780257811296900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +190 ,0 ,-0.0115800490964333008,-0.1636806450183919958,0.00000000000000000000,-1.0000000000000000000,-0.0011299089924875699,-0.0050885728385844401,0.99998641477378902298,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00042390891280774699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +191 ,0 ,-0.0192991505375679009,-0.1637951003111509928,0.00000000000000000000,-1.0000000000000000000,-0.0018831372116426998,-0.0050957960572950398,0.99998524321951198778,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043612071067400398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +192 ,0 ,-0.0270168551543949995,-0.1639667697428980053,0.00000000000000000000,-1.0000000000000000000,-0.0026362987725448900,-0.0051066302463011496,0.99998348599179898155,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045443621502272397,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +193 ,0 ,-0.0347326044380120990,-0.1641956371067750108,0.00000000000000000000,-1.0000000000000000000,-0.0033893670228954198,-0.0051210746388576896,0.99998114321507503010,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047885280014270398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +194 ,0 ,-0.0424458401002726984,-0.1644816807989659956,0.00000000000000000000,-1.0000000000000000000,-0.0041423153213946996,-0.0051391282128494496,0.99997821505520401164,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00050936696334247201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +195 ,0 ,-0.0501560041367792031,-0.1648248738205140007,0.00000000000000000000,-1.0000000000000000000,-0.0048951170408803000,-0.0051607896909705601,0.99997470171946001293,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054597432949776703,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +196 ,0 ,0.05882048391403579823,0.16490226832990301231,0.00000000000000000000,-1.0000000000000000000,0.00521878189192140004,0.00516383704542310983,0.99997304918809404306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00058149790447714600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +197 ,0 ,0.04977814599792829836,0.16529220016920700975,0.00000000000000000000,-1.0000000000000000000,0.00441622536327758961,0.00518769198446844981,0.99997679213340495696,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00053995472080714502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +198 ,0 ,0.04073232505912290080,0.16561720121049100518,0.00000000000000000000,-1.0000000000000000000,0.00361350236940675018,0.00520757384813070028,0.99997991168585198540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00050532631667010697,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +199 ,0 ,0.03168365380360380068,0.16587723991044600602,0.00000000000000000000,-1.0000000000000000000,0.00281064314820035979,0.00522348113795407034,0.99998240761020196210,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047761764074039097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/Ellipsoid_DGIA.rayx.csv b/Intern/RayCore/tests/output/Ellipsoid_DGIA.rayx.csv new file mode 100644 index 000000000..91cb7d2a9 --- /dev/null +++ b/Intern/RayCore/tests/output/Ellipsoid_DGIA.rayx.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,0.05882048391403898318,0.16490226832961626945,0.00000000000000000000,1.00000000000000000000,0.00521878189192140958,0.00516383704542349407,0.99997304918809326590,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005814979012939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,0.04977814599792802774,0.16529220016889181743,0.00000000000000000000,1.00000000000000000000,0.00441622536327760176,0.00518769198446898671,0.99997679213340484594,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005399547171691,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,0.04073232505913049195,0.16561720121073586486,0.00000000000000000000,1.00000000000000000000,0.00361350236940675799,0.00520757384813131177,0.99997991168585087518,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005053263121226,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,0.03168365380360934485,0.16587723991093875075,0.00000000000000000000,1.00000000000000000000,0.00281064314820036282,0.00522348113795453872,0.99998240761020129596,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004776176374434,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,0.02263276527980014052,0.16607229102780121654,0.00000000000000000000,1.00000000000000000000,0.00200767795465373174,0.00523541265483441070,0.99998427971821823856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004568326621665,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,0.01358029280256172616,0.16620233562723416009,0.00000000000000000000,1.00000000000000000000,0.00120463705706987350,0.00524336749924557248,0.99998552786869288055,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004429743639775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,0.00452686987710899067,0.16626736108389750246,0.00000000000000000000,1.00000000000000000000,0.00040155073325977280,0.00524734507140973017,0.99998615196747098199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004360447146609,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,-0.0045268698771089906,0.16626736108389750246,0.00000000000000000000,1.00000000000000000000,-0.0004015507332597728,0.00524734507140973017,0.99998615196747098199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004360447146609,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-0.0135802928025617261,0.16620233562723416009,0.00000000000000000000,1.00000000000000000000,-0.0012046370570698735,0.00524336749924557248,0.99998552786869288055,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004429743639775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,-0.0226327652798001162,0.16607229102780121654,0.00000000000000000000,1.00000000000000000000,-0.0020076779546537321,0.00523541265483441070,0.99998427971821823856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004568326621665,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,-0.0316836538036093448,0.16587723991093875075,0.00000000000000000000,1.00000000000000000000,-0.0028106431482003628,0.00522348113795453872,0.99998240761020129596,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004776176374434,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,-0.0407323250591304919,0.16561720121073586486,0.00000000000000000000,1.00000000000000000000,-0.0036135023694067579,0.00520757384813131177,0.99997991168585087518,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005053263121226,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,-0.0497781459979279791,0.16529220016889181743,0.00000000000000000000,1.00000000000000000000,-0.0044162253632776026,0.00518769198446898671,0.99997679213340484594,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005399547171691,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-0.0588204839140389831,0.16490226832961626945,0.00000000000000000000,1.00000000000000000000,-0.0052187818919214095,0.00516383704542349407,0.99997304918809326590,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005814979012939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,0.05812984039026503763,0.13915481323486020293,0.00000000000000000000,1.00000000000000000000,0.00519278105207585626,0.00434616908666901613,0.99997707265677604482,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004554774386633,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,0.04919368725889873561,0.13954093576007262078,0.00000000000000000000,1.00000000000000000000,0.00439422136346555476,0.00436984518948249633,0.99998079745144519137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004143248170294,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,0.04025408512823023393,0.13986276167537128878,0.00000000000000000000,1.00000000000000000000,0.00359549685375215415,0.00438957798892825653,0.99998390187415187035,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003800219692493,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,0.03131166052646428693,0.14012025981678605246,0.00000000000000000000,1.00000000000000000000,0.00279663746231617865,0.00440536600510172630,0.99998638569195774650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003525737993186,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,0.02236704031930024025,0.14031340524840593686,0.00000000000000000000,1.00000000000000000000,0.00199767314538970217,0.00441720805374724075,0.99998824871846059281,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003319842344353,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,0.01342085163497640752,0.14044217926327298706,0.00000000000000000000,1.00000000000000000000,0.00119863387231611143,0.00442510324647843629,0.99998949081382715320,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003182562213623,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +20 ,0 ,0.00447372178931030022,0.14050656938906594395,0.00000000000000000000,1.00000000000000000000,0.00039954962180648842,0.00442905099094551262,0.99999011188482200829,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003113917209702,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,0 ,-0.0044737217893103002,0.14050656938906594395,0.00000000000000000000,1.00000000000000000000,-0.0003995496218064884,0.00442905099094551262,0.99999011188482200829,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003113917209702,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,0 ,-0.0134208516349764075,0.14044217926327298706,0.00000000000000000000,1.00000000000000000000,-0.0011986338723161114,0.00442510324647843629,0.99998949081382715320,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003182562213623,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +23 ,0 ,-0.0223670403193004206,0.14031340524840593686,0.00000000000000000000,1.00000000000000000000,-0.0019976731453897030,0.00441720805374724075,0.99998824871846059281,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003319842344353,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +24 ,0 ,-0.0313116605264642869,0.14012025981678605246,0.00000000000000000000,1.00000000000000000000,-0.0027966374623161786,0.00440536600510172630,0.99998638569195774650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003525737993186,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,0 ,-0.0402540851282302339,0.13986276167537128878,0.00000000000000000000,1.00000000000000000000,-0.0035954968537521541,0.00438957798892825653,0.99998390187415187035,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003800219692493,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,0 ,-0.0491936872588986939,0.13954093576007262078,0.00000000000000000000,1.00000000000000000000,-0.0043942213634655556,0.00436984518948249633,0.99998079745144519137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004143248170294,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +27 ,0 ,-0.0581298403902650376,0.13915481323486020293,0.00000000000000000000,1.00000000000000000000,-0.0051927810520758562,0.00434616908666901613,0.99997707265677604482,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004554774386633,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +28 ,0 ,0.05744336930002531815,0.11347366461536335935,0.00000000000000000000,1.00000000000000000000,0.00516697067379635888,0.00353251502622164113,0.99998041168397155953,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003507588608044,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +29 ,0 ,0.04861275987692290079,0.11385601512989423911,0.00000000000000000000,1.00000000000000000000,0.00437237856364982527,0.00355601405321594220,0.99998411840876211265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003099949954048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,0 ,0.03977873505984289709,0.11417469701292071171,0.00000000000000000000,1.00000000000000000000,0.00357762325642719180,0.00357559925595570329,0.99998720776907723539,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002760161933110,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,0 ,0.03094191527515297718,0.11442967947834130348,0.00000000000000000000,1.00000000000000000000,0.00278273439664485132,0.00359126917281579532,0.99998967953424688914,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002488273166818,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +32 ,0 ,0.02210292128174509707,0.11462093788932660454,0.00000000000000000000,1.00000000000000000000,0.00198774164542274249,0.00360302263417132395,0.99999153351968350644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002284322563355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +33 ,0 ,0.01326237409724948315,0.11474845376552757214,0.00000000000000000000,1.00000000000000000000,0.00119267467679908499,0.00361085876260994545,0.99999276958691629690,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002148339226550,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +34 ,0 ,0.00442089492414788742,0.11481221478424544213,0.00000000000000000000,1.00000000000000000000,0.00039756317404191122,0.00361477697310057721,0.99999338764361689335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002080342728731,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +35 ,0 ,-0.0044208949241478874,0.11481221478424544213,0.00000000000000000000,1.00000000000000000000,-0.0003975631740419112,0.00361477697310057721,0.99999338764361689335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002080342728731,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,0 ,-0.0132623740972494831,0.11474845376552757214,0.00000000000000000000,1.00000000000000000000,-0.0011926746767990849,0.00361085876260994545,0.99999276958691629690,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002148339226550,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,0 ,-0.0221029212817450762,0.11462093788932660454,0.00000000000000000000,1.00000000000000000000,-0.0019877416454227429,0.00360302263417132395,0.99999153351968350644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002284322563355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +38 ,0 ,-0.0309419152751529771,0.11442967947834130348,0.00000000000000000000,1.00000000000000000000,-0.0027827343966448513,0.00359126917281579532,0.99998967953424688914,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002488273166818,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +39 ,0 ,-0.0397787350598428970,0.11417469701292071171,0.00000000000000000000,1.00000000000000000000,-0.0035776232564271918,0.00357559925595570329,0.99998720776907723539,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002760161933110,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +40 ,0 ,-0.0486127598769228591,0.11385601512989423911,0.00000000000000000000,1.00000000000000000000,-0.0043723785636498261,0.00355601405321594220,0.99998411840876211265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003099949954048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,0 ,-0.0574433693000253181,0.11347366461536335935,0.00000000000000000000,1.00000000000000000000,-0.0051669706737963588,0.00353251502622164113,0.99998041168397155953,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003507588608044,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +42 ,0 ,0.05676102893360509410,0.08785816907623306137,0.00000000000000000000,1.00000000000000000000,0.00514134892082678332,0.00272284614682045088,0.99998307617685944226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002671289530553,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +43 ,0 ,0.04803532854671775653,0.08823678441791181492,0.00000000000000000000,1.00000000000000000000,0.00435069540949057850,0.00274616983702354868,0.99998676491275606537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002267520285386,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,0 ,0.03930624595939681553,0.08855235297894234469,0.00000000000000000000,1.00000000000000000000,0.00355988030530052235,0.00276560889273965706,0.99998983927821194495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001930957605509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,0 ,0.03057439557084579151,0.08880484434205934696,0.00000000000000000000,1.00000000000000000000,0.00276893296150271077,0.00278116187035595081,0.99999229904480024799,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001661649694142,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,0 ,0.02184039210800818586,0.08899423416737789471,0.00000000000000000000,1.00000000000000000000,0.00197788274770293800,0.00279282761465989536,0.99999414402972919280,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001459635022911,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +47 ,0 ,0.01310485055277658787,0.08912050419683796576,0.00000000000000000000,1.00000000000000000000,0.00118675904623563306,0.00280060525905498564,0.99999537409587480052,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001324942513747,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +48 ,0 ,0.00436838606923202997,0.08918364225508548792,0.00000000000000000000,1.00000000000000000000,0.00039559124852945459,0.00280449422572117508,0.99999598915180720748,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001257591429748,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +49 ,0 ,-0.0043683860692320299,0.08918364225508548792,0.00000000000000000000,1.00000000000000000000,-0.0003955912485294545,0.00280449422572117508,0.99999598915180720748,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001257591429748,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +50 ,0 ,-0.0131048505527765878,0.08912050419683796576,0.00000000000000000000,1.00000000000000000000,-0.0011867590462356330,0.00280060525905498564,0.99999537409587480052,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001324942513747,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +51 ,0 ,-0.0218403921080083732,0.08899423416737789471,0.00000000000000000000,1.00000000000000000000,-0.0019778827477029388,0.00279282761465989536,0.99999414402972919280,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001459635022911,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,0 ,-0.0305743955708457915,0.08880484434205934696,0.00000000000000000000,1.00000000000000000000,-0.0027689329615027107,0.00278116187035595081,0.99999229904480024799,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001661649694142,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +53 ,0 ,-0.0393062459593968155,0.08855235297894234469,0.00000000000000000000,1.00000000000000000000,-0.0035598803053005223,0.00276560889273965706,0.99998983927821194495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001930957605509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +54 ,0 ,-0.0480353285467177565,0.08823678441791181492,0.00000000000000000000,1.00000000000000000000,-0.0043506954094905785,0.00274616983702354868,0.99998676491275606537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002267520285386,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +55 ,0 ,-0.0567610289336050941,0.08785816907623306137,0.00000000000000000000,1.00000000000000000000,-0.0051413489208267833,0.00272284614682045088,0.99998307617685944226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002671289530553,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +56 ,0 ,0.05608277810603842783,0.06230768000674995199,0.00000000000000000000,1.00000000000000000000,0.00511591397875992524,0.00191713399627405447,0.99998507589933660621,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002043776257778,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +57 ,0 ,0.04746135840729651111,0.06268259656070808427,0.00000000000000000000,1.00000000000000000000,0.00432917036514541154,0.00194028406763871821,0.99998874672752491310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001643858286115,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +58 ,0 ,0.03883658929592925801,0.06299508212996182687,0.00000000000000000000,1.00000000000000000000,0.00354226674338176247,0.00195957840844198424,0.99999180616582039604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001310505849687,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +59 ,0 ,0.03020907921763837933,0.06324510666186024254,0.00000000000000000000,1.00000000000000000000,0.00275523217898652377,0.00197501559281943774,0.99999425398801544684,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001043766678776,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +60 ,0 ,0.02157943694109499405,0.06343264610906228229,0.00000000000000000000,1.00000000000000000000,0.00196809575359724450,0.00198659447976179447,0.99999609001309464062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000843678863020,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +61 ,0 ,0.01294827148625275585,0.06355768243046615306,0.00000000000000000000,1.00000000000000000000,0.00118088656139362312,0.00199431421332804193,0.99999731410526671027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000710271087882,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,0 ,0.00431619205260850170,0.06362020359817020798,0.00000000000000000000,1.00000000000000000000,0.00039363370551635248,0.00199817422280292988,0.99999792617399008154,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000643562434561,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +63 ,0 ,-0.0043161920526085017,0.06362020359817020798,0.00000000000000000000,1.00000000000000000000,-0.0003936337055163524,0.00199817422280292988,0.99999792617399008154,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000643562434561,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +64 ,0 ,-0.0129482714862527558,0.06355768243046615306,0.00000000000000000000,1.00000000000000000000,-0.0011808865613936231,0.00199431421332804193,0.99999731410526671027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000710271087882,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +65 ,0 ,-0.0215794369410947581,0.06343264610906228229,0.00000000000000000000,1.00000000000000000000,-0.0019680957535972449,0.00198659447976179447,0.99999609001309464062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000843678863020,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +66 ,0 ,-0.0302090792176383793,0.06324510666186024254,0.00000000000000000000,1.00000000000000000000,-0.0027552321789865237,0.00197501559281943774,0.99999425398801544684,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001043766678776,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,0 ,-0.0388365892959292580,0.06299508212996182687,0.00000000000000000000,1.00000000000000000000,-0.0035422667433817624,0.00195957840844198424,0.99999180616582039604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001310505849687,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +68 ,0 ,-0.0474613584072956576,0.06268259656070808427,0.00000000000000000000,1.00000000000000000000,-0.0043291703651454106,0.00194028406763871821,0.99998874672752491310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001643858286115,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +69 ,0 ,-0.0560827781060384278,0.06230768000674995199,0.00000000000000000000,1.00000000000000000000,-0.0051159139787599252,0.00191713399627405447,0.99998507589933660621,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002043776257778,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +70 ,0 ,0.05540857614911578327,0.03682155749334486971,0.00000000000000000000,1.00000000000000000000,0.00509066405472956371,0.00111535038451479129,0.99998642047429886492,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001622978797968,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +71 ,0 ,0.04689081503513142790,0.03719281119737458812,0.00000000000000000000,1.00000000000000000000,0.00430780191300850125,0.00113832853421978979,0.99999007347614499163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001226893928105,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +72 ,0 ,0.03836973689658702141,0.03750224373260120647,0.00000000000000000000,1.00000000000000000000,0.00352478132860798007,0.00115747957490288169,0.99999311805512880457,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000896736601134,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +73 ,0 ,0.02984594429821426503,0.03774982540512662743,0.00000000000000000000,1.00000000000000000000,0.00274163108280743150,0.00117280209818644456,0.99999555398723849464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000632554056210,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +74 ,0 ,0.02132004012305664317,0.03793553245600099488,0.00000000000000000000,1.00000000000000000000,0.00195837997277075771,0.00118429497705761430,0.99999738109321523182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000434384037362,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +75 ,0 ,0.01279262750181843662,0.03805934706005856954,0.00000000000000000000,1.00000000000000000000,0.00117505680802067300,0.00119195736607483710,0.99999859923858624988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000302254957205,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +76 ,0 ,0.00426430974214371451,0.03812125733384156417,0.00000000000000000000,1.00000000000000000000,0.00039169040690990636,0.00119578870152508209,0.99999920833368960426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000236185678659,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +77 ,0 ,-0.0042643097421437145,0.03812125733384156417,0.00000000000000000000,1.00000000000000000000,-0.0003916904069099063,0.00119578870152508209,0.99999920833368960426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000236185678659,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +78 ,0 ,-0.0127926275018184366,0.03805934706005856954,0.00000000000000000000,1.00000000000000000000,-0.0011750568080206730,0.00119195736607483710,0.99999859923858624988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000302254957205,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +79 ,0 ,-0.0213200401230561990,0.03793553245600099488,0.00000000000000000000,1.00000000000000000000,-0.0019583799727707577,0.00118429497705761430,0.99999738109321523182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000434384037362,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +80 ,0 ,-0.0298459442982142650,0.03774982540512662743,0.00000000000000000000,1.00000000000000000000,-0.0027416310828074315,0.00117280209818644456,0.99999555398723849464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000632554056210,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +81 ,0 ,-0.0383697368965870214,0.03750224373260120647,0.00000000000000000000,1.00000000000000000000,-0.0035247813286079800,0.00115747957490288169,0.99999311805512880457,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000896736601134,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +82 ,0 ,-0.0468908150351322675,0.03719281119737458812,0.00000000000000000000,1.00000000000000000000,-0.0043078019130085029,0.00113832853421978979,0.99999007347614499163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001226893928105,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +83 ,0 ,-0.0554085761491157832,0.03682155749334486971,0.00000000000000000000,1.00000000000000000000,-0.0050906640547295637,0.00111535038451479129,0.99998642047429886492,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001622978797968,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +84 ,0 ,0.05473838290368630149,0.01139916823600780823,0.00000000000000000000,1.00000000000000000000,0.00506559737710749087,0.00031746738068962943,0.99998711938588236147,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001406857481924,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +85 ,0 ,0.04632366443761534030,0.01176679458493122207,0.00000000000000000000,1.00000000000000000000,0.00428658855345416620,0.00034027528543878661,0.99999075464291331538,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001014587542158,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +86 ,0 ,0.03790566094119746792,0.01207320367477842000,0.00000000000000000000,1.00000000000000000000,0.00350742283363365521,0.00035928442372221266,0.99999378443056763376,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000687610190652,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +87 ,0 ,0.02948496916967356315,0.01231836616680285871,0.00000000000000000000,1.00000000000000000000,0.00272812871812745790,0.00037449340439499410,0.99999620852700565887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000425972102675,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +88 ,0 ,0.02106218619200928357,0.01250225858308170491,0.00000000000000000000,1.00000000000000000000,0.00194873472306994650,0.00038590111423589257,0.99999802675470739199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000229710803978,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +89 ,0 ,0.01263790932127330929,0.01262486331365111555,0.00000000000000000000,1.00000000000000000000,0.00116926937677409772,0.00039350671815056203,0.99999923898050391279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000098854343377,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +90 ,0 ,0.00421273604492387009,0.01268616861433568415,0.00000000000000000000,1.00000000000000000000,0.00038976121625412297,0.00039730965932423424,0.99999984511560224831,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000033421401894,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,0 ,-0.0042127360449238700,0.01268616861433568415,0.00000000000000000000,1.00000000000000000000,-0.0003897612162541229,0.00039730965932423424,0.99999984511560224831,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000033421401894,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +92 ,0 ,-0.0126379093212733092,0.01262486331365111555,0.00000000000000000000,1.00000000000000000000,-0.0011692693767740977,0.00039350671815056203,0.99999923898050391279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000098854343377,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +93 ,0 ,-0.0210621861920094848,0.01250225858308170491,0.00000000000000000000,1.00000000000000000000,-0.0019487347230699473,0.00038590111423589257,0.99999802675470739199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000229710803978,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +94 ,0 ,-0.0294849691696735631,0.01231836616680285871,0.00000000000000000000,1.00000000000000000000,-0.0027281287181274579,0.00037449340439499410,0.99999620852700565887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000425972102675,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +95 ,0 ,-0.0379056609411974679,0.01207320367477842000,0.00000000000000000000,1.00000000000000000000,-0.0035074228336336552,0.00035928442372221266,0.99999378443056763376,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000687610190652,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +96 ,0 ,-0.0463236644376153194,0.01176679458493122207,0.00000000000000000000,1.00000000000000000000,-0.0042865885534541670,0.00034027528543878661,0.99999075464291331538,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001014587542158,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +97 ,0 ,-0.0547383829036863014,0.01139916823600780823,0.00000000000000000000,1.00000000000000000000,-0.0050655973771074908,0.00031746738068962943,0.99998711938588236147,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001406857481924,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +98 ,0 ,0.05407215871184516131,-0.0139601145438658941,0.00000000000000000000,1.00000000000000000000,0.00504071219520539973,-0.0004765426897131836,0.99998718198166403059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001393402344547,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +99 ,0 ,0.04575987304650797060,-0.0135960804890955661,0.00000000000000000000,1.00000000000000000000,0.00426552880458435246,-0.0004539033733989023,0.99999079957554837250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001004929235932,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +100 ,0 ,0.03744433395695629523,-0.0132926656178805665,0.00000000000000000000,1.00000000000000000000,0.00349019004562407201,-0.0004350347566209113,0.99999381463997327745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000681116653140,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +101 ,0 ,0.02912613245935724223,-0.0130498989197803255,0.00000000000000000000,1.00000000000000000000,0.00271472414139874813,-0.0004199382135423059,0.99999622695524825743,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000422010980400,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +102 ,0 ,0.02080585987912864434,-0.0128678035929166573,0.00000000000000000000,1.00000000000000000000,0.00193915933040776319,-0.0004086148437934223,0.99999803634557216103,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000227649252337,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +103 ,0 ,0.01248410778227083961,-0.0127463970385609092,0.00000000000000000000,1.00000000000000000000,0.00116352386315193433,-0.0004010654722728185,0.99999924267906636909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000098059317679,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +104 ,0 ,0.00416146790666067217,-0.0126856908607684126,0.00000000000000000000,1.00000000000000000000,0.00038784599870672652,-0.0003972906489964242,0.99999984586779866457,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000033259711926,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +105 ,0 ,-0.0041614679066606721,-0.0126856908607684126,0.00000000000000000000,1.00000000000000000000,-0.0003878459987067265,-0.0003972906489964242,0.99999984586779866457,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000033259711926,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +106 ,0 ,-0.0124841077822708396,-0.0127463970385609092,0.00000000000000000000,1.00000000000000000000,-0.0011635238631519343,-0.0004010654722728185,0.99999924267906636909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000098059317679,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +107 ,0 ,-0.0208058598791286339,-0.0128678035929166573,0.00000000000000000000,1.00000000000000000000,-0.0019391593304077636,-0.0004086148437934223,0.99999803634557216103,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000227649252337,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +108 ,0 ,-0.0291261324593572422,-0.0130498989197803255,0.00000000000000000000,1.00000000000000000000,-0.0027147241413987481,-0.0004199382135423059,0.99999622695524825743,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000422010980400,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +109 ,0 ,-0.0374443339569562952,-0.0132926656178805665,0.00000000000000000000,1.00000000000000000000,-0.0034901900456240720,-0.0004350347566209113,0.99999381463997327745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000681116653140,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +110 ,0 ,-0.0457598730465079706,-0.0135960804890955661,0.00000000000000000000,1.00000000000000000000,-0.0042655288045843524,-0.0004539033733989023,0.99999079957554837250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001004929235932,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +111 ,0 ,-0.0540721587118451613,-0.0139601145438658941,0.00000000000000000000,1.00000000000000000000,-0.0050407121952053997,-0.0004765426897131836,0.99998718198166403059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001393402344547,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +112 ,0 ,0.05340986440948571056,-0.0392569111848151061,0.00000000000000000000,1.00000000000000000000,0.00501600677898165168,-0.0012667072476997705,0.99998661747482464612,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001580632851982,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +113 ,0 ,0.04519940771158414277,-0.0388964347916353897,0.00000000000000000000,1.00000000000000000000,0.00424462120198040165,-0.0012442348831930194,0.99999021748735461567,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001195938348246,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +114 ,0 ,0.03698572881319179411,-0.0385959852685670914,0.00000000000000000000,1.00000000000000000000,0.00347308176605202632,-0.0012255054236130667,0.99999321789675299498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000875275472935,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +115 ,0 ,0.02876941306082313534,-0.0383555912622780340,0.00000000000000000000,1.00000000000000000000,0.00270141642020537559,-0.0012105202263864704,0.99999561848545381881,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000618690028204,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +116 ,0 ,0.02055104610580694296,-0.0381752756956336425,0.00000000000000000000,1.00000000000000000000,0.00192965312865060376,-0.0011992803777506595,0.99999741907935857376,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000426218794018,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +117 ,0 ,0.01233121383660646698,-0.0380550557624260987,0.00000000000000000000,1.00000000000000000000,0.00115781986742512481,-0.0011917866925556812,0.99999861954786395390,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000297889364446,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +118 ,0 ,0.00411050231111183706,-0.0379949429296631419,0.00000000000000000000,1.00000000000000000000,0.00038594462101654796,-0.0011880397141171301,0.99999921980388895015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000233720056712,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +119 ,0 ,-0.0041105023111118370,-0.0379949429296631419,0.00000000000000000000,1.00000000000000000000,-0.0003859446210165479,-0.0011880397141171301,0.99999921980388895015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000233720056712,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +120 ,0 ,-0.0123312138366064669,-0.0380550557624260987,0.00000000000000000000,1.00000000000000000000,-0.0011578198674251248,-0.0011917866925556812,0.99999861954786395390,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000297889364446,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +121 ,0 ,-0.0205510461058067139,-0.0381752756956336425,0.00000000000000000000,1.00000000000000000000,-0.0019296531286506041,-0.0011992803777506595,0.99999741907935857376,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000426218794018,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +122 ,0 ,-0.0287694130608231353,-0.0383555912622780340,0.00000000000000000000,1.00000000000000000000,-0.0027014164202053755,-0.0012105202263864704,0.99999561848545381881,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000618690028204,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +123 ,0 ,-0.0369857288131917941,-0.0385959852685670914,0.00000000000000000000,1.00000000000000000000,-0.0034730817660520263,-0.0012255054236130667,0.99999321789675299498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000875275472935,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +124 ,0 ,-0.0451994077115832684,-0.0388964347916353897,0.00000000000000000000,1.00000000000000000000,-0.0042446212019804007,-0.0012442348831930194,0.99999021748735461567,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001195938348246,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +125 ,0 ,-0.0534098644094857105,-0.0392569111848151061,0.00000000000000000000,1.00000000000000000000,-0.0050160067789816516,-0.0012667072476997705,0.99998661747482464612,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001580632851982,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +126 ,0 ,0.05275146131884073108,-0.0644918356701894984,0.00000000000000000000,1.00000000000000000000,0.00499147941875277383,-0.0020530534635688408,0.99998543494627345484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001966597283171,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +127 ,0 ,0.04464223569433926896,-0.0641348827269945104,0.00000000000000000000,1.00000000000000000000,0.00422386429845867002,-0.0020307464338552073,0.99998901745934654083,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001585663285368,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +128 ,0 ,0.03652981871622868609,-0.0638373700350191725,0.00000000000000000000,1.00000000000000000000,0.00345609681049780913,-0.0020121547835158667,0.99999200328200799070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001268134874408,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +129 ,0 ,0.02841479012979600954,-0.0635993259005307454,0.00000000000000000000,1.00000000000000000000,0.00268820463310770431,-0.0019972798534845770,0.99999439219879482365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001014057579595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +130 ,0 ,0.02029772998072707640,-0.0634207729741501358,0.00000000000000000000,1.00000000000000000000,0.00192021545950710604,-0.0019861227167990999,0.99999618403729051419,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000823467780719,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +131 ,0 ,0.01217921854848033613,-0.0633017282484262810,0.00000000000000000000,1.00000000000000000000,0.00115215699457076829,-0.0019786841784071836,0.99999737866815507913,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000696392762620,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +132 ,0 ,0.00405983627950830868,-0.0632422030529157380,0.00000000000000000000,1.00000000000000000000,0.00038405695150127156,-0.0019749647750211350,0.99999797600514916950,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000632850697002,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +133 ,0 ,-0.0040598362795083086,-0.0632422030529157380,0.00000000000000000000,1.00000000000000000000,-0.0003840569515012715,-0.0019749647750211350,0.99999797600514916950,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000632850697002,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +134 ,0 ,-0.0121792185484803361,-0.0633017282484262810,0.00000000000000000000,1.00000000000000000000,-0.0011521569945707682,-0.0019786841784071836,0.99999737866815507913,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000696392762620,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +135 ,0 ,-0.0202977299807272880,-0.0634207729741501358,0.00000000000000000000,1.00000000000000000000,-0.0019202154595071069,-0.0019861227167990999,0.99999618403729051419,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000823467780719,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +136 ,0 ,-0.0284147901297960095,-0.0635993259005307454,0.00000000000000000000,1.00000000000000000000,-0.0026882046331077043,-0.0019972798534845770,0.99999439219879482365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001014057579595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +137 ,0 ,-0.0365298187162286860,-0.0638373700350191725,0.00000000000000000000,1.00000000000000000000,-0.0034560968104978091,-0.0020121547835158667,0.99999200328200799070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001268134874408,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +138 ,0 ,-0.0446422356943392620,-0.0641348827269945104,0.00000000000000000000,1.00000000000000000000,-0.0042238642984586708,-0.0020307464338552073,0.99998901745934654083,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001585663285368,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +139 ,0 ,-0.0527514613188407310,-0.0644918356701894984,0.00000000000000000000,1.00000000000000000000,-0.0049914794187527738,-0.0020530534635688408,0.99998543494627345484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001966597283171,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +140 ,0 ,0.05209691124125691297,-0.0896654957082337056,0.00000000000000000000,1.00000000000000000000,0.00496712842490950982,-0.0028356082596786517,0.99998364334673384146,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002549372311477,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +141 ,0 ,0.04408832466181168696,-0.0893120324209015215,0.00000000000000000000,1.00000000000000000000,0.00420325666383020851,-0.0028134649670758940,0.99998720844233623950,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002172180575144,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +142 ,0 ,0.03607657720436865250,-0.0890174283874452798,0.00000000000000000000,1.00000000000000000000,0.00343923400845241649,-0.0027950097941377410,0.99999017974662407493,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001857771603681,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +143 ,0 ,0.02806224308028339511,-0.0887817115818650137,0.00000000000000000000,1.00000000000000000000,0.00267508786948926144,-0.0027802440655442491,0.99999255704621436979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001606190289749,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +144 ,0 ,0.02004589679711427444,-0.0886049043871583869,0.00000000000000000000,1.00000000000000000000,0.00191084567241873743,-0.0027691688413242218,0.99999434017035526700,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001417472794855,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +145 ,0 ,0.01202811309282353358,-0.0884870235926896869,0.00000000000000000000,1.00000000000000000000,0.00114653485420645887,-0.0027617849166656051,0.99999552899095578428,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001291646149184,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +146 ,0 ,0.00400946686999355608,-0.0884280803968326978,0.00000000000000000000,1.00000000000000000000,0.00038218286002554671,-0.0027580928217731618,0.99999612342260968400,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001228728306159,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +147 ,0 ,-0.0040094668699935560,-0.0884280803968326978,0.00000000000000000000,1.00000000000000000000,-0.0003821828600255467,-0.0027580928217731618,0.99999612342260968400,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001228728306159,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +148 ,0 ,-0.0120281130928235335,-0.0884870235926896869,0.00000000000000000000,1.00000000000000000000,-0.0011465348542064588,-0.0027617849166656051,0.99999552899095578428,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001291646149184,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +149 ,0 ,-0.0200458967971140489,-0.0886049043871583869,0.00000000000000000000,1.00000000000000000000,-0.0019108456724187376,-0.0027691688413242218,0.99999434017035526700,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001417472794855,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +150 ,0 ,-0.0280622430802833951,-0.0887817115818650137,0.00000000000000000000,1.00000000000000000000,-0.0026750878694892614,-0.0027802440655442491,0.99999255704621436979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001606190289749,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +151 ,0 ,-0.0360765772043686525,-0.0890174283874452798,0.00000000000000000000,1.00000000000000000000,-0.0034392340084524164,-0.0027950097941377410,0.99999017974662407493,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001857771603681,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +152 ,0 ,-0.0440883246618116800,-0.0893120324209015215,0.00000000000000000000,1.00000000000000000000,-0.0042032566638302093,-0.0028134649670758940,0.99998720844233623950,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002172180575144,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +153 ,0 ,-0.0520969112412569129,-0.0896654957082337056,0.00000000000000000000,1.00000000000000000000,-0.0049671284249095098,-0.0028356082596786517,0.99998364334673384146,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002549372311477,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +154 ,0 ,0.05144617644995756050,-0.1147784928158046696,0.00000000000000000000,1.00000000000000000000,0.00494295212763757717,-0.0036143983131731618,0.99998125149879557582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003327062458993,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +155 ,0 ,0.04353764268059365921,-0.1144284857992403647,0.00000000000000000000,1.00000000000000000000,0.00418279688466424454,-0.0035924171790575648,0.99998479925898509090,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002953594903374,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +156 ,0 ,0.03562597814287216113,-0.1141367625958695924,0.00000000000000000000,1.00000000000000000000,0.00342249220312394264,-0.0035740971675718483,0.99998775611332169077,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002642290128278,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +157 ,0 ,0.02771175158070152480,-0.1139033508491536367,0.00000000000000000000,1.00000000000000000000,0.00266206522940607304,-0.0035594395873752029,0.99999012185048008483,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002393192771705,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +158 ,0 ,0.01979553202995823490,-0.1137282726785222020,0.00000000000000000000,1.00000000000000000000,0.00190154312445213382,-0.0035484454856754511,0.99999189630135543183,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002206338522228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +159 ,0 ,0.01187788875364920518,-0.1136115446782241245,0.00000000000000000000,1.00000000000000000000,0.00114095306052567138,-0.0035411156480422236,0.99999307933909231671,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002081754137179,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +160 ,0 ,0.00395939117707454994,-0.1135531779120055873,0.00000000000000000000,1.00000000000000000000,0.00038032221797944682,-0.0035374505982658710,0.99999367087910862039,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002019457460846,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +161 ,0 ,-0.0039593911770745499,-0.1135531779120055873,0.00000000000000000000,1.00000000000000000000,-0.0003803222179794468,-0.0035374505982658710,0.99999367087910862039,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002019457460846,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +162 ,0 ,-0.0118778887536492051,-0.1136115446782241245,0.00000000000000000000,1.00000000000000000000,-0.0011409530605256713,-0.0035411156480422236,0.99999307933909231671,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002081754137179,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +163 ,0 ,-0.0197955320299582349,-0.1137282726785222020,0.00000000000000000000,1.00000000000000000000,-0.0019015431244521344,-0.0035484454856754511,0.99999189630135543183,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002206338522228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +164 ,0 ,-0.0277117515807015248,-0.1139033508491536367,0.00000000000000000000,1.00000000000000000000,-0.0026620652294060730,-0.0035594395873752029,0.99999012185048008483,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002393192771705,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +165 ,0 ,-0.0356259781428721611,-0.1141367625958695924,0.00000000000000000000,1.00000000000000000000,-0.0034224922031239426,-0.0035740971675718483,0.99998775611332169077,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002642290128278,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +166 ,0 ,-0.0435376426805927779,-0.1144284857992403647,0.00000000000000000000,1.00000000000000000000,-0.0041827968846642436,-0.0035924171790575648,0.99998479925898509090,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002953594903374,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +167 ,0 ,-0.0514461764499575605,-0.1147784928158046696,0.00000000000000000000,1.00000000000000000000,-0.0049429521276375771,-0.0036143983131731618,0.99998125149879557582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003327062458993,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +168 ,0 ,0.05079921968308483137,-0.1398314223968078751,0.00000000000000000000,1.00000000000000000000,0.00491894887664269704,-0.0043894500586808419,0.99997826809892775834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004297799787309,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +169 ,0 ,0.04299015821080333366,-0.1394848386692041364,0.00000000000000000000,1.00000000000000000000,0.00416248356405538554,-0.0043676295232175565,0.99998179860581781763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003928038240701,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +170 ,0 ,0.03517799571917189227,-0.1391959688025851404,0.00000000000000000000,1.00000000000000000000,0.00340587025124703063,-0.0043494433728992563,0.99998474107867130200,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003619822618929,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +171 ,0 ,0.02736329555009804279,-0.1389648401143539768,0.00000000000000000000,1.00000000000000000000,0.00264913582343840681,-0.0043348929005951313,0.99998709530819884783,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003373197050677,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +172 ,0 ,0.01954662133329461426,-0.1387914744662544774,0.00000000000000000000,1.00000000000000000000,0.00189230718019316808,-0.0043239791408756040,0.99998886112692508820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003188196915289,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +173 ,0 ,0.01172853692241166562,-0.1386758882551722416,0.00000000000000000000,1.00000000000000000000,0.00113541123223419456,-0.0043167028698308188,0.99999003840921674157,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003064848770009,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +174 ,0 ,0.00390960633107761273,-0.1386180924157186244,0.00000000000000000000,1.00000000000000000000,0.00037847489825727754,-0.0043130646049294842,0.99999062707130648153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003003170277224,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +175 ,0 ,-0.0039096063310776127,-0.1386180924157186244,0.00000000000000000000,1.00000000000000000000,-0.0003784748982572775,-0.0043130646049294842,0.99999062707130648153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003003170277224,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +176 ,0 ,-0.0117285369224116656,-0.1386758882551722416,0.00000000000000000000,1.00000000000000000000,-0.0011354112322341945,-0.0043167028698308188,0.99999003840921674157,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003064848770009,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +177 ,0 ,-0.0195466213332948363,-0.1387914744662544774,0.00000000000000000000,1.00000000000000000000,-0.0018923071801931689,-0.0043239791408756040,0.99998886112692508820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003188196915289,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +178 ,0 ,-0.0273632955500980427,-0.1389648401143539768,0.00000000000000000000,1.00000000000000000000,-0.0026491358234384068,-0.0043348929005951313,0.99998709530819884783,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003373197050677,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +179 ,0 ,-0.0351779957191718922,-0.1391959688025851404,0.00000000000000000000,1.00000000000000000000,-0.0034058702512470306,-0.0043494433728992563,0.99998474107867130200,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003619822618929,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +180 ,0 ,-0.0429901582108033336,-0.1394848386692041364,0.00000000000000000000,1.00000000000000000000,-0.0041624835640553855,-0.0043676295232175565,0.99998179860581781763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003928038240701,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +181 ,0 ,-0.0507992196830848313,-0.1398314223968078751,0.00000000000000000000,1.00000000000000000000,-0.0049189488766426970,-0.0043894500586808419,0.99997826809892775834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004297799787309,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +182 ,0 ,0.05015600413678680119,-0.1648248738204280972,0.00000000000000000000,1.00000000000000000000,0.00489511704088030873,-0.0051607896909699763,0.99997470171945934680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005459743279061,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +183 ,0 ,0.04244584010028352311,-0.1644816807985412521,0.00000000000000000000,1.00000000000000000000,0.00414231532139470136,-0.0051391282128490202,0.99997821505520290141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005093669624329,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +184 ,0 ,0.03473260443801719915,-0.1641956371066242148,0.00000000000000000000,1.00000000000000000000,0.00338936702289542026,-0.0051210746388573261,0.99998114321507436397,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004788527985510,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +185 ,0 ,0.02701685515439635962,-0.1639667697429195436,0.00000000000000000000,1.00000000000000000000,0.00263629877254489613,-0.0051066302463008764,0.99998348599179831541,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004544362109299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +186 ,0 ,0.01929915053756843523,-0.1637951003112175785,0.00000000000000000000,1.00000000000000000000,0.00188313721164270119,-0.0050957960572947259,0.99998524321951087756,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004361207065812,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +187 ,0 ,0.01158004909643367552,-0.1636806450189282058,0.00000000000000000000,1.00000000000000000000,0.00112990899248756391,-0.0050885728385845676,0.99998641477378813480,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004239089139446,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +188 ,0 ,0.00386010949761462444,-0.1636234146710251469,0.00000000000000000000,1.00000000000000000000,0.00037664077523672087,-0.0050849611014082314,0.99998700057166911570,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004178025737928,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +189 ,0 ,-0.0038601094976146244,-0.1636234146710251469,0.00000000000000000000,1.00000000000000000000,-0.0003766407752367208,-0.0050849611014082314,0.99998700057166911570,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004178025737928,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +190 ,0 ,-0.0115800490964336755,-0.1636806450189282058,0.00000000000000000000,1.00000000000000000000,-0.0011299089924875639,-0.0050885728385845676,0.99998641477378813480,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004239089139446,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +191 ,0 ,-0.0192991505375684352,-0.1637951003112175785,0.00000000000000000000,1.00000000000000000000,-0.0018831372116427016,-0.0050957960572947259,0.99998524321951087756,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004361207065812,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +192 ,0 ,-0.0270168551543963596,-0.1639667697429195436,0.00000000000000000000,1.00000000000000000000,-0.0026362987725448961,-0.0051066302463008764,0.99998348599179831541,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004544362109299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +193 ,0 ,-0.0347326044380171991,-0.1641956371066242148,0.00000000000000000000,1.00000000000000000000,-0.0033893670228954202,-0.0051210746388573261,0.99998114321507436397,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004788527985510,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +194 ,0 ,-0.0424458401002835231,-0.1644816807985412521,0.00000000000000000000,1.00000000000000000000,-0.0041423153213947022,-0.0051391282128490202,0.99997821505520290141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005093669624329,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +195 ,0 ,-0.0501560041367868011,-0.1648248738204280972,0.00000000000000000000,1.00000000000000000000,-0.0048951170408803087,-0.0051607896909699763,0.99997470171945934680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005459743279061,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +196 ,0 ,0.05882048391403898318,0.16490226832961626945,0.00000000000000000000,1.00000000000000000000,0.00521878189192140958,0.00516383704542349407,0.99997304918809326590,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005814979012939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +197 ,0 ,0.04977814599792802774,0.16529220016889181743,0.00000000000000000000,1.00000000000000000000,0.00441622536327760176,0.00518769198446898671,0.99997679213340484594,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005399547171691,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +198 ,0 ,0.04073232505913049195,0.16561720121073586486,0.00000000000000000000,1.00000000000000000000,0.00361350236940675799,0.00520757384813131177,0.99997991168585087518,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005053263121226,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +199 ,0 ,0.03168365380360934485,0.16587723991093875075,0.00000000000000000000,1.00000000000000000000,0.00281064314820036282,0.00522348113795453872,0.99998240761020129596,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004776176374434,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/Ellipsoid_MB.rayui.csv b/Intern/RayCore/tests/output/Ellipsoid_MB.rayui.csv new file mode 100644 index 000000000..a04d0684f --- /dev/null +++ b/Intern/RayCore/tests/output/Ellipsoid_MB.rayui.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +20 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +21 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +22 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +23 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +24 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +25 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +26 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +27 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +28 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +29 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +30 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +31 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +32 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +33 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +34 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +35 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +36 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +37 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +38 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +39 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +40 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +41 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +42 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +43 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +44 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +45 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +46 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +47 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +48 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +49 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +50 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +51 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +52 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +53 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +54 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +55 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +56 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +57 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +58 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +59 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +60 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +61 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +62 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +63 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +64 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +65 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +66 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +67 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +68 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +69 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +70 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +71 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +72 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +73 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +74 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +75 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +76 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +77 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +78 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +79 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +80 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +81 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +82 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +83 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +84 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +85 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +86 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +87 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +88 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +89 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +90 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +91 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +92 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +93 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +94 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +95 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +96 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +97 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +98 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +99 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +100 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +101 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +102 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +103 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +104 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +105 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +106 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +107 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +108 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +109 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +110 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +111 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +112 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +113 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +114 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +115 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +116 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +117 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +118 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +119 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +120 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +121 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +122 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +123 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +124 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +125 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +126 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +127 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +128 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +129 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +130 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +131 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +132 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +133 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +134 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +135 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +136 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +137 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +138 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +139 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +140 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +141 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +142 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +143 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +144 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +145 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +146 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +147 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +148 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +149 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +150 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +151 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +152 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +153 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +154 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +155 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +156 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +157 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +158 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +159 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +160 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +161 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +162 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +163 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +164 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +165 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +166 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +167 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +168 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +169 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +170 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +171 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +172 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +173 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +174 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +175 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +176 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +177 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +178 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +179 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +180 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +181 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +182 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +183 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +184 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +185 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +186 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +187 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +188 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +189 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +190 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +191 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +192 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +193 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +194 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +195 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +196 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +197 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +198 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +199 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/Ellipsoid_MB.rayx.csv b/Intern/RayCore/tests/output/Ellipsoid_MB.rayx.csv new file mode 100644 index 000000000..2f39dc634 --- /dev/null +++ b/Intern/RayCore/tests/output/Ellipsoid_MB.rayx.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +20 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +23 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +24 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +27 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +28 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +29 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +32 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +33 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +34 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +35 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +38 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +39 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +40 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +42 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +43 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +47 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +48 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +49 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +50 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +51 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +53 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +54 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +55 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +56 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +57 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +58 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +59 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +60 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +61 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +63 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +64 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +65 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +66 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +68 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +69 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +70 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +71 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +72 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +73 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +74 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +75 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +76 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +77 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +78 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +79 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +80 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +81 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +82 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +83 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +84 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +85 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +86 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +87 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +88 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +89 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +90 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +92 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +93 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +94 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +95 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +96 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +97 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +98 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +99 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +100 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +101 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +102 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +103 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +104 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +105 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +106 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +107 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +108 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +109 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +110 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +111 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +112 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +113 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +114 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +115 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +116 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +117 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +118 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +119 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +120 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +121 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +122 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +123 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +124 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +125 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +126 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +127 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +128 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +129 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +130 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +131 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +132 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +133 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +134 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +135 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +136 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +137 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +138 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +139 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +140 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +141 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +142 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +143 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +144 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +145 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +146 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +147 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +148 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +149 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +150 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +151 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +152 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +153 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +154 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +155 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +156 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +157 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +158 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +159 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +160 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +161 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +162 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +163 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +164 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +165 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +166 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +167 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +168 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +169 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +170 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +171 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +172 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +173 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +174 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +175 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +176 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +177 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +178 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +179 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +180 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +181 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +182 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +183 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +184 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +185 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +186 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +187 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +188 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +189 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +190 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +191 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +192 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +193 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +194 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +195 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +196 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +197 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +198 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +199 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/Ellipsoid_PM.rayui.csv b/Intern/RayCore/tests/output/Ellipsoid_PM.rayui.csv new file mode 100644 index 000000000..dd6c35609 --- /dev/null +++ b/Intern/RayCore/tests/output/Ellipsoid_PM.rayui.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-5.5000004583333801377,-5.5000011458334601144,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,-0.0004999999791666379,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00275000045746764997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-4.6538464315164800311,-5.5000009505670703902,0.00000000000000000000,-1.0000000000000000000,-0.0004230768575709329,-0.0004999999791666649,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779537243985,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,-3.8076924597746999445,-5.5000007878453196497,0.00000000000000000000,-1.0000000000000000000,-0.0003461537959717820,-0.0004999999791666649,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392708084984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,-2.9615385330943699848,-5.5000006576677895608,0.00000000000000000000,-1.0000000000000000000,-0.0002692307323243830,-0.0004999999791666649,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884497587003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-2.1153846414618397986,-5.5000005600349197720,0.00000000000000000000,-1.0000000000000000000,-0.0001923076670839029,-0.0004999999791666649,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253700669997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-1.2692307748634499287,-5.5000004949457901304,0.00000000000000000000,-1.0000000000000000000,-0.0001153846007055080,-0.0004999999791666379,0.99999986834319798401,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500408281007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,-0.4230769232855409733,-5.5000004624015996768,0.00000000000000000000,-1.0000000000000000000,-0.0000384615336443635,-0.0004999999791666649,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623756402995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,0.42307692328554097338,-5.5000004624015996768,0.00000000000000000000,-1.0000000000000000000,0.00003846153364436359,-0.0004999999791666649,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623756402995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,1.26923077486344992870,-5.5000004949457901304,0.00000000000000000000,-1.0000000000000000000,0.00011538460070550800,-0.0004999999791666379,0.99999986834319798401,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500408281007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,2.11538464146183979863,-5.5000005600349197720,0.00000000000000000000,-1.0000000000000000000,0.00019230766708390299,-0.0004999999791666649,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253700669997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,2.96153853309436998486,-5.5000006576677895608,0.00000000000000000000,-1.0000000000000000000,0.00026923073232438301,-0.0004999999791666649,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884497587003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,3.80769245977469994457,-5.5000007878453196497,0.00000000000000000000,-1.0000000000000000000,0.00034615379597178200,-0.0004999999791666649,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392708084984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,4.65384643151648003112,-5.5000009505670703902,0.00000000000000000000,-1.0000000000000000000,0.00042307685757093298,-0.0004999999791666649,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779537243985,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,5.50000045833338013778,-5.5000011458334601144,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,-0.0004999999791666379,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00275000045746764997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,-5.5000004583333801377,-4.6538470132473097606,0.00000000000000000000,-1.0000000000000000000,-0.0004999999344181489,-0.0004230769104555390,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779616824989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,-4.6538464315164800311,-4.6538468480219297163,0.00000000000000000000,-1.0000000000000000000,-0.0004230768725914139,-0.0004230769104555390,0.99999982100592799127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00196893514669227009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-3.8076924597746999445,-4.6538467103343004183,0.00000000000000000000,-1.0000000000000000000,-0.0003461538082612659,-0.0004230769104555390,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128874618989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-2.9615385330943699848,-4.6538466001839697838,0.00000000000000000000,-1.0000000000000000000,-0.0002692307418828710,-0.0004230769104555390,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621653196995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,-2.1153846414618397986,-4.6538465175716403621,0.00000000000000000000,-1.0000000000000000000,-0.0001923076739113949,-0.0004230769104555669,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991492925001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,-1.2692307748634499287,-4.6538464624960802495,0.00000000000000000000,-1.0000000000000000000,-0.0001153846048020029,-0.0004230769104555109,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238791708999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +20 ,0 ,-0.4230769232855409733,-4.6538464349588100077,0.00000000000000000000,-1.0000000000000000000,-0.0000384615350098619,-0.0004230769104555390,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362549102908,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +21 ,0 ,0.42307692328554097338,-4.6538464349588100077,0.00000000000000000000,-1.0000000000000000000,0.00003846153500986199,-0.0004230769104555390,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362549102908,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +22 ,0 ,1.26923077486344992870,-4.6538464624960802495,0.00000000000000000000,-1.0000000000000000000,0.00011538460480200299,-0.0004230769104555109,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238791708999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +23 ,0 ,2.11538464146183979863,-4.6538465175716403621,0.00000000000000000000,-1.0000000000000000000,0.00019230767391139499,-0.0004230769104555669,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991492925001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +24 ,0 ,2.96153853309436998486,-4.6538466001839697838,0.00000000000000000000,-1.0000000000000000000,0.00026923074188287102,-0.0004230769104555390,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621653196995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +25 ,0 ,3.80769245977469994457,-4.6538467103343004183,0.00000000000000000000,-1.0000000000000000000,0.00034615380826126599,-0.0004230769104555390,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128874618989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +26 ,0 ,4.65384643151648003112,-4.6538468480219297163,0.00000000000000000000,-1.0000000000000000000,0.00042307687259141398,-0.0004230769104555390,0.99999982100592799127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00196893514669227009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +27 ,0 ,5.50000045833338013778,-4.6538470132473097606,0.00000000000000000000,-1.0000000000000000000,0.00049999993441814897,-0.0004230769104555390,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779616824989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +28 ,0 ,-5.5000004583333801377,-3.8076929357362399031,0.00000000000000000000,-1.0000000000000000000,-0.0004999999492110469,-0.0003461538392409980,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392799035018,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +29 ,0 ,-4.6538464315164800311,-3.8076928005517500785,0.00000000000000000000,-1.0000000000000000000,-0.0004230768851084819,-0.0003461538392409980,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128806406995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +30 ,0 ,-3.8076924597746999445,-3.8076926878981200985,0.00000000000000000000,-1.0000000000000000000,-0.0003461538185025039,-0.0003461538392409980,0.99999988017751995084,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00131804744194142001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +31 ,0 ,-2.9615385330943699848,-3.8076925977753801610,0.00000000000000000000,-1.0000000000000000000,-0.0002692307498482780,-0.0003461538392410259,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237575258990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +32 ,0 ,-2.1153846414618397986,-3.8076925301832198478,0.00000000000000000000,-1.0000000000000000000,-0.0001923076796009709,-0.0003461538392409980,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608301745295,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +33 ,0 ,-1.2692307748634499287,-3.8076924851217199829,0.00000000000000000000,-1.0000000000000000000,-0.0001153846082157489,-0.0003461538392409980,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855759690399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +34 ,0 ,-0.4230769232855409733,-3.8076924625910799626,0.00000000000000000000,-1.0000000000000000000,-0.0000384615361477773,-0.0003461538392409980,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979619402798,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +35 ,0 ,0.42307692328554097338,-3.8076924625910799626,0.00000000000000000000,-1.0000000000000000000,0.00003846153614777730,-0.0003461538392409980,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979619402798,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +36 ,0 ,1.26923077486344992870,-3.8076924851217199829,0.00000000000000000000,-1.0000000000000000000,0.00011538460821574899,-0.0003461538392409980,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855759690399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +37 ,0 ,2.11538464146183979863,-3.8076925301832198478,0.00000000000000000000,-1.0000000000000000000,0.00019230767960097099,-0.0003461538392409980,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608301745295,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +38 ,0 ,2.96153853309436998486,-3.8076925977753801610,0.00000000000000000000,-1.0000000000000000000,0.00026923074984827800,-0.0003461538392410259,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237575258990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +39 ,0 ,3.80769245977469994457,-3.8076926878981200985,0.00000000000000000000,-1.0000000000000000000,0.00034615381850250397,-0.0003461538392409980,0.99999988017751995084,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00131804744194142001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +40 ,0 ,4.65384643151648003112,-3.8076928005517500785,0.00000000000000000000,-1.0000000000000000000,0.00042307688510848199,-0.0003461538392409980,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128806406995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +41 ,0 ,5.50000045833338013778,-3.8076929357362399031,0.00000000000000000000,-1.0000000000000000000,0.00049999994921104699,-0.0003461538392409980,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392799035018,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +42 ,0 ,-5.5000004583333801377,-2.9615389032867298624,0.00000000000000000000,-1.0000000000000000000,-0.0004999999610453660,-0.0002692307659782339,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884429375009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +43 ,0 ,-4.6538464315164800311,-2.9615387981434397879,0.00000000000000000000,-1.0000000000000000000,-0.0004230768951221369,-0.0002692307659782339,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621528140997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +44 ,0 ,-3.8076924597746999445,-2.9615387105239201481,0.00000000000000000000,-1.0000000000000000000,-0.0003461538266954939,-0.0002692307659782339,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237688946001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +45 ,0 ,-2.9615385330943699848,-2.9615386404286199173,0.00000000000000000000,-1.0000000000000000000,-0.0002692307562206040,-0.0002692307659782339,0.99999992751479405139,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00079733731672604302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +46 ,0 ,-2.1153846414618397986,-2.9615385878566398147,0.00000000000000000000,-1.0000000000000000000,-0.0001923076841526319,-0.0002692307659782339,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102819731495,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +47 ,0 ,-1.2692307748634499287,-2.9615385528088800093,0.00000000000000000000,-1.0000000000000000000,-0.0001153846109467459,-0.0002692307659782339,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350573262301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +48 ,0 ,-0.4230769232855409733,-2.9615385352851100186,0.00000000000000000000,-1.0000000000000000000,-0.0000384615370581095,-0.0002692307659782339,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474489818201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +49 ,0 ,0.42307692328554097338,-2.9615385352851100186,0.00000000000000000000,-1.0000000000000000000,0.00003846153705810950,-0.0002692307659782339,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474489818201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +50 ,0 ,1.26923077486344992870,-2.9615385528088800093,0.00000000000000000000,-1.0000000000000000000,0.00011538461094674599,-0.0002692307659782339,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350573262301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +51 ,0 ,2.11538464146183979863,-2.9615385878566398147,0.00000000000000000000,-1.0000000000000000000,0.00019230768415263299,-0.0002692307659782339,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102819731495,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +52 ,0 ,2.96153853309436998486,-2.9615386404286199173,0.00000000000000000000,-1.0000000000000000000,0.00026923075622060400,-0.0002692307659782339,0.99999992751479405139,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00079733731672604302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +53 ,0 ,3.80769245977469994457,-2.9615387105239201481,0.00000000000000000000,-1.0000000000000000000,0.00034615382669549399,-0.0002692307659782339,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237688946001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +54 ,0 ,4.65384643151648003112,-2.9615387981434397879,0.00000000000000000000,-1.0000000000000000000,0.00042307689512213698,-0.0002692307659782339,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621528140997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +55 ,0 ,5.50000045833338013778,-2.9615389032867298624,0.00000000000000000000,-1.0000000000000000000,0.00049999996104536600,-0.0002692307659782339,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884429375009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +56 ,0 ,-5.5000004583333801377,-2.1153849058853100295,0.00000000000000000000,-1.0000000000000000000,-0.0004999999699211050,-0.0001923076911223839,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253712038009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +57 ,0 ,-4.6538464315164800311,-2.1153848307828702068,0.00000000000000000000,-1.0000000000000000000,-0.0004230769026323780,-0.0001923076911223839,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991743036001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +58 ,0 ,-3.8076924597746999445,-2.1153847681970598948,0.00000000000000000000,-1.0000000000000000000,-0.0003461538328402370,-0.0001923076911223290,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608279008003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +59 ,0 ,-2.9615385330943699848,-2.1153847181289400225,0.00000000000000000000,-1.0000000000000000000,-0.0002692307609998480,-0.0001923076911223560,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102751519403,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +60 ,0 ,-2.1153846414618397986,-2.1153846805779399353,0.00000000000000000000,-1.0000000000000000000,-0.0001923076875663780,-0.0001923076911223560,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474410237398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +61 ,0 ,-1.2692307748634499287,-2.1153846555434201448,0.00000000000000000000,-1.0000000000000000000,-0.0001153846129949930,-0.0001923076911223560,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722334298499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +62 ,0 ,-0.4230769232855399741,-2.1153846430264899858,0.00000000000000000000,-1.0000000000000000000,-0.0000384615377408587,-0.0001923076911223560,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846387278501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +63 ,0 ,0.42307692328553997418,-2.1153846430264899858,0.00000000000000000000,-1.0000000000000000000,0.00003846153774085870,-0.0001923076911223560,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846387278501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +64 ,0 ,1.26923077486344992870,-2.1153846555434201448,0.00000000000000000000,-1.0000000000000000000,0.00011538461299499300,-0.0001923076911223560,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722334298499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +65 ,0 ,2.11538464146183979863,-2.1153846805779399353,0.00000000000000000000,-1.0000000000000000000,0.00019230768756637800,-0.0001923076911223560,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474410237398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +66 ,0 ,2.96153853309436998486,-2.1153847181289400225,0.00000000000000000000,-1.0000000000000000000,0.00026923076099984801,-0.0001923076911223560,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102751519403,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +67 ,0 ,3.80769245977469994457,-2.1153847681970598948,0.00000000000000000000,-1.0000000000000000000,0.00034615383284023701,-0.0001923076911223290,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608279008003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +68 ,0 ,4.65384643151648003112,-2.1153848307828702068,0.00000000000000000000,-1.0000000000000000000,0.00042307690263237800,-0.0001923076911223839,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991743036001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +69 ,0 ,5.50000045833338013778,-2.1153849058853100295,0.00000000000000000000,-1.0000000000000000000,0.00049999996992110501,-0.0001923076911223839,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253712038009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +70 ,0 ,-5.5000004583333801377,-1.2692309335173299622,0.00000000000000000000,-1.0000000000000000000,-0.0004999999758382650,-0.0001153846151285830,0.99999986834319798401,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500510600007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +71 ,0 ,-4.6538464315164800311,-1.2692308884555500991,0.00000000000000000000,-1.0000000000000000000,-0.0004230769076392049,-0.0001153846151285550,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238780339990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +72 ,0 ,-3.8076924597746999445,-1.2692308509048300102,0.00000000000000000000,-1.0000000000000000000,-0.0003461538369367320,-0.0001153846151285830,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855827902501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +73 ,0 ,-2.9615385330943699848,-1.2692308208637399502,0.00000000000000000000,-1.0000000000000000000,-0.0002692307641860109,-0.0001153846151285830,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350505050199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +74 ,0 ,-2.1153846414618397986,-1.2692307983329600418,0.00000000000000000000,-1.0000000000000000000,-0.0001923076898422090,-0.0001153846151285550,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722345667101,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +75 ,0 ,-1.2692307748634499287,-1.2692307833125500149,0.00000000000000000000,-1.0000000000000000000,-0.0001153846143604919,-0.0001153846151285830,0.99999998668639000776,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014644970417521100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +76 ,0 ,-0.4230769232855409733,-1.2692307758020000552,0.00000000000000000000,-1.0000000000000000000,-0.0000384615381960247,-0.0001153846151285830,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094743349529,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +77 ,0 ,0.42307692328554097338,-1.2692307758020000552,0.00000000000000000000,-1.0000000000000000000,0.00003846153819602479,-0.0001153846151285830,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094743349529,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +78 ,0 ,1.26923077486344992870,-1.2692307833125500149,0.00000000000000000000,-1.0000000000000000000,0.00011538461436049199,-0.0001153846151285830,0.99999998668639000776,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014644970417521100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +79 ,0 ,2.11538464146183979863,-1.2692307983329600418,0.00000000000000000000,-1.0000000000000000000,0.00019230768984220900,-0.0001153846151285550,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722345667101,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +80 ,0 ,2.96153853309436998486,-1.2692308208637399502,0.00000000000000000000,-1.0000000000000000000,0.00026923076418601098,-0.0001153846151285830,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350505050199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +81 ,0 ,3.80769245977469994457,-1.2692308509048300102,0.00000000000000000000,-1.0000000000000000000,0.00034615383693673202,-0.0001153846151285830,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855827902501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +82 ,0 ,4.65384643151648003112,-1.2692308884555500991,0.00000000000000000000,-1.0000000000000000000,0.00042307690763920499,-0.0001153846151285550,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238780339990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +83 ,0 ,5.50000045833338013778,-1.2692309335173299622,0.00000000000000000000,-1.0000000000000000000,0.00049999997583826500,-0.0001153846151285830,0.99999986834319798401,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500510600007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +84 ,0 ,-5.5000004583333801377,-0.4230769761703330189,0.00000000000000000000,-1.0000000000000000000,-0.0004999999787968440,-0.0000384615384520503,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623961038999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +85 ,0 ,-4.6538464315164800311,-0.4230769611495709958,0.00000000000000000000,-1.0000000000000000000,-0.0004230769101426190,-0.0000384615384520226,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362549102908,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +86 ,0 ,-3.8076924597746999445,-0.4230769486326190209,0.00000000000000000000,-1.0000000000000000000,-0.0003461538389849799,-0.0000384615384520503,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979710352301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +87 ,0 ,-2.9615385330943699848,-0.4230769386189450198,0.00000000000000000000,-1.0000000000000000000,-0.0002692307657790929,-0.0000384615384520503,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474558030298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +88 ,0 ,-2.1153846414618397986,-0.4230769311085499917,0.00000000000000000000,-1.0000000000000000000,-0.0001923076909801239,-0.0000384615384520226,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846444121901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +89 ,0 ,-1.2692307748634499287,-0.4230769261017139903,0.00000000000000000000,-1.0000000000000000000,-0.0001153846150432410,-0.0000384615384520226,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094663768739,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +90 ,0 ,-0.4230769232855409733,-0.4230769235984350173,0.00000000000000000000,-1.0000000000000000000,-0.0000384615384236079,-0.0000384615384520503,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001627218807698229,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +91 ,0 ,0.42307692328554097338,-0.4230769235984350173,0.00000000000000000000,-1.0000000000000000000,0.00003846153842360790,-0.0000384615384520503,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001627218807698229,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +92 ,0 ,1.26923077486344992870,-0.4230769261017139903,0.00000000000000000000,-1.0000000000000000000,0.00011538461504324100,-0.0000384615384520226,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094663768739,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +93 ,0 ,2.11538464146183979863,-0.4230769311085499917,0.00000000000000000000,-1.0000000000000000000,0.00019230769098012398,-0.0000384615384520226,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846444121901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +94 ,0 ,2.96153853309436998486,-0.4230769386189450198,0.00000000000000000000,-1.0000000000000000000,0.00026923076577909299,-0.0000384615384520503,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474558030298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +95 ,0 ,3.80769245977469994457,-0.4230769486326190209,0.00000000000000000000,-1.0000000000000000000,0.00034615383898497999,-0.0000384615384520503,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979710352301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +96 ,0 ,4.65384643151648003112,-0.4230769611495709958,0.00000000000000000000,-1.0000000000000000000,0.00042307691014261902,-0.0000384615384520226,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362549102908,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +97 ,0 ,5.50000045833338013778,-0.4230769761703330189,0.00000000000000000000,-1.0000000000000000000,0.00049999997879684402,-0.0000384615384520503,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623961038999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +98 ,0 ,-5.5000004583333801377,0.42307697617002898438,0.00000000000000000000,-1.0000000000000000000,-0.0004999999787968440,0.00003846153845205039,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623972408008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +99 ,0 ,-4.6538464315164800311,0.42307696114969300937,0.00000000000000000000,-1.0000000000000000000,-0.0004230769101426190,0.00003846153845207810,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362458153394,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +100 ,0 ,-3.8076924597746999445,0.42307694863232198079,0.00000000000000000000,-1.0000000000000000000,-0.0003461538389849799,0.00003846153845205039,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979755827003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +101 ,0 ,-2.9615385330943699848,0.42307693861886802588,0.00000000000000000000,-1.0000000000000000000,-0.0002692307657790929,0.00003846153845202260,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474694454498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +102 ,0 ,-2.1153846414618397986,0.42307693110848998419,0.00000000000000000000,-1.0000000000000000000,-0.0001923076909801239,0.00003846153845205039,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846500965300,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +103 ,0 ,-1.2692307748634499287,0.42307692610180497316,0.00000000000000000000,-1.0000000000000000000,-0.0001153846150432410,0.00003846153845207810,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094766086900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +104 ,0 ,-0.4230769232855409733,0.42307692359853199537,0.00000000000000000000,-1.0000000000000000000,-0.0000384615384236079,0.00003846153845205039,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001627218796329539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +105 ,0 ,0.42307692328554097338,0.42307692359853199537,0.00000000000000000000,-1.0000000000000000000,0.00003846153842360790,0.00003846153845205039,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001627218796329539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +106 ,0 ,1.26923077486344992870,0.42307692610180497316,0.00000000000000000000,-1.0000000000000000000,0.00011538461504324100,0.00003846153845207810,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094766086900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +107 ,0 ,2.11538464146183979863,0.42307693110848998419,0.00000000000000000000,-1.0000000000000000000,0.00019230769098012398,0.00003846153845205039,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846500965300,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +108 ,0 ,2.96153853309436998486,0.42307693861886802588,0.00000000000000000000,-1.0000000000000000000,0.00026923076577909299,0.00003846153845202260,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474694454498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +109 ,0 ,3.80769245977469994457,0.42307694863232198079,0.00000000000000000000,-1.0000000000000000000,0.00034615383898497999,0.00003846153845205039,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979755827003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +110 ,0 ,4.65384643151648003112,0.42307696114969300937,0.00000000000000000000,-1.0000000000000000000,0.00042307691014261902,0.00003846153845207810,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362458153394,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +111 ,0 ,5.50000045833338013778,0.42307697617002898438,0.00000000000000000000,-1.0000000000000000000,0.00049999997879684402,0.00003846153845205039,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623972408008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +112 ,0 ,-5.5000004583333801377,1.26923093351733995426,0.00000000000000000000,-1.0000000000000000000,-0.0004999999758382650,0.00011538461512858300,0.99999986834319898321,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500396912996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +113 ,0 ,-4.6538464315164800311,1.26923088845578990735,0.00000000000000000000,-1.0000000000000000000,-0.0004230769076392049,0.00011538461512858300,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238825815007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +114 ,0 ,-3.8076924597746999445,1.26923085090444009992,0.00000000000000000000,-1.0000000000000000000,-0.0003461538369367320,0.00011538461512855500,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855827902501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +115 ,0 ,-2.9615385330943699848,1.26923082086359007014,0.00000000000000000000,-1.0000000000000000000,-0.0002692307641860109,0.00011538461512858300,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350550524999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +116 ,0 ,-2.1153846414618397986,1.26923079833292007378,0.00000000000000000000,-1.0000000000000000000,-0.0001923076898422090,0.00011538461512858300,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722425247899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +117 ,0 ,-1.2692307748634499287,1.26923078331246008687,0.00000000000000000000,-1.0000000000000000000,-0.0001153846143604919,0.00011538461512855500,0.99999998668639000776,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014644970508470600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +118 ,0 ,-0.4230769232855399741,1.26923077580226006944,0.00000000000000000000,-1.0000000000000000000,-0.0000384615381960247,0.00011538461512858300,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094731980850,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +119 ,0 ,0.42307692328553997418,1.26923077580226006944,0.00000000000000000000,-1.0000000000000000000,0.00003846153819602479,0.00011538461512858300,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094731980850,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +120 ,0 ,1.26923077486344992870,1.26923078331246008687,0.00000000000000000000,-1.0000000000000000000,0.00011538461436049199,0.00011538461512855500,0.99999998668639000776,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014644970508470600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +121 ,0 ,2.11538464146183979863,1.26923079833292007378,0.00000000000000000000,-1.0000000000000000000,0.00019230768984220900,0.00011538461512858300,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722425247899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +122 ,0 ,2.96153853309436998486,1.26923082086359007014,0.00000000000000000000,-1.0000000000000000000,0.00026923076418601098,0.00011538461512858300,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350550524999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +123 ,0 ,3.80769245977469994457,1.26923085090444009992,0.00000000000000000000,-1.0000000000000000000,0.00034615383693673202,0.00011538461512855500,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855827902501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +124 ,0 ,4.65384643151648003112,1.26923088845578990735,0.00000000000000000000,-1.0000000000000000000,0.00042307690763920499,0.00011538461512858300,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238825815007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +125 ,0 ,5.50000045833338013778,1.26923093351733995426,0.00000000000000000000,-1.0000000000000000000,0.00049999997583826500,0.00011538461512858300,0.99999986834319898321,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500396912996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +126 ,0 ,-5.5000004583333801377,2.11538490588455019292,0.00000000000000000000,-1.0000000000000000000,-0.0004999999699211050,0.00019230769112235600,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253746143995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +127 ,0 ,-4.6538464315164800311,2.11538483078214989419,0.00000000000000000000,-1.0000000000000000000,-0.0004230769026323780,0.00019230769112232900,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991617981000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +128 ,0 ,-3.8076924597746999445,2.11538476819697995878,0.00000000000000000000,-1.0000000000000000000,-0.0003461538328402370,0.00019230769112235600,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608404063503,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +129 ,0 ,-2.9615385330943699848,2.11538471812874018240,0.00000000000000000000,-1.0000000000000000000,-0.0002692307609998480,0.00019230769112235600,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102796994095,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +130 ,0 ,-2.1153846414618397986,2.11538468057764017515,0.00000000000000000000,-1.0000000000000000000,-0.0001923076875663780,0.00019230769112232900,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474319287901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +131 ,0 ,-1.2692307748634499287,2.11538465554356980291,0.00000000000000000000,-1.0000000000000000000,-0.0001153846129949930,0.00019230769112238399,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722402510602,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +132 ,0 ,-0.4230769232855399741,2.11538464302639983571,0.00000000000000000000,-1.0000000000000000000,-0.0000384615377408587,0.00019230769112238399,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846478227900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +133 ,0 ,0.42307692328553997418,2.11538464302639983571,0.00000000000000000000,-1.0000000000000000000,0.00003846153774085870,0.00019230769112238399,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846478227900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +134 ,0 ,1.26923077486344992870,2.11538465554356980291,0.00000000000000000000,-1.0000000000000000000,0.00011538461299499300,0.00019230769112238399,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722402510602,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +135 ,0 ,2.11538464146183979863,2.11538468057764017515,0.00000000000000000000,-1.0000000000000000000,0.00019230768756637800,0.00019230769112232900,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474319287901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +136 ,0 ,2.96153853309436998486,2.11538471812874018240,0.00000000000000000000,-1.0000000000000000000,0.00026923076099984801,0.00019230769112235600,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102796994095,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +137 ,0 ,3.80769245977469994457,2.11538476819697995878,0.00000000000000000000,-1.0000000000000000000,0.00034615383284023701,0.00019230769112235600,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608404063503,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +138 ,0 ,4.65384643151648003112,2.11538483078214989419,0.00000000000000000000,-1.0000000000000000000,0.00042307690263237800,0.00019230769112232900,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991617981000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +139 ,0 ,5.50000045833338013778,2.11538490588455019292,0.00000000000000000000,-1.0000000000000000000,0.00049999996992110501,0.00019230769112235600,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253746143995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +140 ,0 ,-5.5000004583333801377,2.96153890328674007648,0.00000000000000000000,-1.0000000000000000000,-0.0004999999610453660,0.00026923076597823398,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884406638010,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +141 ,0 ,-4.6538464315164800311,2.96153879814346021603,0.00000000000000000000,-1.0000000000000000000,-0.0004230768951221369,0.00026923076597823398,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621653196995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +142 ,0 ,-3.8076924597746999445,2.96153871052384021211,0.00000000000000000000,-1.0000000000000000000,-0.0003461538266954939,0.00026923076597823398,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237677577989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +143 ,0 ,-2.9615385330943699848,2.96153864042832992709,0.00000000000000000000,-1.0000000000000000000,-0.0002692307562206040,0.00026923076597823398,0.99999992751479405139,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00079733731774922500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +144 ,0 ,-2.1153846414618397986,2.96153858785647017271,0.00000000000000000000,-1.0000000000000000000,-0.0001923076841526319,0.00026923076597823398,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102694675995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +145 ,0 ,-1.2692307748634499287,2.96153855280868016919,0.00000000000000000000,-1.0000000000000000000,-0.0001153846109467459,0.00026923076597820699,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350630105802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +146 ,0 ,-0.4230769232855409733,2.96153853528482979839,0.00000000000000000000,-1.0000000000000000000,-0.0000384615370581095,0.00026923076597823398,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474512555498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +147 ,0 ,0.42307692328554097338,2.96153853528482979839,0.00000000000000000000,-1.0000000000000000000,0.00003846153705810950,0.00026923076597823398,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474512555498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +148 ,0 ,1.26923077486344992870,2.96153855280868016919,0.00000000000000000000,-1.0000000000000000000,0.00011538461094674599,0.00026923076597820699,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350630105802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +149 ,0 ,2.11538464146183979863,2.96153858785647017271,0.00000000000000000000,-1.0000000000000000000,0.00019230768415263299,0.00026923076597823398,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102694675995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +150 ,0 ,2.96153853309436998486,2.96153864042832992709,0.00000000000000000000,-1.0000000000000000000,0.00026923075622060400,0.00026923076597823398,0.99999992751479405139,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00079733731774922500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +151 ,0 ,3.80769245977469994457,2.96153871052384021211,0.00000000000000000000,-1.0000000000000000000,0.00034615382669549399,0.00026923076597823398,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237677577989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +152 ,0 ,4.65384643151648003112,2.96153879814346021603,0.00000000000000000000,-1.0000000000000000000,0.00042307689512213698,0.00026923076597823398,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621653196995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +153 ,0 ,5.50000045833338013778,2.96153890328674007648,0.00000000000000000000,-1.0000000000000000000,0.00049999996104536600,0.00026923076597823398,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884406638010,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +154 ,0 ,-5.5000004583333801377,3.80769293573588996082,0.00000000000000000000,-1.0000000000000000000,-0.0004999999492110469,0.00034615383924099801,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392548924018,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +155 ,0 ,-4.6538464315164800311,3.80769280055183978461,0.00000000000000000000,-1.0000000000000000000,-0.0004230768851084819,0.00034615383924099801,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128931461996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +156 ,0 ,-3.8076924597746999445,3.80769268789814008258,0.00000000000000000000,-1.0000000000000000000,-0.0003461538185025039,0.00034615383924099801,0.99999988017751995084,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00131804744148667006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +157 ,0 ,-2.9615385330943699848,3.80769259777498980668,0.00000000000000000000,-1.0000000000000000000,-0.0002692307498482780,0.00034615383924099801,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237666209002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +158 ,0 ,-2.1153846414618397986,3.80769253018311015779,0.00000000000000000000,-1.0000000000000000000,-0.0001923076796009709,0.00034615383924102598,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608358588800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +159 ,0 ,-1.2692307748634499287,3.80769248512150992880,0.00000000000000000000,-1.0000000000000000000,-0.0001153846082157489,0.00034615383924099801,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855646003604,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +160 ,0 ,-0.4230769232855409733,3.80769246259073002036,0.00000000000000000000,-1.0000000000000000000,-0.0000384615361477773,0.00034615383924099801,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979755827003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +161 ,0 ,0.42307692328554097338,3.80769246259073002036,0.00000000000000000000,-1.0000000000000000000,0.00003846153614777730,0.00034615383924099801,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979755827003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +162 ,0 ,1.26923077486344992870,3.80769248512150992880,0.00000000000000000000,-1.0000000000000000000,0.00011538460821574899,0.00034615383924099801,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855646003604,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +163 ,0 ,2.11538464146183979863,3.80769253018311015779,0.00000000000000000000,-1.0000000000000000000,0.00019230767960097099,0.00034615383924102598,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608358588800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +164 ,0 ,2.96153853309436998486,3.80769259777498980668,0.00000000000000000000,-1.0000000000000000000,0.00026923074984827800,0.00034615383924099801,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237666209002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +165 ,0 ,3.80769245977469994457,3.80769268789814008258,0.00000000000000000000,-1.0000000000000000000,0.00034615381850250397,0.00034615383924099801,0.99999988017751995084,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00131804744148667006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +166 ,0 ,4.65384643151648003112,3.80769280055183978461,0.00000000000000000000,-1.0000000000000000000,0.00042307688510848199,0.00034615383924099801,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128931461996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +167 ,0 ,5.50000045833338013778,3.80769293573588996082,0.00000000000000000000,-1.0000000000000000000,0.00049999994921104699,0.00034615383924099801,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392548924018,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +168 ,0 ,-5.5000004583333801377,4.65384701324730976068,0.00000000000000000000,-1.0000000000000000000,-0.0004999999344181489,0.00042307691045556698,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779559981006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +169 ,0 ,-4.6538464315164800311,4.65384684802194037445,0.00000000000000000000,-1.0000000000000000000,-0.0004230768725914139,0.00042307691045553901,0.99999982100592799127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00196893514441853984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +170 ,0 ,-3.8076924597746999445,4.65384671033404018203,0.00000000000000000000,-1.0000000000000000000,-0.0003461538082612659,0.00042307691045553901,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128965569002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +171 ,0 ,-2.9615385330943699848,4.65384660018406037806,0.00000000000000000000,-1.0000000000000000000,-0.0002692307418828710,0.00042307691045556698,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621505403998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +172 ,0 ,-2.1153846414618397986,4.65384651757102041358,0.00000000000000000000,-1.0000000000000000000,-0.0001923076739113949,0.00042307691045553901,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991629348990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +173 ,0 ,-1.2692307748634499287,4.65384646249660960393,0.00000000000000000000,-1.0000000000000000000,-0.0001153846048020029,0.00042307691045556698,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238928133009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +174 ,0 ,-0.4230769232855409733,4.65384643495869010365,0.00000000000000000000,-1.0000000000000000000,-0.0000384615350098619,0.00042307691045553901,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362378572608,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +175 ,0 ,0.42307692328554097338,4.65384643495869010365,0.00000000000000000000,-1.0000000000000000000,0.00003846153500986199,0.00042307691045553901,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362378572608,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +176 ,0 ,1.26923077486344992870,4.65384646249660960393,0.00000000000000000000,-1.0000000000000000000,0.00011538460480200299,0.00042307691045556698,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238928133009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +177 ,0 ,2.11538464146183979863,4.65384651757102041358,0.00000000000000000000,-1.0000000000000000000,0.00019230767391139499,0.00042307691045553901,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991629348990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +178 ,0 ,2.96153853309436998486,4.65384660018406037806,0.00000000000000000000,-1.0000000000000000000,0.00026923074188287102,0.00042307691045556698,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621505403998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +179 ,0 ,3.80769245977469994457,4.65384671033404018203,0.00000000000000000000,-1.0000000000000000000,0.00034615380826126599,0.00042307691045553901,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128965569002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +180 ,0 ,4.65384643151648003112,4.65384684802194037445,0.00000000000000000000,-1.0000000000000000000,0.00042307687259141398,0.00042307691045553901,0.99999982100592799127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00196893514441853984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +181 ,0 ,5.50000045833338013778,4.65384701324730976068,0.00000000000000000000,-1.0000000000000000000,0.00049999993441814897,0.00042307691045556698,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779559981006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +182 ,0 ,-5.5000004583333801377,5.50000114583357024855,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,0.00049999997916669303,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00275000045849083021,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +183 ,0 ,-4.6538464315164800311,5.50000095056703042217,0.00000000000000000000,-1.0000000000000000000,-0.0004230768575709329,0.00049999997916666495,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779412187987,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +184 ,0 ,-3.8076924597746999445,5.50000078784527968167,0.00000000000000000000,-1.0000000000000000000,-0.0003461537959717820,0.00049999997916666495,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392685348007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +185 ,0 ,-2.9615385330943699848,5.50000065766760037888,0.00000000000000000000,-1.0000000000000000000,-0.0002692307323243830,0.00049999997916666495,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884508955990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +186 ,0 ,-2.1153846414618397986,5.50000056003445969565,0.00000000000000000000,-1.0000000000000000000,-0.0001923076670839029,0.00049999997916666495,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253791618990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +187 ,0 ,-1.2692307748634499287,5.50000049494587983645,0.00000000000000000000,-1.0000000000000000000,-0.0001153846007055080,0.00049999997916669303,0.99999986834319898321,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500442387991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +188 ,0 ,-0.4230769232855409733,5.50000046240131990060,0.00000000000000000000,-1.0000000000000000000,-0.0000384615336443635,0.00049999997916666495,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623824614989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +189 ,0 ,0.42307692328554097338,5.50000046240131990060,0.00000000000000000000,-1.0000000000000000000,0.00003846153364436359,0.00049999997916666495,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623824614989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +190 ,0 ,1.26923077486344992870,5.50000049494587983645,0.00000000000000000000,-1.0000000000000000000,0.00011538460070550800,0.00049999997916669303,0.99999986834319898321,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500442387991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +191 ,0 ,2.11538464146183979863,5.50000056003445969565,0.00000000000000000000,-1.0000000000000000000,0.00019230766708390299,0.00049999997916666495,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253791618990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +192 ,0 ,2.96153853309436998486,5.50000065766760037888,0.00000000000000000000,-1.0000000000000000000,0.00026923073232438301,0.00049999997916666495,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884508955990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +193 ,0 ,3.80769245977469994457,5.50000078784527968167,0.00000000000000000000,-1.0000000000000000000,0.00034615379597178200,0.00049999997916666495,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392685348007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +194 ,0 ,4.65384643151648003112,5.50000095056703042217,0.00000000000000000000,-1.0000000000000000000,0.00042307685757093298,0.00049999997916666495,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779412187987,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +195 ,0 ,5.50000045833338013778,5.50000114583357024855,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,0.00049999997916669303,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00275000045849083021,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +196 ,0 ,-5.5000004583333801377,-5.5000011458334601144,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,-0.0004999999791666379,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00275000045746764997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +197 ,0 ,-4.6538464315164800311,-5.5000009505670703902,0.00000000000000000000,-1.0000000000000000000,-0.0004230768575709329,-0.0004999999791666649,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779537243985,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +198 ,0 ,-3.8076924597746999445,-5.5000007878453196497,0.00000000000000000000,-1.0000000000000000000,-0.0003461537959717820,-0.0004999999791666649,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392708084984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +199 ,0 ,-2.9615385330943699848,-5.5000006576677895608,0.00000000000000000000,-1.0000000000000000000,-0.0002692307323243830,-0.0004999999791666649,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884497587003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/Ellipsoid_PM.rayx.csv b/Intern/RayCore/tests/output/Ellipsoid_PM.rayx.csv new file mode 100644 index 000000000..ac6f55abd --- /dev/null +++ b/Intern/RayCore/tests/output/Ellipsoid_PM.rayx.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-5.5000004583333783614,-5.5000011458332416225,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,-0.0004999999791666126,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-4.6538464315164800311,-5.5000009505676263898,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,-0.0004999999791666171,0.99999978550297363710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,-3.8076924597747008327,-5.5000007878453027743,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,-0.0004999999791666261,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,-2.9615385330943735375,-5.5000006576681395031,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,-0.0004999999791666953,0.99999983875740372507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-2.1153846414618420190,-5.5000005600345565071,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,-0.0004999999791665995,0.99999985650888068011,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-1.2692307748634505948,-5.5000004949457483860,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,-0.0004999999791666341,0.99999986834319853912,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250026048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,-0.4230769232855405848,-5.5000004624020446541,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,-0.0004999999791666703,0.99999987426035752413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362375640,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,0.42307692328554058480,-5.5000004624020446541,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,-0.0004999999791666703,0.99999987426035752413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362375640,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,1.26923077486345059483,-5.5000004949457483860,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,-0.0004999999791666341,0.99999986834319853912,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250026048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,2.11538464146184246317,-5.5000005600345565071,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,-0.0004999999791665995,0.99999985650888068011,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,2.96153853309437353757,-5.5000006576681395031,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,-0.0004999999791666953,0.99999983875740372507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,3.80769245977470083275,-5.5000007878453027743,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,-0.0004999999791666261,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,4.65384643151648180747,-5.5000009505676263898,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,-0.0004999999791666171,0.99999978550297363710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,5.50000045833337836143,-5.5000011458332416225,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,-0.0004999999791666126,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,-5.5000004583333801377,-4.6538470132473550577,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,-0.0004230769104554765,0.99999978550297352608,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,-4.6538464315164818074,-4.6538468480224031154,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,-0.0004230769104555275,0.99999982100592754719,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351447595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-3.8076924597747003886,-4.6538467103345997344,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,-0.0004230769104555277,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-2.9615385330943735375,-4.6538466001840133046,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,-0.0004230769104555471,0.99999987426035952253,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362175551,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,-2.1153846414618424631,-4.6538465175714796018,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,-0.0004230769104555127,0.99999989201183714371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699187946,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,-1.2692307748634505948,-4.6538464624961592974,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,-0.0004230769104554946,0.99999990384615544680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +20 ,0 ,-0.4230769232855405848,-4.6538464349585462187,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,-0.0004230769104555338,0.99999990976331476488,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,0 ,0.42307692328554058480,-4.6538464349585462187,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,-0.0004230769104555338,0.99999990976331476488,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,0 ,1.26923077486345059483,-4.6538464624961592974,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,-0.0004230769104554946,0.99999990384615544680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +23 ,0 ,2.11538464146184290726,-4.6538465175714796018,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,-0.0004230769104555127,0.99999989201183714371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699187946,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +24 ,0 ,2.96153853309437353757,-4.6538466001840133046,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,-0.0004230769104555471,0.99999987426035952253,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362175551,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,0 ,3.80769245977470038866,-4.6538467103345997344,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,-0.0004230769104555277,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,0 ,4.65384643151648269565,-4.6538468480224031154,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,-0.0004230769104555275,0.99999982100592754719,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351447595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +27 ,0 ,5.50000045833338013778,-4.6538470132473550577,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,-0.0004230769104554765,0.99999978550297352608,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +28 ,0 ,-5.5000004583333792496,-3.8076929357360000949,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,-0.0003461538392409787,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239261713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +29 ,0 ,-4.6538464315164818074,-3.8076928005515742192,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,-0.0003461538392409654,0.99999985059172313839,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,0 ,-3.8076924597747012768,-3.8076926878984158619,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,-0.0003461538392409538,0.99999988017751939572,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,0 ,-2.9615385330943726494,-3.8076925977756510555,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,-0.0003461538392409790,0.99999990384615666805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +32 ,0 ,-2.1153846414618424631,-3.8076925301832238446,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,-0.0003461538392409855,0.99999992159763473331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +33 ,0 ,-1.2692307748634501507,-3.8076924851220619316,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,-0.0003461538392409908,0.99999993343195359152,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +34 ,0 ,-0.4230769232855405848,-3.8076924625911980903,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,-0.0003461538392409364,0.99999993934911279858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597966487,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +35 ,0 ,0.42307692328554058480,-3.8076924625911980903,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,-0.0003461538392409364,0.99999993934911279858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597966487,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,0 ,1.26923077486345015074,-3.8076924851220619316,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,-0.0003461538392409908,0.99999993343195359152,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,0 ,2.11538464146184290726,-3.8076925301832238446,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,-0.0003461538392409855,0.99999992159763473331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +38 ,0 ,2.96153853309437264940,-3.8076925977756510555,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,-0.0003461538392409790,0.99999990384615666805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +39 ,0 ,3.80769245977470127684,-3.8076926878984158619,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,-0.0003461538392409538,0.99999988017751939572,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +40 ,0 ,4.65384643151648269565,-3.8076928005515742192,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,-0.0003461538392409654,0.99999985059172313839,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,0 ,5.50000045833337924960,-3.8076929357360000949,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,-0.0003461538392409787,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239261713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +42 ,0 ,-5.5000004583333792496,-2.9615389032868635332,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,-0.0002692307659781633,0.99999983875740372507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +43 ,0 ,-4.6538464315164826956,-2.9615387981433798358,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,-0.0002692307659781733,0.99999987426035952253,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,0 ,-3.8076924597747008327,-2.9615387105236430365,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,-0.0002692307659782435,0.99999990384615677907,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923777989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,0 ,-2.9615385330943735375,-2.9615386404283912114,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,-0.0002692307659781985,0.99999992751479449548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007973373158165,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,0 ,-2.1153846414618420190,-2.9615385878564097765,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,-0.0002692307659781904,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +47 ,0 ,-1.2692307748634503727,-2.9615385528085842459,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,-0.0002692307659781956,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +48 ,0 ,-0.4230769232855405848,-2.9615385352844083577,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,-0.0002692307659781617,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +49 ,0 ,0.42307692328554058480,-2.9615385352844083577,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,-0.0002692307659781617,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +50 ,0 ,1.26923077486345037279,-2.9615385528085842459,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,-0.0002692307659781956,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +51 ,0 ,2.11538464146184290726,-2.9615385878564097765,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,-0.0002692307659781904,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,0 ,2.96153853309437353757,-2.9615386404283912114,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,-0.0002692307659781985,0.99999992751479449548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007973373158165,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +53 ,0 ,3.80769245977470083275,-2.9615387105236430365,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,-0.0002692307659782435,0.99999990384615677907,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923777989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +54 ,0 ,4.65384643151648269565,-2.9615387981433798358,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,-0.0002692307659781733,0.99999987426035952253,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +55 ,0 ,5.50000045833337924960,-2.9615389032868635332,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,-0.0002692307659781633,0.99999983875740372507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +56 ,0 ,-5.5000004583333801377,-2.1153849058847842279,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,-0.0001923076911223311,0.99999985650888056909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025399625,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +57 ,0 ,-4.6538464315164826956,-2.1153848307828981845,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,-0.0001923076911223294,0.99999989201183725473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +58 ,0 ,-3.8076924597747003886,-2.1153847681972930416,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,-0.0001923076911223090,0.99999992159763473331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +59 ,0 ,-2.9615385330943735375,-2.1153847181289671119,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,-0.0001923076911223604,0.99999994526627289381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +60 ,0 ,-2.1153846414618420190,-2.1153846805782099416,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,-0.0001923076911223171,0.99999996301775173623,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047419423,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +61 ,0 ,-1.2692307748634503727,-2.1153846555438398091,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,-0.0001923076911223632,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272245935,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,0 ,-0.4230769232855405292,-2.1153846430265814682,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,-0.0001923076911223118,0.99999998076923068968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +63 ,0 ,0.42307692328554052929,-2.1153846430265814682,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,-0.0001923076911223118,0.99999998076923068968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +64 ,0 ,1.26923077486345037279,-2.1153846555438398091,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,-0.0001923076911223632,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272245935,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +65 ,0 ,2.11538464146184290726,-2.1153846805782099416,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,-0.0001923076911223171,0.99999996301775173623,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047419423,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +66 ,0 ,2.96153853309437353757,-2.1153847181289671119,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,-0.0001923076911223604,0.99999994526627289381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,0 ,3.80769245977470038866,-2.1153847681972930416,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,-0.0001923076911223090,0.99999992159763473331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +68 ,0 ,4.65384643151648269565,-2.1153848307828981845,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,-0.0001923076911223294,0.99999989201183725473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +69 ,0 ,5.50000045833338013778,-2.1153849058847842279,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,-0.0001923076911223311,0.99999985650888056909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025399625,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +70 ,0 ,-5.5000004583333792496,-1.2692309335170413042,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,-0.0001153846151285639,0.99999986834319853912,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250062428,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +71 ,0 ,-4.6538464315164818074,-1.2692308884560012938,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,-0.0001153846151285651,0.99999990384615555782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +72 ,0 ,-3.8076924597747003886,-1.2692308509049472498,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,-0.0001153846151285300,0.99999993343195348050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +73 ,0 ,-2.9615385330943726494,-1.2692308208640217248,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,-0.0001153846151286018,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +74 ,0 ,-2.1153846414618424631,-1.2692307983334234489,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,-0.0001153846151285235,0.99999997485207092751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272227745,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +75 ,0 ,-1.2692307748634505948,-1.2692307833125162641,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,-0.0001153846151285696,0.99999998668639022980,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001464497036067,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +76 ,0 ,-0.4230769232855405848,-1.2692307758020089369,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,-0.0001153846151285387,0.99999999260355010299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609476608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +77 ,0 ,0.42307692328554058480,-1.2692307758020089369,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,-0.0001153846151285387,0.99999999260355010299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609476608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +78 ,0 ,1.26923077486345059483,-1.2692307833125162641,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,-0.0001153846151285696,0.99999998668639022980,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001464497036067,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +79 ,0 ,2.11538464146184290726,-1.2692307983334234489,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,-0.0001153846151285235,0.99999997485207092751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272227745,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +80 ,0 ,2.96153853309437264940,-1.2692308208640217248,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,-0.0001153846151286018,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +81 ,0 ,3.80769245977470038866,-1.2692308509049472498,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,-0.0001153846151285300,0.99999993343195348050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +82 ,0 ,4.65384643151648269565,-1.2692308884560012938,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,-0.0001153846151285651,0.99999990384615555782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +83 ,0 ,5.50000045833337924960,-1.2692309335170413042,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,-0.0001153846151285639,0.99999986834319853912,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250062428,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +84 ,0 ,-5.5000004583333792496,-0.4230769761707330878,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,-0.0000384615384519990,0.99999987426035752413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +85 ,0 ,-4.6538464315164818074,-0.4230769611497329774,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,-0.0000384615384520586,0.99999990976331487591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +86 ,0 ,-3.8076924597746999445,-0.4230769486331131812,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,-0.0000384615384520790,0.99999993934911279858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597948297,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +87 ,0 ,-2.9615385330943735375,-0.4230769386190170178,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,-0.0000384615384520223,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +88 ,0 ,-2.1153846414618420190,-0.4230769311089396800,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,-0.0000384615384520199,0.99999998076923068968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +89 ,0 ,-1.2692307748634503727,-0.4230769261018929583,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,-0.0000384615384519930,0.99999999260355010299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609476608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +90 ,0 ,-0.4230769232855404737,-0.4230769235988797727,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,-0.0000384615384520350,0.99999999852070975414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,0 ,0.42307692328554047378,-0.4230769235988797727,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,-0.0000384615384520350,0.99999999852070975414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +92 ,0 ,1.26923077486345037279,-0.4230769261018929583,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,-0.0000384615384519930,0.99999999260355010299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609476608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +93 ,0 ,2.11538464146184290726,-0.4230769311089396800,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,-0.0000384615384520199,0.99999998076923068968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +94 ,0 ,2.96153853309437353757,-0.4230769386190170178,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,-0.0000384615384520223,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +95 ,0 ,3.80769245977469994457,-0.4230769486331131812,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,-0.0000384615384520790,0.99999993934911279858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597948297,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +96 ,0 ,4.65384643151648269565,-0.4230769611497329774,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,-0.0000384615384520586,0.99999990976331487591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +97 ,0 ,5.50000045833337924960,-0.4230769761707330878,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,-0.0000384615384519990,0.99999987426035752413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +98 ,0 ,-5.5000004583333801377,0.42307697617006650991,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,0.00003846153845211523,0.99999987426035752413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +99 ,0 ,-4.6538464315164826956,0.42307696114936699238,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,0.00003846153845211116,0.99999990976331487591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +100 ,0 ,-3.8076924597747003886,0.42307694863232775395,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,0.00003846153845209075,0.99999993934911279858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597948297,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +101 ,0 ,-2.9615385330943735375,0.42307693861944162261,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,0.00003846153845209196,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047473992,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +102 ,0 ,-2.1153846414618424631,0.42307693110886901433,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,0.00003846153845209435,0.99999998076923057865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384650096,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +103 ,0 ,-1.2692307748634501507,0.42307692610154273848,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,0.00003846153845212127,0.99999999260355010299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609476608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +104 ,0 ,-0.4230769232855405848,0.42307692359833443118,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,0.00003846153845213473,0.99999999852070975414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +105 ,0 ,0.42307692328554058480,0.42307692359833443118,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,0.00003846153845213473,0.99999999852070975414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +106 ,0 ,1.26923077486345015074,0.42307692610154273848,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,0.00003846153845212127,0.99999999260355010299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609476608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +107 ,0 ,2.11538464146184290726,0.42307693110886901433,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,0.00003846153845209435,0.99999998076923057865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384650096,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +108 ,0 ,2.96153853309437353757,0.42307693861944162261,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,0.00003846153845209196,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047473992,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +109 ,0 ,3.80769245977470038866,0.42307694863232775395,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,0.00003846153845209075,0.99999993934911279858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597948297,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +110 ,0 ,4.65384643151648269565,0.42307696114936699238,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,0.00003846153845211116,0.99999990976331487591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +111 ,0 ,5.50000045833338013778,0.42307697617006650991,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,0.00003846153845211523,0.99999987426035752413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +112 ,0 ,-5.5000004583333801377,1.26923093351743565548,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,0.00011538461512864165,0.99999986834319842810,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250044238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +113 ,0 ,-4.6538464315164826956,1.26923088845508447164,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,0.00011538461512860250,0.99999990384615555782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923887128,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +114 ,0 ,-3.8076924597747008327,1.26923085090431331245,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,0.00011538461512862007,0.99999993343195348050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +115 ,0 ,-2.9615385330943726494,1.26923082086366556531,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,0.00011538461512860373,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +116 ,0 ,-2.1153846414618424631,1.26923079833272201000,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,0.00011538461512858858,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272227745,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +117 ,0 ,-1.2692307748634503727,1.26923078331241612204,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,0.00011538461512859796,0.99999998668639034082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001464497054257,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +118 ,0 ,-0.4230769232855404737,1.26923077580181709045,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,0.00011538461512861142,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609440228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +119 ,0 ,0.42307692328554047378,1.26923077580181709045,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,0.00011538461512861142,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609440228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +120 ,0 ,1.26923077486345037279,1.26923078331241612204,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,0.00011538461512859796,0.99999998668639034082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001464497054257,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +121 ,0 ,2.11538464146184335135,1.26923079833272201000,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,0.00011538461512858858,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272227745,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +122 ,0 ,2.96153853309437264940,1.26923082086366556531,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,0.00011538461512860373,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +123 ,0 ,3.80769245977470083275,1.26923085090431331245,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,0.00011538461512862007,0.99999993343195348050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +124 ,0 ,4.65384643151648269565,1.26923088845508447164,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,0.00011538461512860250,0.99999990384615555782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923887128,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +125 ,0 ,5.50000045833338013778,1.26923093351743565548,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,0.00011538461512864165,0.99999986834319842810,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250044238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +126 ,0 ,-5.5000004583333783614,2.11538490588460970087,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,0.00019230769112236695,0.99999985650888056909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +127 ,0 ,-4.6538464315164818074,2.11538483078186390073,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,0.00019230769112240665,0.99999989201183714371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +128 ,0 ,-3.8076924597746999445,2.11538476819676013462,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,0.00019230769112235114,0.99999992159763484433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +129 ,0 ,-2.9615385330943726494,2.11538471812903727808,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,0.00019230769112239321,0.99999994526627289381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +130 ,0 ,-2.1153846414618420190,2.11538468057764994512,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,0.00019230769112239852,0.99999996301775184726,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +131 ,0 ,-1.2692307748634501507,2.11538465554311549965,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,0.00019230769112242831,0.99999997485207092751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272227745,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +132 ,0 ,-0.4230769232855405848,2.11538464302670048411,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,0.00019230769112238627,0.99999998076923068968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384650096,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +133 ,0 ,0.42307692328554058480,2.11538464302670048411,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,0.00019230769112238627,0.99999998076923068968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384650096,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +134 ,0 ,1.26923077486345015074,2.11538465554311549965,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,0.00019230769112242831,0.99999997485207092751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272227745,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +135 ,0 ,2.11538464146184290726,2.11538468057764994512,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,0.00019230769112239852,0.99999996301775184726,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +136 ,0 ,2.96153853309437264940,2.11538471812903727808,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,0.00019230769112239321,0.99999994526627289381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +137 ,0 ,3.80769245977469994457,2.11538476819676013462,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,0.00019230769112235114,0.99999992159763484433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +138 ,0 ,4.65384643151648269565,2.11538483078186390073,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,0.00019230769112240665,0.99999989201183714371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +139 ,0 ,5.50000045833337836143,2.11538490588460970087,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,0.00019230769112236695,0.99999985650888056909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +140 ,0 ,-5.5000004583333792496,2.96153890328686753008,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,0.00026923076597822981,0.99999983875740361405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +141 ,0 ,-4.6538464315164818074,2.96153879814303078177,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,0.00026923076597823729,0.99999987426035963355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +142 ,0 ,-3.8076924597747003886,2.96153871052337480662,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,0.00026923076597829860,0.99999990384615666805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +143 ,0 ,-2.9615385330943730934,2.96153864042818826263,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,0.00026923076597825008,0.99999992751479449548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007973373176355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +144 ,0 ,-2.1153846414618424631,2.96153858785667356556,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,0.00026923076597820276,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +145 ,0 ,-1.2692307748634503727,2.96153855280847366771,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,0.00026923076597825301,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935033451,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +146 ,0 ,-0.4230769232855405848,2.96153853528438304465,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,0.00026923076597828689,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047437613,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +147 ,0 ,0.42307692328554058480,2.96153853528438304465,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,0.00026923076597828689,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047437613,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +148 ,0 ,1.26923077486345037279,2.96153855280847366771,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,0.00026923076597825301,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935033451,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +149 ,0 ,2.11538464146184290726,2.96153858785667356556,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,0.00026923076597820276,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +150 ,0 ,2.96153853309437309349,2.96153864042818826263,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,0.00026923076597825008,0.99999992751479449548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007973373176355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +151 ,0 ,3.80769245977470038866,2.96153871052337480662,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,0.00026923076597829860,0.99999990384615666805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +152 ,0 ,4.65384643151648269565,2.96153879814303078177,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,0.00026923076597823729,0.99999987426035963355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +153 ,0 ,5.50000045833337924960,2.96153890328686753008,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,0.00026923076597822981,0.99999983875740361405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +154 ,0 ,-5.5000004583333792496,3.80769293573597256141,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,0.00034615383924101693,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +155 ,0 ,-4.6538464315164826956,3.80769280055154091257,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,0.00034615383924106821,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +156 ,0 ,-3.8076924597747003886,3.80769268789815695797,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,0.00034615383924104181,0.99999988017751950675,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +157 ,0 ,-2.9615385330943726494,3.80769259777499069485,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,0.00034615383924101661,0.99999990384615666805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +158 ,0 ,-2.1153846414618420190,3.80769253018297071378,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,0.00034615383924101015,0.99999992159763473331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260844953,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +159 ,0 ,-1.2692307748634503727,3.80769248512166180731,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,0.00034615383924104284,0.99999993343195348050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +160 ,0 ,-0.4230769232855405848,3.80769246259100713203,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,0.00034615383924105921,0.99999993934911290960,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597966487,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +161 ,0 ,0.42307692328554058480,3.80769246259100713203,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,0.00034615383924105921,0.99999993934911290960,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597966487,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +162 ,0 ,1.26923077486345037279,3.80769248512166180731,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,0.00034615383924104284,0.99999993343195348050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +163 ,0 ,2.11538464146184290726,3.80769253018297071378,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,0.00034615383924101015,0.99999992159763473331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260844953,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +164 ,0 ,2.96153853309437264940,3.80769259777499069485,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,0.00034615383924101661,0.99999990384615666805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +165 ,0 ,3.80769245977470038866,3.80769268789815695797,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,0.00034615383924104181,0.99999988017751950675,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +166 ,0 ,4.65384643151648269565,3.80769280055154091257,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,0.00034615383924106821,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +167 ,0 ,5.50000045833337924960,3.80769293573597256141,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,0.00034615383924101693,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +168 ,0 ,-5.5000004583333783614,4.65384701324748473183,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,0.00042307691045562618,0.99999978550297352608,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677968503,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +169 ,0 ,-4.6538464315164818074,4.65384684802192705177,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,0.00042307691045559263,0.99999982100592765821,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351465785,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +170 ,0 ,-3.8076924597747003886,4.65384671033374619497,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,0.00042307691045557495,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +171 ,0 ,-2.9615385330943726494,4.65384660018385254431,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,0.00042307691045557306,0.99999987426035963355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +172 ,0 ,-2.1153846414618424631,4.65384651757084188972,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,0.00042307691045555197,0.99999989201183725473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +173 ,0 ,-1.2692307748634503727,4.65384646249572675458,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,0.00042307691045560797,0.99999990384615544680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +174 ,0 ,-0.4230769232855404737,4.65384643495783301148,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,0.00042307691045553083,0.99999990976331487591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +175 ,0 ,0.42307692328554047378,4.65384643495783301148,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,0.00042307691045553083,0.99999990976331487591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +176 ,0 ,1.26923077486345037279,4.65384646249572675458,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,0.00042307691045560797,0.99999990384615544680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +177 ,0 ,2.11538464146184290726,4.65384651757084188972,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,0.00042307691045555197,0.99999989201183725473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +178 ,0 ,2.96153853309437264940,4.65384660018385254431,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,0.00042307691045557306,0.99999987426035963355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +179 ,0 ,3.80769245977470038866,4.65384671033374619497,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,0.00042307691045557495,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +180 ,0 ,4.65384643151648180747,4.65384684802192705177,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,0.00042307691045559263,0.99999982100592765821,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351465785,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +181 ,0 ,5.50000045833337836143,4.65384701324748473183,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,0.00042307691045562618,0.99999978550297352608,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677968503,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +182 ,0 ,-5.5000004583333783614,5.50000114583286769942,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916669531,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +183 ,0 ,-4.6538464315164818074,5.50000095056690607719,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00049999997916669086,0.99999978550297363710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +184 ,0 ,-3.8076924597747008327,5.50000078784517221208,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00049999997916673737,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +185 ,0 ,-2.9615385330943730934,5.50000065766753287732,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00049999997916670615,0.99999983875740361405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +186 ,0 ,-2.1153846414618424631,5.50000056003459647513,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,0.00049999997916674637,0.99999985650888056909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +187 ,0 ,-1.2692307748634503727,5.50000049494621290335,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,0.00049999997916671179,0.99999986834319842810,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250062428,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +188 ,0 ,-0.4230769232855405292,5.50000046240107032247,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,0.00049999997916665508,0.99999987426035763515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +189 ,0 ,0.42307692328554052929,5.50000046240107032247,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,0.00049999997916665508,0.99999987426035763515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +190 ,0 ,1.26923077486345037279,5.50000049494621290335,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,0.00049999997916671179,0.99999986834319842810,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250062428,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +191 ,0 ,2.11538464146184290726,5.50000056003459647513,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,0.00049999997916674637,0.99999985650888056909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +192 ,0 ,2.96153853309437309349,5.50000065766753287732,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,0.00049999997916670615,0.99999983875740361405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +193 ,0 ,3.80769245977470083275,5.50000078784517221208,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,0.00049999997916673737,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +194 ,0 ,4.65384643151648269565,5.50000095056690607719,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,0.00049999997916669086,0.99999978550297363710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +195 ,0 ,5.50000045833337836143,5.50000114583286769942,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,0.00049999997916669531,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +196 ,0 ,-5.5000004583333783614,-5.5000011458332416225,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,-0.0004999999791666126,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +197 ,0 ,-4.6538464315164800311,-5.5000009505676263898,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,-0.0004999999791666171,0.99999978550297363710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +198 ,0 ,-3.8076924597747008327,-5.5000007878453027743,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,-0.0004999999791666261,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +199 ,0 ,-2.9615385330943735375,-5.5000006576681395031,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,-0.0004999999791666953,0.99999983875740372507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/MatrixSource_distr_seeded.rayx.csv b/Intern/RayCore/tests/output/MatrixSource_distr_seeded.rayx.csv new file mode 100644 index 000000000..5feb3edcd --- /dev/null +++ b/Intern/RayCore/tests/output/MatrixSource_distr_seeded.rayx.csv @@ -0,0 +1,401 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.5325000416666707536,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,159.308596877220224996,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +0 ,1 ,-0.5325000416666707536,0.48000010416668248414,1000.00000000000000000,0.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,159.308596877220224996,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +1 ,0 ,-0.4505769483196802038,0.48000008641519859020,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,36.6869575429444623182,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +1 ,1 ,-0.4505769483196802038,0.48000008641519859020,1000.00000000000000000,0.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,36.6869575429444623182,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +2 ,0 ,-0.3686538599795182169,0.48000007162229607615,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,155.938199524753315472,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +2 ,1 ,-0.3686538599795182169,0.48000007162229607615,1000.00000000000000000,0.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,155.938199524753315472,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +3 ,0 ,-0.2867307757358520947,0.48000005978797466443,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,119.370032315927105059,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +3 ,1 ,-0.2867307757358520947,0.48000005978797466443,1000.00000000000000000,0.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,119.370032315927105059,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +4 ,0 ,-0.2048076946783493057,0.48000005091223385544,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,0.00049999997916666690,0.99999985650888079113,89.1665515231822070063,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +4 ,1 ,-0.2048076946783493057,0.48000005091223385544,1000.00000000000000000,0.00000000000000000000,-0.0001923076670839029,0.00049999997916666690,0.99999985650888079113,89.1665515231822070063,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +5 ,0 ,-0.1228846158966773044,0.48000004499507348265,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,0.00049999997916666690,0.99999986834319865014,19.9949841061595314783,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +5 ,1 ,-0.1228846158966773044,0.48000004499507348265,1000.00000000000000000,0.00000000000000000000,-0.0001153846007055078,0.00049999997916666690,0.99999986834319865014,19.9949841061595314783,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +6 ,0 ,-0.0409615384805036911,0.48000004203649332401,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,0.00049999997916666690,0.99999987426035774618,91.8497775895171173488,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +6 ,1 ,-0.0409615384805036911,0.48000004203649332401,1000.00000000000000000,0.00000000000000000000,-0.0000384615336443635,0.00049999997916666690,0.99999987426035774618,91.8497775895171173488,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +7 ,0 ,0.04096153848050369111,0.48000004203649332401,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,0.00049999997916666690,0.99999987426035774618,66.7417222789352990730,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +7 ,1 ,0.04096153848050369111,0.48000004203649332401,1000.00000000000000000,0.00000000000000000000,0.00003846153364436359,0.00049999997916666690,0.99999987426035774618,66.7417222789352990730,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +8 ,0 ,0.12288461589667730444,0.48000004499507348265,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,0.00049999997916666690,0.99999986834319865014,28.5733628618934574205,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +8 ,1 ,0.12288461589667730444,0.48000004499507348265,1000.00000000000000000,0.00000000000000000000,0.00011538460070550785,0.00049999997916666690,0.99999986834319865014,28.5733628618934574205,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +9 ,0 ,0.20480769467834933350,0.48000005091223385544,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,0.00049999997916666690,0.99999985650888079113,130.177694682538913184,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +9 ,1 ,0.20480769467834933350,0.48000005091223385544,1000.00000000000000000,0.00000000000000000000,0.00019230766708390299,0.00049999997916666690,0.99999985650888079113,130.177694682538913184,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +10 ,0 ,0.28673077573585209476,0.48000005978797466443,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,0.00049999997916666690,0.99999983875740383609,11.2823152940911963781,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +10 ,1 ,0.28673077573585209476,0.48000005978797466443,1000.00000000000000000,0.00000000000000000000,0.00026923073232438285,0.00049999997916666690,0.99999983875740383609,11.2823152940911963781,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +11 ,0 ,0.36865385997951821694,0.48000007162229607615,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,0.00049999997916666690,0.99999981508876811808,144.399754317570426564,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +11 ,1 ,0.36865385997951821694,0.48000007162229607615,1000.00000000000000000,0.00000000000000000000,0.00034615379597178157,0.00049999997916666690,0.99999981508876811808,144.399754317570426564,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +12 ,0 ,0.45057694831968025939,0.48000008641519859020,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,0.00049999997916666690,0.99999978550297374813,187.710542880862618630,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +12 ,1 ,0.45057694831968025939,0.48000008641519859020,1000.00000000000000000,0.00000000000000000000,0.00042307685757093292,0.00049999997916666690,0.99999978550297374813,187.710542880862618630,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +13 ,0 ,0.53250004166667075367,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,0.00049999997916666690,0.99999975000002094827,0.15575294386496604803,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +13 ,1 ,0.53250004166667075367,0.48000010416668248414,1000.00000000000000000,0.00000000000000000000,0.00049999991666667084,0.00049999997916666690,0.99999975000002094827,0.15575294386496604803,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +14 ,0 ,-0.5325000416666708646,0.40615392428122731871,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,0.00042307691045554557,0.99999978550297374813,198.442312888438408435,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +14 ,1 ,-0.5325000416666708646,0.40615392428122731871,1000.00000000000000000,0.00000000000000000000,-0.0004999999344181487,0.00042307691045554557,0.99999978550297374813,198.442312888438408435,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +15 ,0 ,-0.4505769483196802593,0.40615390926074129707,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,0.00042307691045554557,0.99999982100592776923,123.496301500940774076,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +15 ,1 ,-0.4505769483196802593,0.40615390926074129707,1000.00000000000000000,0.00000000000000000000,-0.0004230768725914143,0.00042307691045554557,0.99999982100592776923,123.496301500940774076,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +16 ,0 ,-0.3686538599795182169,0.40615389674367025074,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,0.00042307691045554557,0.99999985059172324941,122.330632508343711606,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +16 ,1 ,-0.3686538599795182169,0.40615389674367025074,1000.00000000000000000,0.00000000000000000000,-0.0003461538082612664,0.00042307691045554557,0.99999985059172324941,122.330632508343711606,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +17 ,0 ,-0.2867307757358520392,0.40615388673001384667,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,0.00042307691045554557,0.99999987426035974458,1.41326170447591259460,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +17 ,1 ,-0.2867307757358520392,0.40615388673001384667,1000.00000000000000000,0.00000000000000000000,-0.0002692307418828711,0.00042307691045554557,0.99999987426035974458,1.41326170447591259460,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +18 ,0 ,-0.2048076946783493057,0.40615387921977180729,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,0.00042307691045554557,0.99999989201183736575,4.61248569297894928098,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +18 ,1 ,-0.2048076946783493057,0.40615387921977180729,1000.00000000000000000,0.00000000000000000000,-0.0001923076739113946,0.00042307691045554557,0.99999989201183736575,4.61248569297894928098,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +19 ,0 ,-0.1228846158966773183,0.40615387421294396608,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,0.00042307691045554557,0.99999990384615566885,104.954932375102046648,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +19 ,1 ,-0.1228846158966773183,0.40615387421294396608,1000.00000000000000000,0.00000000000000000000,-0.0001153846048020029,0.00042307691045554557,0.99999990384615566885,104.954932375102046648,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +20 ,0 ,-0.0409615384805036841,0.40615387170952998996,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,0.00042307691045554557,0.99999990976331498693,79.9721955507928896622,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +20 ,1 ,-0.0409615384805036841,0.40615387170952998996,1000.00000000000000000,0.00000000000000000000,-0.0000384615350098619,0.00042307691045554557,0.99999990976331498693,79.9721955507928896622,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +21 ,0 ,0.04096153848050368417,0.40615387170952998996,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,0.00042307691045554557,0.99999990976331498693,9.33313365311667553214,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +21 ,1 ,0.04096153848050368417,0.40615387170952998996,1000.00000000000000000,0.00000000000000000000,0.00003846153500986195,0.00042307691045554557,0.99999990976331498693,9.33313365311667553214,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +22 ,0 ,0.12288461589667731832,0.40615387421294396608,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,0.00042307691045554557,0.99999990384615566885,194.751104524999647082,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +22 ,1 ,0.12288461589667731832,0.40615387421294396608,1000.00000000000000000,0.00000000000000000000,0.00011538460480200291,0.00042307691045554557,0.99999990384615566885,194.751104524999647082,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +23 ,0 ,0.20480769467834933350,0.40615387921977180729,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,0.00042307691045554557,0.99999989201183736575,46.5542680692286907628,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +23 ,1 ,0.20480769467834933350,0.40615387921977180729,1000.00000000000000000,0.00000000000000000000,0.00019230767391139474,0.00042307691045554557,0.99999989201183736575,46.5542680692286907628,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +24 ,0 ,0.28673077573585203925,0.40615388673001384667,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,0.00042307691045554557,0.99999987426035974458,18.1212870911977468324,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +24 ,1 ,0.28673077573585203925,0.40615388673001384667,1000.00000000000000000,0.00000000000000000000,0.00026923074188287118,0.00042307691045554557,0.99999987426035974458,18.1212870911977468324,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +25 ,0 ,0.36865385997951821694,0.40615389674367025074,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,0.00042307691045554557,0.99999985059172324941,123.677202948293924578,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +25 ,1 ,0.36865385997951821694,0.40615389674367025074,1000.00000000000000000,0.00000000000000000000,0.00034615380826126648,0.00042307691045554557,0.99999985059172324941,123.677202948293924578,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +26 ,0 ,0.45057694831968025939,0.40615390926074129707,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,0.00042307691045554557,0.99999982100592776923,76.4923980172007418332,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +26 ,1 ,0.45057694831968025939,0.40615390926074129707,1000.00000000000000000,0.00000000000000000000,0.00042307687259141442,0.00042307691045554557,0.99999982100592776923,76.4923980172007418332,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +27 ,0 ,0.53250004166667086469,0.40615392428122731871,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,0.00042307691045554557,0.99999978550297374813,196.646177209132872576,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +27 ,1 ,0.53250004166667086469,0.40615392428122731871,1000.00000000000000000,0.00000000000000000000,0.00049999993441814875,0.00042307691045554557,0.99999978550297374813,196.646177209132872576,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +28 ,0 ,-0.5325000416666708646,0.33230774940260132677,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,0.00034615383924101053,0.99999981508876811808,93.3525797197019073792,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +28 ,1 ,-0.5325000416666708646,0.33230774940260132677,1000.00000000000000000,0.00000000000000000000,-0.0004999999492110472,0.00034615383924101053,0.99999981508876811808,93.3525797197019073792,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +29 ,0 ,-0.4505769483196802038,0.33230773711311301088,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,0.00034615383924101053,0.99999985059172324941,171.988080668260380434,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +29 ,1 ,-0.4505769483196802038,0.33230773711311301088,1000.00000000000000000,0.00000000000000000000,-0.0004230768851084824,0.00034615383924101053,0.99999985059172324941,171.988080668260380434,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +30 ,0 ,-0.3686538599795182169,0.33230772687187326575,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,0.00034615383924101053,0.99999988017751961777,136.061507774531264658,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +30 ,1 ,-0.3686538599795182169,0.33230772687187326575,1000.00000000000000000,0.00000000000000000000,-0.0003461538185025041,0.00034615383924101053,0.99999988017751961777,136.061507774531264658,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +31 ,0 ,-0.2867307757358520392,0.33230771867888186932,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,0.00034615383924101053,0.99999990384615689009,90.0998506904812188622,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +31 ,1 ,-0.2867307757358520392,0.33230771867888186932,1000.00000000000000000,0.00000000000000000000,-0.0002692307498482782,0.00034615383924101053,0.99999990384615689009,90.0998506904812188622,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +32 ,0 ,-0.2048076946783492779,0.33230771253413848853,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,0.00034615383924101053,0.99999992159763495536,2.65299161026556795661,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +32 ,1 ,-0.2048076946783492779,0.33230771253413848853,1000.00000000000000000,0.00000000000000000000,-0.0001923076796009712,0.00034615383924101053,0.99999992159763495536,2.65299161026556795661,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +33 ,0 ,-0.1228846158966773044,0.33230770843764306787,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,0.00034615383924101053,0.99999993343195370254,188.440350859528479077,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +33 ,1 ,-0.1228846158966773044,0.33230770843764306787,1000.00000000000000000,0.00000000000000000000,-0.0001153846082157488,0.00034615383924101053,0.99999993343195370254,188.440350859528479077,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +34 ,0 ,-0.0409615384805036841,0.33230770638939532979,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,0.00034615383924101053,0.99999993934911302062,112.657642996091780673,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +34 ,1 ,-0.0409615384805036841,0.33230770638939532979,1000.00000000000000000,0.00000000000000000000,-0.0000384615361477772,0.00034615383924101053,0.99999993934911302062,112.657642996091780673,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +35 ,0 ,0.04096153848050368417,0.33230770638939532979,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,0.00034615383924101053,0.99999993934911302062,77.0833012361739093876,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +35 ,1 ,0.04096153848050368417,0.33230770638939532979,1000.00000000000000000,0.00000000000000000000,0.00003846153614777726,0.00034615383924101053,0.99999993934911302062,77.0833012361739093876,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +36 ,0 ,0.12288461589667730444,0.33230770843764306787,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,0.00034615383924101053,0.99999993343195370254,3.19325146339676591011,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +36 ,1 ,0.12288461589667730444,0.33230770843764306787,1000.00000000000000000,0.00000000000000000000,0.00011538460821574884,0.00034615383924101053,0.99999993343195370254,3.19325146339676591011,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +37 ,0 ,0.20480769467834933350,0.33230771253413848853,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,0.00034615383924101053,0.99999992159763495536,46.1787641621611015807,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +37 ,1 ,0.20480769467834933350,0.33230771253413848853,1000.00000000000000000,0.00000000000000000000,0.00019230767960097126,0.00034615383924101053,0.99999992159763495536,46.1787641621611015807,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +38 ,0 ,0.28673077573585203925,0.33230771867888186932,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,0.00034615383924101053,0.99999990384615689009,48.2050938178331307426,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +38 ,1 ,0.28673077573585203925,0.33230771867888186932,1000.00000000000000000,0.00000000000000000000,0.00026923074984827827,0.00034615383924101053,0.99999990384615689009,48.2050938178331307426,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +39 ,0 ,0.36865385997951821694,0.33230772687187326575,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,0.00034615383924101053,0.99999988017751961777,136.652704872342923181,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +39 ,1 ,0.36865385997951821694,0.33230772687187326575,1000.00000000000000000,0.00000000000000000000,0.00034615381850250414,0.00034615383924101053,0.99999988017751961777,136.652704872342923181,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +40 ,0 ,0.45057694831968025939,0.33230773711311301088,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,0.00034615383924101053,0.99999985059172324941,121.999331359285719145,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +40 ,1 ,0.45057694831968025939,0.33230773711311301088,1000.00000000000000000,0.00000000000000000000,0.00042307688510848247,0.00034615383924101053,0.99999985059172324941,121.999331359285719145,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +41 ,0 ,0.53250004166667086469,0.33230774940260132677,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,0.00034615383924101053,0.99999981508876811808,166.638982660751537423,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +41 ,1 ,0.53250004166667086469,0.33230774940260132677,1000.00000000000000000,0.00000000000000000000,0.00049999994921104721,0.00034615383924101053,0.99999981508876811808,166.638982660751537423,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +42 ,0 ,-0.5325000416666708646,0.25846157862047175468,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,0.00026923076597822786,0.99999983875740383609,34.6729294477666059037,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +42 ,1 ,-0.5325000416666708646,0.25846157862047175468,1000.00000000000000000,0.00000000000000000000,-0.0004999999610453660,0.00026923076597822786,0.99999983875740383609,34.6729294477666059037,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +43 ,0 ,-0.4505769483196802038,0.25846156906198097802,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,0.00026923076597822786,0.99999987426035974458,78.2121218923041823245,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +43 ,1 ,-0.4505769483196802038,0.25846156906198097802,1000.00000000000000000,0.00000000000000000000,-0.0004230768951221369,0.00026923076597822786,0.99999987426035974458,78.2121218923041823245,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +44 ,0 ,-0.3686538599795182169,0.25846156109657242305,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,0.00026923076597822786,0.99999990384615689009,36.4472173704875643807,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +44 ,1 ,-0.3686538599795182169,0.25846156109657242305,1000.00000000000000000,0.00000000000000000000,-0.0003461538266954942,0.00026923076597822786,0.99999990384615689009,36.4472173704875643807,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +45 ,0 ,-0.2867307757358520947,0.25846155472424586774,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,0.00026923076597822786,0.99999992751479460650,151.072281773917438840,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +45 ,1 ,-0.2867307757358520947,0.25846155472424586774,1000.00000000000000000,0.00000000000000000000,-0.0002692307562206040,0.00026923076597822786,0.99999992751479460650,151.072281773917438840,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +46 ,0 ,-0.2048076946783492779,0.25846154994500109003,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,0.00026923076597822786,0.99999994526627311586,85.0311754935028005775,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +46 ,1 ,-0.2048076946783492779,0.25846154994500109003,1000.00000000000000000,0.00000000000000000000,-0.0001923076841526324,0.00026923076597822786,0.99999994526627311586,85.0311754935028005775,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +47 ,0 ,-0.1228846158966773183,0.25846154675883803442,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,0.00026923076597822786,0.99999995710059208509,41.5883327465477208306,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +47 ,1 ,-0.1228846158966773183,0.25846154675883803442,1000.00000000000000000,0.00000000000000000000,-0.0001153846109467456,0.00026923076597822786,0.99999995710059208509,41.5883327465477208306,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +48 ,0 ,-0.0409615384805036841,0.25846154516575653437,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,0.00026923076597822786,0.99999996301775162521,113.540065454677701950,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +48 ,1 ,-0.0409615384805036841,0.25846154516575653437,1000.00000000000000000,0.00000000000000000000,-0.0000384615370581095,0.00026923076597822786,0.99999996301775162521,113.540065454677701950,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +49 ,0 ,0.04096153848050368417,0.25846154516575653437,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,0.00026923076597822786,0.99999996301775162521,6.26265835162779804790,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +49 ,1 ,0.04096153848050368417,0.25846154516575653437,1000.00000000000000000,0.00000000000000000000,0.00003846153705810951,0.00026923076597822786,0.99999996301775162521,6.26265835162779804790,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +50 ,0 ,0.12288461589667731832,0.25846154675883803442,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,0.00026923076597822786,0.99999995710059208509,168.456954594807911007,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +50 ,1 ,0.12288461589667731832,0.25846154675883803442,1000.00000000000000000,0.00000000000000000000,0.00011538461094674560,0.00026923076597822786,0.99999995710059208509,168.456954594807911007,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +51 ,0 ,0.20480769467834933350,0.25846154994500109003,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,0.00026923076597822786,0.99999994526627311586,89.9508258071613653328,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +51 ,1 ,0.20480769467834933350,0.25846154994500109003,1000.00000000000000000,0.00000000000000000000,0.00019230768415263250,0.00026923076597822786,0.99999994526627311586,89.9508258071613653328,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +52 ,0 ,0.28673077573585209476,0.25846155472424586774,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,0.00026923076597822786,0.99999992751479460650,79.0300463044620187247,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +52 ,1 ,0.28673077573585209476,0.25846155472424586774,1000.00000000000000000,0.00000000000000000000,0.00026923075622060400,0.00026923076597822786,0.99999992751479460650,79.0300463044620187247,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +53 ,0 ,0.36865385997951821694,0.25846156109657242305,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,0.00026923076597822786,0.99999990384615689009,185.331772450667756402,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +53 ,1 ,0.36865385997951821694,0.25846156109657242305,1000.00000000000000000,0.00000000000000000000,0.00034615382669549426,0.00026923076597822786,0.99999990384615689009,185.331772450667756402,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +54 ,0 ,0.45057694831968025939,0.25846156906198097802,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,0.00026923076597822786,0.99999987426035974458,145.454399228434624546,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +54 ,1 ,0.45057694831968025939,0.25846156906198097802,1000.00000000000000000,0.00000000000000000000,0.00042307689512213698,0.00026923076597822786,0.99999987426035974458,145.454399228434624546,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +55 ,0 ,0.53250004166667086469,0.25846157862047175468,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,0.00026923076597822786,0.99999983875740383609,65.3081542964345231894,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +55 ,1 ,0.53250004166667086469,0.25846157862047175468,1000.00000000000000000,0.00000000000000000000,0.00049999996104536600,0.00026923076597822786,0.99999983875740383609,65.3081542964345231894,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +56 ,0 ,-0.5325000416666708646,0.18461541102450593210,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,0.00019230769112236383,0.99999985650888079113,114.088795220965707244,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +56 ,1 ,-0.5325000416666708646,0.18461541102450593210,1000.00000000000000000,0.00000000000000000000,-0.0004999999699211052,0.00019230769112236383,0.99999985650888079113,114.088795220965707244,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +57 ,0 ,-0.4505769483196802038,0.18461540419701261139,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,0.00019230769112236383,0.99999989201183736575,104.166853219309558653,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +57 ,1 ,-0.4505769483196802038,0.18461540419701261139,1000.00000000000000000,0.00000000000000000000,-0.0004230769026323778,0.00019230769112236383,0.99999989201183736575,104.166853219309558653,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +58 ,0 ,-0.3686538599795182169,0.18461539850743510782,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,0.00019230769112236383,0.99999992159763495536,192.234405780265660723,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +58 ,1 ,-0.3686538599795182169,0.18461539850743510782,1000.00000000000000000,0.00000000000000000000,-0.0003461538328402369,0.00019230769112236383,0.99999992159763495536,192.234405780265660723,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +59 ,0 ,-0.2867307757358520947,0.18461539395577333810,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,0.00019230769112236383,0.99999994526627311586,168.906770127105232859,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +59 ,1 ,-0.2867307757358520947,0.18461539395577333810,1000.00000000000000000,0.00000000000000000000,-0.0002692307609998483,0.00019230769112236383,0.99999994526627311586,168.906770127105232859,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +60 ,0 ,-0.2048076946783493057,0.18461539054202713572,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,0.00019230769112236383,0.99999996301775195828,149.464022216727954628,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +60 ,1 ,-0.2048076946783493057,0.18461539054202713572,1000.00000000000000000,0.00000000000000000000,-0.0001923076875663784,0.00019230769112236383,0.99999996301775195828,149.464022216727954628,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +61 ,0 ,-0.1228846158966773044,0.18461538826619638964,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,0.00019230769112236383,0.99999997485207114955,107.938425919958007170,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +61 ,1 ,-0.1228846158966773044,0.18461538826619638964,1000.00000000000000000,0.00000000000000000000,-0.0001153846129949931,0.00019230769112236383,0.99999997485207114955,107.938425919958007170,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +62 ,0 ,-0.0409615384805036841,0.18461538712828104435,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,0.00019230769112236383,0.99999998076923080070,117.350233699509459484,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +62 ,1 ,-0.0409615384805036841,0.18461538712828104435,1000.00000000000000000,0.00000000000000000000,-0.0000384615377408587,0.00019230769112236383,0.99999998076923080070,117.350233699509459484,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +63 ,0 ,0.04096153848050368417,0.18461538712828104435,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,0.00019230769112236383,0.99999998076923080070,193.051062196737859721,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +63 ,1 ,0.04096153848050368417,0.18461538712828104435,1000.00000000000000000,0.00000000000000000000,0.00003846153774085871,0.00019230769112236383,0.99999998076923080070,193.051062196737859721,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +64 ,0 ,0.12288461589667730444,0.18461538826619638964,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,0.00019230769112236383,0.99999997485207114955,121.406850014209481969,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +64 ,1 ,0.12288461589667730444,0.18461538826619638964,1000.00000000000000000,0.00000000000000000000,0.00011538461299499319,0.00019230769112236383,0.99999997485207114955,121.406850014209481969,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +65 ,0 ,0.20480769467834936126,0.18461539054202713572,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,0.00019230769112236383,0.99999996301775195828,55.1998367661609847800,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +65 ,1 ,0.20480769467834936126,0.18461539054202713572,1000.00000000000000000,0.00000000000000000000,0.00019230768756637849,0.00019230769112236383,0.99999996301775195828,55.1998367661609847800,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +66 ,0 ,0.28673077573585209476,0.18461539395577333810,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,0.00019230769112236383,0.99999994526627311586,59.2547012630977434355,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +66 ,1 ,0.28673077573585209476,0.18461539395577333810,1000.00000000000000000,0.00000000000000000000,0.00026923076099984833,0.00019230769112236383,0.99999994526627311586,59.2547012630977434355,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +67 ,0 ,0.36865385997951821694,0.18461539850743510782,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,0.00019230769112236383,0.99999992159763495536,33.0533882680007735643,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +67 ,1 ,0.36865385997951821694,0.18461539850743510782,1000.00000000000000000,0.00000000000000000000,0.00034615383284023691,0.00019230769112236383,0.99999992159763495536,33.0533882680007735643,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +68 ,0 ,0.45057694831968025939,0.18461540419701261139,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,0.00019230769112236383,0.99999989201183736575,3.12728099597787467800,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +68 ,1 ,0.45057694831968025939,0.18461540419701261139,1000.00000000000000000,0.00000000000000000000,0.00042307690263237795,0.00019230769112236383,0.99999989201183736575,3.12728099597787467800,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +69 ,0 ,0.53250004166667086469,0.18461541102450593210,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,0.00019230769112236383,0.99999985650888079113,84.6802953827847488810,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +69 ,1 ,0.53250004166667086469,0.18461541102450593210,1000.00000000000000000,0.00000000000000000000,0.00049999996992110523,0.00019230769112236383,0.99999985650888079113,84.6802953827847488810,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +70 ,0 ,-0.5325000416666708646,0.11076924570437117478,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,0.00011538461512858444,0.99999986834319865014,78.9763033573926236385,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +70 ,1 ,-0.5325000416666708646,0.11076924570437117478,1000.00000000000000000,0.00000000000000000000,-0.0004999999758382646,0.00011538461512858444,0.99999986834319865014,78.9763033573926236385,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +71 ,0 ,-0.4505769483196802038,0.11076924160787522677,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,0.00011538461512858444,0.99999990384615566885,58.6976352750085439424,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +71 ,1 ,-0.4505769483196802038,0.11076924160787522677,1000.00000000000000000,0.00000000000000000000,-0.0004230769076392051,0.00011538461512858444,0.99999990384615566885,58.6976352750085439424,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +72 ,0 ,-0.3686538599795182169,0.11076923819412874683,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,0.00011538461512858444,0.99999993343195370254,2.81596472552417909085,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +72 ,1 ,-0.3686538599795182169,0.11076923819412874683,1000.00000000000000000,0.00000000000000000000,-0.0003461538369367320,0.00011538461512858444,0.99999993343195370254,2.81596472552417909085,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +73 ,0 ,-0.2867307757358520947,0.11076923546313170720,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,0.00011538461512858444,0.99999995710059208509,39.7684806119111584621,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +73 ,1 ,-0.2867307757358520947,0.11076923546313170720,1000.00000000000000000,0.00000000000000000000,-0.0002692307641860112,0.00011538461512858444,0.99999995710059208509,39.7684806119111584621,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +74 ,0 ,-0.2048076946783493057,0.11076923341488398300,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,0.00011538461512858444,0.99999997485207114955,142.268389822512006048,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +74 ,1 ,-0.2048076946783493057,0.11076923341488398300,1000.00000000000000000,0.00000000000000000000,-0.0001923076898422090,0.00011538461512858444,0.99999997485207114955,142.268389822512006048,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +75 ,0 ,-0.1228846158966773183,0.11076923204938556033,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,0.00011538461512858444,0.99999998668639045185,158.035107086886426941,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +75 ,1 ,-0.1228846158966773183,0.11076923204938556033,1000.00000000000000000,0.00000000000000000000,-0.0001153846143604915,0.00011538461512858444,0.99999998668639045185,158.035107086886426941,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +76 ,0 ,-0.0409615384805036841,0.11076923136663634206,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,0.00011538461512858444,0.99999999260355021402,121.191996084803705002,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +76 ,1 ,-0.0409615384805036841,0.11076923136663634206,1000.00000000000000000,0.00000000000000000000,-0.0000384615381960248,0.00011538461512858444,0.99999999260355021402,121.191996084803705002,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +77 ,0 ,0.04096153848050368417,0.11076923136663634206,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,0.00011538461512858444,0.99999999260355021402,185.260175630743674446,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +77 ,1 ,0.04096153848050368417,0.11076923136663634206,1000.00000000000000000,0.00000000000000000000,0.00003846153819602484,0.00011538461512858444,0.99999999260355021402,185.260175630743674446,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +78 ,0 ,0.12288461589667731832,0.11076923204938556033,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,0.00011538461512858444,0.99999998668639045185,130.215406122201898142,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +78 ,1 ,0.12288461589667731832,0.11076923204938556033,1000.00000000000000000,0.00000000000000000000,0.00011538461436049158,0.00011538461512858444,0.99999998668639045185,130.215406122201898142,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +79 ,0 ,0.20480769467834936126,0.11076923341488398300,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,0.00011538461512858444,0.99999997485207114955,182.991935122523443624,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +79 ,1 ,0.20480769467834936126,0.11076923341488398300,1000.00000000000000000,0.00000000000000000000,0.00019230768984220914,0.00011538461512858444,0.99999997485207114955,182.991935122523443624,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +80 ,0 ,0.28673077573585209476,0.11076923546313170720,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,0.00011538461512858444,0.99999995710059208509,170.007715041285308643,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +80 ,1 ,0.28673077573585209476,0.11076923546313170720,1000.00000000000000000,0.00000000000000000000,0.00026923076418601120,0.00011538461512858444,0.99999995710059208509,170.007715041285308643,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +81 ,0 ,0.36865385997951821694,0.11076923819412874683,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,0.00011538461512858444,0.99999993343195370254,89.8901348677208034132,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +81 ,1 ,0.36865385997951821694,0.11076923819412874683,1000.00000000000000000,0.00000000000000000000,0.00034615383693673202,0.00011538461512858444,0.99999993343195370254,89.8901348677208034132,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +82 ,0 ,0.45057694831968025939,0.11076924160787522677,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,0.00011538461512858444,0.99999990384615566885,19.0820232078158333877,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +82 ,1 ,0.45057694831968025939,0.11076924160787522677,1000.00000000000000000,0.00000000000000000000,0.00042307690763920520,0.00011538461512858444,0.99999990384615566885,19.0820232078158333877,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +83 ,0 ,0.53250004166667086469,0.11076924570437117478,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,0.00011538461512858444,0.99999986834319865014,74.1636510179759085303,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +83 ,1 ,0.53250004166667086469,0.11076924570437117478,1000.00000000000000000,0.00000000000000000000,0.00049999997583826468,0.00011538461512858444,0.99999986834319865014,74.1636510179759085303,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +84 ,0 ,-0.5325000416666708646,0.03692308174973495116,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,0.00003846153845205580,0.99999987426035774618,133.768251429723648016,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +84 ,1 ,-0.5325000416666708646,0.03692308174973495116,1000.00000000000000000,0.00000000000000000000,-0.0004999999787968444,0.00003846153845205580,0.99999987426035774618,133.768251429723648016,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +85 ,0 ,-0.4505769483196802038,0.03692308038423630645,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,0.00003846153845205580,0.99999990976331498693,133.184470453575357851,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +85 ,1 ,-0.4505769483196802038,0.03692308038423630645,1000.00000000000000000,0.00000000000000000000,-0.0004230769101426188,0.00003846153845205580,0.99999990976331498693,133.184470453575357851,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +86 ,0 ,-0.3686538599795182169,0.03692307924632082238,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,0.00003846153845205580,0.99999993934911302062,118.259557131272629248,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +86 ,1 ,-0.3686538599795182169,0.03692307924632082238,1000.00000000000000000,0.00000000000000000000,-0.0003461538389849795,0.00003846153845205580,0.99999993934911302062,118.259557131272629248,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +87 ,0 ,-0.2867307757358520947,0.03692307833598847816,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,0.00003846153845205580,0.99999996301775162521,54.9443582666442651429,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +87 ,1 ,-0.2867307757358520947,0.03692307833598847816,1000.00000000000000000,0.00000000000000000000,-0.0002692307657790926,0.00003846153845205580,0.99999996301775162521,54.9443582666442651429,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +88 ,0 ,-0.2048076946783492779,0.03692307765323924600,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,0.00003846153845205580,0.99999998076923080070,112.248684585152361137,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +88 ,1 ,-0.2048076946783492779,0.03692307765323924600,1000.00000000000000000,0.00000000000000000000,-0.0001923076909801243,0.00003846153845205580,0.99999998076923080070,112.248684585152361137,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +89 ,0 ,-0.1228846158966773044,0.03692307719807309818,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,0.00003846153845205580,0.99999999260355021402,76.5853748835123582239,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +89 ,1 ,-0.1228846158966773044,0.03692307719807309818,1000.00000000000000000,0.00000000000000000000,-0.0001153846150432407,0.00003846153845205580,0.99999999260355021402,76.5853748835123582239,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +90 ,0 ,-0.0409615384805036911,0.03692307697049003467,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,0.00003846153845205580,0.99999999852070997619,194.342418712177874340,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +90 ,1 ,-0.0409615384805036911,0.03692307697049003467,1000.00000000000000000,0.00000000000000000000,-0.0000384615384236079,0.00003846153845205580,0.99999999852070997619,194.342418712177874340,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +91 ,0 ,0.04096153848050369111,0.03692307697049003467,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,0.00003846153845205580,0.99999999852070997619,169.782763852221592060,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +91 ,1 ,0.04096153848050369111,0.03692307697049003467,1000.00000000000000000,0.00000000000000000000,0.00003846153842360791,0.00003846153845205580,0.99999999852070997619,169.782763852221592060,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +92 ,0 ,0.12288461589667730444,0.03692307719807309818,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,0.00003846153845205580,0.99999999260355021402,144.345903616479120046,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +92 ,1 ,0.12288461589667730444,0.03692307719807309818,1000.00000000000000000,0.00000000000000000000,0.00011538461504324078,0.00003846153845205580,0.99999999260355021402,144.345903616479120046,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +93 ,0 ,0.20480769467834933350,0.03692307765323924600,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,0.00003846153845205580,0.99999998076923080070,47.1969838364042786338,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +93 ,1 ,0.20480769467834933350,0.03692307765323924600,1000.00000000000000000,0.00000000000000000000,0.00019230769098012445,0.00003846153845205580,0.99999998076923080070,47.1969838364042786338,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +94 ,0 ,0.28673077573585209476,0.03692307833598847816,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,0.00003846153845205580,0.99999996301775162521,51.2136644337358077905,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +94 ,1 ,0.28673077573585209476,0.03692307833598847816,1000.00000000000000000,0.00000000000000000000,0.00026923076577909266,0.00003846153845205580,0.99999996301775162521,51.2136644337358077905,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +95 ,0 ,0.36865385997951821694,0.03692307924632082238,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,0.00003846153845205580,0.99999993934911302062,8.08671834135584433056,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +95 ,1 ,0.36865385997951821694,0.03692307924632082238,1000.00000000000000000,0.00000000000000000000,0.00034615383898497955,0.00003846153845205580,0.99999993934911302062,8.08671834135584433056,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +96 ,0 ,0.45057694831968025939,0.03692308038423630645,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,0.00003846153845205580,0.99999990976331498693,142.132577985090335914,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +96 ,1 ,0.45057694831968025939,0.03692308038423630645,1000.00000000000000000,0.00000000000000000000,0.00042307691014261891,0.00003846153845205580,0.99999990976331498693,142.132577985090335914,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +97 ,0 ,0.53250004166667086469,0.03692308174973495116,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,0.00003846153845205580,0.99999987426035774618,22.1781652938058044810,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +97 ,1 ,0.53250004166667086469,0.03692308174973495116,1000.00000000000000000,0.00000000000000000000,0.00049999997879684445,0.00003846153845205580,0.99999987426035774618,22.1781652938058044810,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +98 ,0 ,-0.5325000416666708646,-0.0369230817497349581,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,-0.0000384615384520558,0.99999987426035774618,87.8673014901269482379,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +98 ,1 ,-0.5325000416666708646,-0.0369230817497349581,1000.00000000000000000,0.00000000000000000000,-0.0004999999787968444,-0.0000384615384520558,0.99999987426035774618,87.8673014901269482379,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +99 ,0 ,-0.4505769483196802038,-0.0369230803842363064,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,-0.0000384615384520558,0.99999990976331498693,40.3438412678297240177,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +99 ,1 ,-0.4505769483196802038,-0.0369230803842363064,1000.00000000000000000,0.00000000000000000000,-0.0004230769101426188,-0.0000384615384520558,0.99999990976331498693,40.3438412678297240177,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +100 ,0 ,-0.3686538599795182169,-0.0369230792463208223,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,-0.0000384615384520558,0.99999993934911302062,179.152719671640710430,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +100 ,1 ,-0.3686538599795182169,-0.0369230792463208223,1000.00000000000000000,0.00000000000000000000,-0.0003461538389849795,-0.0000384615384520558,0.99999993934911302062,179.152719671640710430,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +101 ,0 ,-0.2867307757358520947,-0.0369230783359884850,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,-0.0000384615384520558,0.99999996301775162521,95.0740449351896614871,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +101 ,1 ,-0.2867307757358520947,-0.0369230783359884850,1000.00000000000000000,0.00000000000000000000,-0.0002692307657790926,-0.0000384615384520558,0.99999996301775162521,95.0740449351896614871,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +102 ,0 ,-0.2048076946783492779,-0.0369230776532392460,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,-0.0000384615384520558,0.99999998076923080070,112.655114967528518832,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +102 ,1 ,-0.2048076946783492779,-0.0369230776532392460,1000.00000000000000000,0.00000000000000000000,-0.0001923076909801243,-0.0000384615384520558,0.99999998076923080070,112.655114967528518832,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +103 ,0 ,-0.1228846158966773044,-0.0369230771980731051,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,-0.0000384615384520558,0.99999999260355021402,139.103216104931959762,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +103 ,1 ,-0.1228846158966773044,-0.0369230771980731051,1000.00000000000000000,0.00000000000000000000,-0.0001153846150432407,-0.0000384615384520558,0.99999999260355021402,139.103216104931959762,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +104 ,0 ,-0.0409615384805036911,-0.0369230769704900346,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,-0.0000384615384520558,0.99999999852070997619,27.8662907024534156619,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +104 ,1 ,-0.0409615384805036911,-0.0369230769704900346,1000.00000000000000000,0.00000000000000000000,-0.0000384615384236079,-0.0000384615384520558,0.99999999852070997619,27.8662907024534156619,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +105 ,0 ,0.04096153848050369111,-0.0369230769704900346,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,-0.0000384615384520558,0.99999999852070997619,120.883475551587409313,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +105 ,1 ,0.04096153848050369111,-0.0369230769704900346,1000.00000000000000000,0.00000000000000000000,0.00003846153842360791,-0.0000384615384520558,0.99999999852070997619,120.883475551587409313,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +106 ,0 ,0.12288461589667730444,-0.0369230771980731051,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,-0.0000384615384520558,0.99999999260355021402,107.968217811539830108,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +106 ,1 ,0.12288461589667730444,-0.0369230771980731051,1000.00000000000000000,0.00000000000000000000,0.00011538461504324078,-0.0000384615384520558,0.99999999260355021402,107.968217811539830108,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +107 ,0 ,0.20480769467834933350,-0.0369230776532392460,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,-0.0000384615384520558,0.99999998076923080070,40.6122459193254456977,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +107 ,1 ,0.20480769467834933350,-0.0369230776532392460,1000.00000000000000000,0.00000000000000000000,0.00019230769098012445,-0.0000384615384520558,0.99999998076923080070,40.6122459193254456977,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +108 ,0 ,0.28673077573585209476,-0.0369230783359884850,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,-0.0000384615384520558,0.99999996301775162521,188.570714599585784299,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +108 ,1 ,0.28673077573585209476,-0.0369230783359884850,1000.00000000000000000,0.00000000000000000000,0.00026923076577909266,-0.0000384615384520558,0.99999996301775162521,188.570714599585784299,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +109 ,0 ,0.36865385997951821694,-0.0369230792463208223,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,-0.0000384615384520558,0.99999993934911302062,119.773093173227522356,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +109 ,1 ,0.36865385997951821694,-0.0369230792463208223,1000.00000000000000000,0.00000000000000000000,0.00034615383898497955,-0.0000384615384520558,0.99999993934911302062,119.773093173227522356,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +110 ,0 ,0.45057694831968025939,-0.0369230803842363064,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,-0.0000384615384520558,0.99999990976331498693,138.956987238246256310,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +110 ,1 ,0.45057694831968025939,-0.0369230803842363064,1000.00000000000000000,0.00000000000000000000,0.00042307691014261891,-0.0000384615384520558,0.99999990976331498693,138.956987238246256310,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +111 ,0 ,0.53250004166667086469,-0.0369230817497349581,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,-0.0000384615384520558,0.99999987426035774618,176.093567715979560261,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +111 ,1 ,0.53250004166667086469,-0.0369230817497349581,1000.00000000000000000,0.00000000000000000000,0.00049999997879684445,-0.0000384615384520558,0.99999987426035774618,176.093567715979560261,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +112 ,0 ,-0.5325000416666708646,-0.1107692457043711747,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,-0.0001153846151285844,0.99999986834319865014,124.870808870734364859,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +112 ,1 ,-0.5325000416666708646,-0.1107692457043711747,1000.00000000000000000,0.00000000000000000000,-0.0004999999758382646,-0.0001153846151285844,0.99999986834319865014,124.870808870734364859,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +113 ,0 ,-0.4505769483196802038,-0.1107692416078752267,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,-0.0001153846151285844,0.99999990384615566885,59.1267375878819194667,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +113 ,1 ,-0.4505769483196802038,-0.1107692416078752267,1000.00000000000000000,0.00000000000000000000,-0.0004230769076392051,-0.0001153846151285844,0.99999990384615566885,59.1267375878819194667,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +114 ,0 ,-0.3686538599795182169,-0.1107692381941287468,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,-0.0001153846151285844,0.99999993343195370254,21.0988516037116866641,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +114 ,1 ,-0.3686538599795182169,-0.1107692381941287468,1000.00000000000000000,0.00000000000000000000,-0.0003461538369367320,-0.0001153846151285844,0.99999993343195370254,21.0988516037116866641,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +115 ,0 ,-0.2867307757358520947,-0.1107692354631317072,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,-0.0001153846151285844,0.99999995710059208509,91.3069141775618646761,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +115 ,1 ,-0.2867307757358520947,-0.1107692354631317072,1000.00000000000000000,0.00000000000000000000,-0.0002692307641860112,-0.0001153846151285844,0.99999995710059208509,91.3069141775618646761,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +116 ,0 ,-0.2048076946783493057,-0.1107692334148839830,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,-0.0001153846151285844,0.99999997485207114955,43.6880876877550221593,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +116 ,1 ,-0.2048076946783493057,-0.1107692334148839830,1000.00000000000000000,0.00000000000000000000,-0.0001923076898422090,-0.0001153846151285844,0.99999997485207114955,43.6880876877550221593,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +117 ,0 ,-0.1228846158966773183,-0.1107692320493855603,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,-0.0001153846151285844,0.99999998668639045185,83.3019891482084062772,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +117 ,1 ,-0.1228846158966773183,-0.1107692320493855603,1000.00000000000000000,0.00000000000000000000,-0.0001153846143604915,-0.0001153846151285844,0.99999998668639045185,83.3019891482084062772,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +118 ,0 ,-0.0409615384805036841,-0.1107692313666363420,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,-0.0001153846151285844,0.99999999260355021402,176.656052371639759712,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +118 ,1 ,-0.0409615384805036841,-0.1107692313666363420,1000.00000000000000000,0.00000000000000000000,-0.0000384615381960248,-0.0001153846151285844,0.99999999260355021402,176.656052371639759712,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +119 ,0 ,0.04096153848050368417,-0.1107692313666363420,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,-0.0001153846151285844,0.99999999260355021402,64.8690044565286996203,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +119 ,1 ,0.04096153848050368417,-0.1107692313666363420,1000.00000000000000000,0.00000000000000000000,0.00003846153819602484,-0.0001153846151285844,0.99999999260355021402,64.8690044565286996203,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +120 ,0 ,0.12288461589667731832,-0.1107692320493855603,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,-0.0001153846151285844,0.99999998668639045185,24.4175906349945783802,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +120 ,1 ,0.12288461589667731832,-0.1107692320493855603,1000.00000000000000000,0.00000000000000000000,0.00011538461436049158,-0.0001153846151285844,0.99999998668639045185,24.4175906349945783802,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +121 ,0 ,0.20480769467834936126,-0.1107692334148839830,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,-0.0001153846151285844,0.99999997485207114955,71.2595682757113877414,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +121 ,1 ,0.20480769467834936126,-0.1107692334148839830,1000.00000000000000000,0.00000000000000000000,0.00019230768984220914,-0.0001153846151285844,0.99999997485207114955,71.2595682757113877414,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +122 ,0 ,0.28673077573585209476,-0.1107692354631317072,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,-0.0001153846151285844,0.99999995710059208509,181.365689537805906184,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +122 ,1 ,0.28673077573585209476,-0.1107692354631317072,1000.00000000000000000,0.00000000000000000000,0.00026923076418601120,-0.0001153846151285844,0.99999995710059208509,181.365689537805906184,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +123 ,0 ,0.36865385997951821694,-0.1107692381941287468,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,-0.0001153846151285844,0.99999993343195370254,54.4264495499493605734,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +123 ,1 ,0.36865385997951821694,-0.1107692381941287468,1000.00000000000000000,0.00000000000000000000,0.00034615383693673202,-0.0001153846151285844,0.99999993343195370254,54.4264495499493605734,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +124 ,0 ,0.45057694831968025939,-0.1107692416078752267,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,-0.0001153846151285844,0.99999990384615566885,129.538024712712058317,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +124 ,1 ,0.45057694831968025939,-0.1107692416078752267,1000.00000000000000000,0.00000000000000000000,0.00042307690763920520,-0.0001153846151285844,0.99999990384615566885,129.538024712712058317,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +125 ,0 ,0.53250004166667086469,-0.1107692457043711747,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,-0.0001153846151285844,0.99999986834319865014,0.10407529773751164614,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +125 ,1 ,0.53250004166667086469,-0.1107692457043711747,1000.00000000000000000,0.00000000000000000000,0.00049999997583826468,-0.0001153846151285844,0.99999986834319865014,0.10407529773751164614,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +126 ,0 ,-0.5325000416666708646,-0.1846154110245059876,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,-0.0001923076911223638,0.99999985650888079113,70.5137705594566170930,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +126 ,1 ,-0.5325000416666708646,-0.1846154110245059876,1000.00000000000000000,0.00000000000000000000,-0.0004999999699211052,-0.0001923076911223638,0.99999985650888079113,70.5137705594566170930,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +127 ,0 ,-0.4505769483196802038,-0.1846154041970126669,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,-0.0001923076911223638,0.99999989201183736575,60.9562517285710754322,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +127 ,1 ,-0.4505769483196802038,-0.1846154041970126669,1000.00000000000000000,0.00000000000000000000,-0.0004230769026323778,-0.0001923076911223638,0.99999989201183736575,60.9562517285710754322,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +128 ,0 ,-0.3686538599795182169,-0.1846153985074351633,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,-0.0001923076911223638,0.99999992159763495536,32.9311701080135890151,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +128 ,1 ,-0.3686538599795182169,-0.1846153985074351633,1000.00000000000000000,0.00000000000000000000,-0.0003461538328402369,-0.0001923076911223638,0.99999992159763495536,32.9311701080135890151,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +129 ,0 ,-0.2867307757358520947,-0.1846153939557733936,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,-0.0001923076911223638,0.99999994526627311586,106.817884488687369071,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +129 ,1 ,-0.2867307757358520947,-0.1846153939557733936,1000.00000000000000000,0.00000000000000000000,-0.0002692307609998483,-0.0001923076911223638,0.99999994526627311586,106.817884488687369071,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +130 ,0 ,-0.2048076946783493057,-0.1846153905420271912,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,-0.0001923076911223638,0.99999996301775195828,96.9659953138246208936,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +130 ,1 ,-0.2048076946783493057,-0.1846153905420271912,1000.00000000000000000,0.00000000000000000000,-0.0001923076875663784,-0.0001923076911223638,0.99999996301775195828,96.9659953138246208936,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +131 ,0 ,-0.1228846158966773044,-0.1846153882661964451,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,-0.0001923076911223638,0.99999997485207114955,138.487206431684853669,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +131 ,1 ,-0.1228846158966773044,-0.1846153882661964451,1000.00000000000000000,0.00000000000000000000,-0.0001153846129949931,-0.0001923076911223638,0.99999997485207114955,138.487206431684853669,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +132 ,0 ,-0.0409615384805036841,-0.1846153871282810998,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,-0.0001923076911223638,0.99999998076923080070,53.8824666882591429839,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +132 ,1 ,-0.0409615384805036841,-0.1846153871282810998,1000.00000000000000000,0.00000000000000000000,-0.0000384615377408587,-0.0001923076911223638,0.99999998076923080070,53.8824666882591429839,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +133 ,0 ,0.04096153848050368417,-0.1846153871282810998,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,-0.0001923076911223638,0.99999998076923080070,48.8251041268988288379,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +133 ,1 ,0.04096153848050368417,-0.1846153871282810998,1000.00000000000000000,0.00000000000000000000,0.00003846153774085871,-0.0001923076911223638,0.99999998076923080070,48.8251041268988288379,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +134 ,0 ,0.12288461589667730444,-0.1846153882661964451,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,-0.0001923076911223638,0.99999997485207114955,33.6582091715322349045,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +134 ,1 ,0.12288461589667730444,-0.1846153882661964451,1000.00000000000000000,0.00000000000000000000,0.00011538461299499319,-0.0001923076911223638,0.99999997485207114955,33.6582091715322349045,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +135 ,0 ,0.20480769467834936126,-0.1846153905420271912,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,-0.0001923076911223638,0.99999996301775195828,43.7528445952927782514,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +135 ,1 ,0.20480769467834936126,-0.1846153905420271912,1000.00000000000000000,0.00000000000000000000,0.00019230768756637849,-0.0001923076911223638,0.99999996301775195828,43.7528445952927782514,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +136 ,0 ,0.28673077573585209476,-0.1846153939557733936,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,-0.0001923076911223638,0.99999994526627311586,111.620400452897982290,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +136 ,1 ,0.28673077573585209476,-0.1846153939557733936,1000.00000000000000000,0.00000000000000000000,0.00026923076099984833,-0.0001923076911223638,0.99999994526627311586,111.620400452897982290,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +137 ,0 ,0.36865385997951821694,-0.1846153985074351633,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,-0.0001923076911223638,0.99999992159763495536,80.7672345733193850492,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +137 ,1 ,0.36865385997951821694,-0.1846153985074351633,1000.00000000000000000,0.00000000000000000000,0.00034615383284023691,-0.0001923076911223638,0.99999992159763495536,80.7672345733193850492,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +138 ,0 ,0.45057694831968025939,-0.1846154041970126669,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,-0.0001923076911223638,0.99999989201183736575,12.9784493271676932835,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +138 ,1 ,0.45057694831968025939,-0.1846154041970126669,1000.00000000000000000,0.00000000000000000000,0.00042307690263237795,-0.0001923076911223638,0.99999989201183736575,12.9784493271676932835,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +139 ,0 ,0.53250004166667086469,-0.1846154110245059876,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,-0.0001923076911223638,0.99999985650888079113,50.7830825286877924895,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +139 ,1 ,0.53250004166667086469,-0.1846154110245059876,1000.00000000000000000,0.00000000000000000000,0.00049999996992110523,-0.0001923076911223638,0.99999985650888079113,50.7830825286877924895,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +140 ,0 ,-0.5325000416666708646,-0.2584615786204717546,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,-0.0002692307659782278,0.99999983875740383609,49.3752127162588791975,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +140 ,1 ,-0.5325000416666708646,-0.2584615786204717546,1000.00000000000000000,0.00000000000000000000,-0.0004999999610453660,-0.0002692307659782278,0.99999983875740383609,49.3752127162588791975,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +141 ,0 ,-0.4505769483196802038,-0.2584615690619809780,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,-0.0002692307659782278,0.99999987426035974458,139.260854138820633352,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +141 ,1 ,-0.4505769483196802038,-0.2584615690619809780,1000.00000000000000000,0.00000000000000000000,-0.0004230768951221369,-0.0002692307659782278,0.99999987426035974458,139.260854138820633352,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +142 ,0 ,-0.3686538599795182169,-0.2584615610965724230,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,-0.0002692307659782278,0.99999990384615689009,142.454117662844737424,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +142 ,1 ,-0.3686538599795182169,-0.2584615610965724230,1000.00000000000000000,0.00000000000000000000,-0.0003461538266954942,-0.0002692307659782278,0.99999990384615689009,142.454117662844737424,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +143 ,0 ,-0.2867307757358520947,-0.2584615547242458677,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,-0.0002692307659782278,0.99999992751479460650,29.6173857593949385602,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +143 ,1 ,-0.2867307757358520947,-0.2584615547242458677,1000.00000000000000000,0.00000000000000000000,-0.0002692307562206040,-0.0002692307659782278,0.99999992751479460650,29.6173857593949385602,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +144 ,0 ,-0.2048076946783492779,-0.2584615499450010900,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,-0.0002692307659782278,0.99999994526627311586,199.548098072304412653,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +144 ,1 ,-0.2048076946783492779,-0.2584615499450010900,1000.00000000000000000,0.00000000000000000000,-0.0001923076841526324,-0.0002692307659782278,0.99999994526627311586,199.548098072304412653,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +145 ,0 ,-0.1228846158966773183,-0.2584615467588380344,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,-0.0002692307659782278,0.99999995710059208509,53.3562031698776948474,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +145 ,1 ,-0.1228846158966773183,-0.2584615467588380344,1000.00000000000000000,0.00000000000000000000,-0.0001153846109467456,-0.0002692307659782278,0.99999995710059208509,53.3562031698776948474,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +146 ,0 ,-0.0409615384805036841,-0.2584615451657565343,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,-0.0002692307659782278,0.99999996301775162521,195.322990509523776836,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +146 ,1 ,-0.0409615384805036841,-0.2584615451657565343,1000.00000000000000000,0.00000000000000000000,-0.0000384615370581095,-0.0002692307659782278,0.99999996301775162521,195.322990509523776836,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +147 ,0 ,0.04096153848050368417,-0.2584615451657565343,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,-0.0002692307659782278,0.99999996301775162521,82.2074038633628276784,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +147 ,1 ,0.04096153848050368417,-0.2584615451657565343,1000.00000000000000000,0.00000000000000000000,0.00003846153705810951,-0.0002692307659782278,0.99999996301775162521,82.2074038633628276784,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +148 ,0 ,0.12288461589667731832,-0.2584615467588380344,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,-0.0002692307659782278,0.99999995710059208509,6.61014719088798141655,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +148 ,1 ,0.12288461589667731832,-0.2584615467588380344,1000.00000000000000000,0.00000000000000000000,0.00011538461094674560,-0.0002692307659782278,0.99999995710059208509,6.61014719088798141655,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +149 ,0 ,0.20480769467834933350,-0.2584615499450010900,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,-0.0002692307659782278,0.99999994526627311586,69.0142497115336084334,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +149 ,1 ,0.20480769467834933350,-0.2584615499450010900,1000.00000000000000000,0.00000000000000000000,0.00019230768415263250,-0.0002692307659782278,0.99999994526627311586,69.0142497115336084334,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +150 ,0 ,0.28673077573585209476,-0.2584615547242458677,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,-0.0002692307659782278,0.99999992751479460650,126.870268612837008959,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +150 ,1 ,0.28673077573585209476,-0.2584615547242458677,1000.00000000000000000,0.00000000000000000000,0.00026923075622060400,-0.0002692307659782278,0.99999992751479460650,126.870268612837008959,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +151 ,0 ,0.36865385997951821694,-0.2584615610965724230,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,-0.0002692307659782278,0.99999990384615689009,136.141091477158738598,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +151 ,1 ,0.36865385997951821694,-0.2584615610965724230,1000.00000000000000000,0.00000000000000000000,0.00034615382669549426,-0.0002692307659782278,0.99999990384615689009,136.141091477158738598,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +152 ,0 ,0.45057694831968025939,-0.2584615690619809780,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,-0.0002692307659782278,0.99999987426035974458,106.186916890131996638,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +152 ,1 ,0.45057694831968025939,-0.2584615690619809780,1000.00000000000000000,0.00000000000000000000,0.00042307689512213698,-0.0002692307659782278,0.99999987426035974458,106.186916890131996638,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +153 ,0 ,0.53250004166667086469,-0.2584615786204717546,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,-0.0002692307659782278,0.99999983875740383609,89.5566326308894531393,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +153 ,1 ,0.53250004166667086469,-0.2584615786204717546,1000.00000000000000000,0.00000000000000000000,0.00049999996104536600,-0.0002692307659782278,0.99999983875740383609,89.5566326308894531393,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +154 ,0 ,-0.5325000416666708646,-0.3323077494026013822,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,-0.0003461538392410105,0.99999981508876811808,110.578617712151867635,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +154 ,1 ,-0.5325000416666708646,-0.3323077494026013822,1000.00000000000000000,0.00000000000000000000,-0.0004999999492110472,-0.0003461538392410105,0.99999981508876811808,110.578617712151867635,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +155 ,0 ,-0.4505769483196802038,-0.3323077371131130108,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,-0.0003461538392410105,0.99999985059172324941,118.539344826373110208,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +155 ,1 ,-0.4505769483196802038,-0.3323077371131130108,1000.00000000000000000,0.00000000000000000000,-0.0004230768851084824,-0.0003461538392410105,0.99999985059172324941,118.539344826373110208,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +156 ,0 ,-0.3686538599795182169,-0.3323077268718732657,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,-0.0003461538392410105,0.99999988017751961777,16.1706651598612474174,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +156 ,1 ,-0.3686538599795182169,-0.3323077268718732657,1000.00000000000000000,0.00000000000000000000,-0.0003461538185025041,-0.0003461538392410105,0.99999988017751961777,16.1706651598612474174,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +157 ,0 ,-0.2867307757358520392,-0.3323077186788818693,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,-0.0003461538392410105,0.99999990384615689009,73.9308919464077121119,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +157 ,1 ,-0.2867307757358520392,-0.3323077186788818693,1000.00000000000000000,0.00000000000000000000,-0.0002692307498482782,-0.0003461538392410105,0.99999990384615689009,73.9308919464077121119,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +158 ,0 ,-0.2048076946783492779,-0.3323077125341384885,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,-0.0003461538392410105,0.99999992159763495536,48.4319873266927913846,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +158 ,1 ,-0.2048076946783492779,-0.3323077125341384885,1000.00000000000000000,0.00000000000000000000,-0.0001923076796009712,-0.0003461538392410105,0.99999992159763495536,48.4319873266927913846,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +159 ,0 ,-0.1228846158966773044,-0.3323077084376430678,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,-0.0003461538392410105,0.99999993343195370254,160.627950998169353624,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +159 ,1 ,-0.1228846158966773044,-0.3323077084376430678,1000.00000000000000000,0.00000000000000000000,-0.0001153846082157488,-0.0003461538392410105,0.99999993343195370254,160.627950998169353624,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +160 ,0 ,-0.0409615384805036841,-0.3323077063893953297,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,-0.0003461538392410105,0.99999993934911302062,94.0601261551631893098,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +160 ,1 ,-0.0409615384805036841,-0.3323077063893953297,1000.00000000000000000,0.00000000000000000000,-0.0000384615361477772,-0.0003461538392410105,0.99999993934911302062,94.0601261551631893098,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +161 ,0 ,0.04096153848050368417,-0.3323077063893953297,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,-0.0003461538392410105,0.99999993934911302062,196.684627327296112753,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +161 ,1 ,0.04096153848050368417,-0.3323077063893953297,1000.00000000000000000,0.00000000000000000000,0.00003846153614777726,-0.0003461538392410105,0.99999993934911302062,196.684627327296112753,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +162 ,0 ,0.12288461589667730444,-0.3323077084376430678,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,-0.0003461538392410105,0.99999993343195370254,79.7648886870045430441,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +162 ,1 ,0.12288461589667730444,-0.3323077084376430678,1000.00000000000000000,0.00000000000000000000,0.00011538460821574884,-0.0003461538392410105,0.99999993343195370254,79.7648886870045430441,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +163 ,0 ,0.20480769467834933350,-0.3323077125341384885,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,-0.0003461538392410105,0.99999992159763495536,163.286375944336498378,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +163 ,1 ,0.20480769467834933350,-0.3323077125341384885,1000.00000000000000000,0.00000000000000000000,0.00019230767960097126,-0.0003461538392410105,0.99999992159763495536,163.286375944336498378,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +164 ,0 ,0.28673077573585203925,-0.3323077186788818693,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,-0.0003461538392410105,0.99999990384615689009,159.669024487880307106,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +164 ,1 ,0.28673077573585203925,-0.3323077186788818693,1000.00000000000000000,0.00000000000000000000,0.00026923074984827827,-0.0003461538392410105,0.99999990384615689009,159.669024487880307106,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +165 ,0 ,0.36865385997951821694,-0.3323077268718732657,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,-0.0003461538392410105,0.99999988017751961777,30.1435086946337236213,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +165 ,1 ,0.36865385997951821694,-0.3323077268718732657,1000.00000000000000000,0.00000000000000000000,0.00034615381850250414,-0.0003461538392410105,0.99999988017751961777,30.1435086946337236213,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +166 ,0 ,0.45057694831968025939,-0.3323077371131130108,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,-0.0003461538392410105,0.99999985059172324941,101.639756304593703362,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +166 ,1 ,0.45057694831968025939,-0.3323077371131130108,1000.00000000000000000,0.00000000000000000000,0.00042307688510848247,-0.0003461538392410105,0.99999985059172324941,101.639756304593703362,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +167 ,0 ,0.53250004166667086469,-0.3323077494026013822,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,-0.0003461538392410105,0.99999981508876811808,139.162562028309935158,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +167 ,1 ,0.53250004166667086469,-0.3323077494026013822,1000.00000000000000000,0.00000000000000000000,0.00049999994921104721,-0.0003461538392410105,0.99999981508876811808,139.162562028309935158,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +168 ,0 ,-0.5325000416666708646,-0.4061539242812273742,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,-0.0004230769104555456,0.99999978550297374813,171.671760215347575240,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +168 ,1 ,-0.5325000416666708646,-0.4061539242812273742,1000.00000000000000000,0.00000000000000000000,-0.0004999999344181487,-0.0004230769104555456,0.99999978550297374813,171.671760215347575240,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +169 ,0 ,-0.4505769483196802593,-0.4061539092607413525,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,-0.0004230769104555456,0.99999982100592776923,65.1917813031915045485,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +169 ,1 ,-0.4505769483196802593,-0.4061539092607413525,1000.00000000000000000,0.00000000000000000000,-0.0004230768725914143,-0.0004230769104555456,0.99999982100592776923,65.1917813031915045485,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +170 ,0 ,-0.3686538599795182169,-0.4061538967436703062,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,-0.0004230769104555456,0.99999985059172324941,44.0482096383460373090,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +170 ,1 ,-0.3686538599795182169,-0.4061538967436703062,1000.00000000000000000,0.00000000000000000000,-0.0003461538082612664,-0.0004230769104555456,0.99999985059172324941,44.0482096383460373090,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +171 ,0 ,-0.2867307757358520392,-0.4061538867300139021,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,-0.0004230769104555456,0.99999987426035974458,142.229906921794167828,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +171 ,1 ,-0.2867307757358520392,-0.4061538867300139021,1000.00000000000000000,0.00000000000000000000,-0.0002692307418828711,-0.0004230769104555456,0.99999987426035974458,142.229906921794167828,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +172 ,0 ,-0.2048076946783493057,-0.4061538792197718628,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,-0.0004230769104555456,0.99999989201183736575,161.900210325117285492,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +172 ,1 ,-0.2048076946783493057,-0.4061538792197718628,1000.00000000000000000,0.00000000000000000000,-0.0001923076739113946,-0.0004230769104555456,0.99999989201183736575,161.900210325117285492,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +173 ,0 ,-0.1228846158966773183,-0.4061538742129440215,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,-0.0004230769104555456,0.99999990384615566885,69.7331973979559762710,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +173 ,1 ,-0.1228846158966773183,-0.4061538742129440215,1000.00000000000000000,0.00000000000000000000,-0.0001153846048020029,-0.0004230769104555456,0.99999990384615566885,69.7331973979559762710,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +174 ,0 ,-0.0409615384805036841,-0.4061538717095300454,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,-0.0004230769104555456,0.99999990976331498693,19.2353102423332877890,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +174 ,1 ,-0.0409615384805036841,-0.4061538717095300454,1000.00000000000000000,0.00000000000000000000,-0.0000384615350098619,-0.0004230769104555456,0.99999990976331498693,19.2353102423332877890,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +175 ,0 ,0.04096153848050368417,-0.4061538717095300454,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,-0.0004230769104555456,0.99999990976331498693,188.104652284668901529,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +175 ,1 ,0.04096153848050368417,-0.4061538717095300454,1000.00000000000000000,0.00000000000000000000,0.00003846153500986195,-0.0004230769104555456,0.99999990976331498693,188.104652284668901529,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +176 ,0 ,0.12288461589667731832,-0.4061538742129440215,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,-0.0004230769104555456,0.99999990384615566885,79.5144039857001985183,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +176 ,1 ,0.12288461589667731832,-0.4061538742129440215,1000.00000000000000000,0.00000000000000000000,0.00011538460480200291,-0.0004230769104555456,0.99999990384615566885,79.5144039857001985183,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +177 ,0 ,0.20480769467834933350,-0.4061538792197718628,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,-0.0004230769104555456,0.99999989201183736575,103.550269013166015952,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +177 ,1 ,0.20480769467834933350,-0.4061538792197718628,1000.00000000000000000,0.00000000000000000000,0.00019230767391139474,-0.0004230769104555456,0.99999989201183736575,103.550269013166015952,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +178 ,0 ,0.28673077573585203925,-0.4061538867300139021,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,-0.0004230769104555456,0.99999987426035974458,167.542021341515237509,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +178 ,1 ,0.28673077573585203925,-0.4061538867300139021,1000.00000000000000000,0.00000000000000000000,0.00026923074188287118,-0.0004230769104555456,0.99999987426035974458,167.542021341515237509,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +179 ,0 ,0.36865385997951821694,-0.4061538967436703062,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,-0.0004230769104555456,0.99999985059172324941,135.138023396753254701,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +179 ,1 ,0.36865385997951821694,-0.4061538967436703062,1000.00000000000000000,0.00000000000000000000,0.00034615380826126648,-0.0004230769104555456,0.99999985059172324941,135.138023396753254701,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +180 ,0 ,0.45057694831968025939,-0.4061539092607413525,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,-0.0004230769104555456,0.99999982100592776923,147.043224830888959786,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +180 ,1 ,0.45057694831968025939,-0.4061539092607413525,1000.00000000000000000,0.00000000000000000000,0.00042307687259141442,-0.0004230769104555456,0.99999982100592776923,147.043224830888959786,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +181 ,0 ,0.53250004166667086469,-0.4061539242812273742,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,-0.0004230769104555456,0.99999978550297374813,41.8143235710017222572,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +181 ,1 ,0.53250004166667086469,-0.4061539242812273742,1000.00000000000000000,0.00000000000000000000,0.00049999993441814875,-0.0004230769104555456,0.99999978550297374813,41.8143235710017222572,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +182 ,0 ,-0.5325000416666707536,-0.4800001041666824841,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,-0.0004999999791666669,0.99999975000002094827,108.289594880372661123,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +182 ,1 ,-0.5325000416666707536,-0.4800001041666824841,1000.00000000000000000,0.00000000000000000000,-0.0004999999166666708,-0.0004999999791666669,0.99999975000002094827,108.289594880372661123,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +183 ,0 ,-0.4505769483196802038,-0.4800000864151985902,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,-0.0004999999791666669,0.99999978550297374813,139.156879936148612841,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +183 ,1 ,-0.4505769483196802038,-0.4800000864151985902,1000.00000000000000000,0.00000000000000000000,-0.0004230768575709328,-0.0004999999791666669,0.99999978550297374813,139.156879936148612841,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +184 ,0 ,-0.3686538599795182169,-0.4800000716222960761,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,-0.0004999999791666669,0.99999981508876811808,45.7100036660465463000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +184 ,1 ,-0.3686538599795182169,-0.4800000716222960761,1000.00000000000000000,0.00000000000000000000,-0.0003461537959717815,-0.0004999999791666669,0.99999981508876811808,45.7100036660465463000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +185 ,0 ,-0.2867307757358520947,-0.4800000597879746644,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,-0.0004999999791666669,0.99999983875740383609,34.9909849080701746970,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +185 ,1 ,-0.2867307757358520947,-0.4800000597879746644,1000.00000000000000000,0.00000000000000000000,-0.0002692307323243828,-0.0004999999791666669,0.99999983875740383609,34.9909849080701746970,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +186 ,0 ,-0.2048076946783493057,-0.4800000509122338554,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,-0.0004999999791666669,0.99999985650888079113,196.433668582801146840,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +186 ,1 ,-0.2048076946783493057,-0.4800000509122338554,1000.00000000000000000,0.00000000000000000000,-0.0001923076670839029,-0.0004999999791666669,0.99999985650888079113,196.433668582801146840,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +187 ,0 ,-0.1228846158966773044,-0.4800000449950734826,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,-0.0004999999791666669,0.99999986834319865014,103.327178373776177977,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +187 ,1 ,-0.1228846158966773044,-0.4800000449950734826,1000.00000000000000000,0.00000000000000000000,-0.0001153846007055078,-0.0004999999791666669,0.99999986834319865014,103.327178373776177977,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +188 ,0 ,-0.0409615384805036911,-0.4800000420364933240,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,-0.0004999999791666669,0.99999987426035774618,52.1658353628976811933,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +188 ,1 ,-0.0409615384805036911,-0.4800000420364933240,1000.00000000000000000,0.00000000000000000000,-0.0000384615336443635,-0.0004999999791666669,0.99999987426035774618,52.1658353628976811933,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +189 ,0 ,0.04096153848050369111,-0.4800000420364933240,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,-0.0004999999791666669,0.99999987426035774618,199.250739859242628426,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +189 ,1 ,0.04096153848050369111,-0.4800000420364933240,1000.00000000000000000,0.00000000000000000000,0.00003846153364436359,-0.0004999999791666669,0.99999987426035774618,199.250739859242628426,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +190 ,0 ,0.12288461589667730444,-0.4800000449950734826,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,-0.0004999999791666669,0.99999986834319865014,193.083870316176643200,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +190 ,1 ,0.12288461589667730444,-0.4800000449950734826,1000.00000000000000000,0.00000000000000000000,0.00011538460070550785,-0.0004999999791666669,0.99999986834319865014,193.083870316176643200,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +191 ,0 ,0.20480769467834933350,-0.4800000509122338554,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,-0.0004999999791666669,0.99999985650888079113,111.658689591954157549,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +191 ,1 ,0.20480769467834933350,-0.4800000509122338554,1000.00000000000000000,0.00000000000000000000,0.00019230766708390299,-0.0004999999791666669,0.99999985650888079113,111.658689591954157549,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +192 ,0 ,0.28673077573585209476,-0.4800000597879746644,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,-0.0004999999791666669,0.99999983875740383609,176.527269179124232323,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +192 ,1 ,0.28673077573585209476,-0.4800000597879746644,1000.00000000000000000,0.00000000000000000000,0.00026923073232438285,-0.0004999999791666669,0.99999983875740383609,176.527269179124232323,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +193 ,0 ,0.36865385997951821694,-0.4800000716222960761,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,-0.0004999999791666669,0.99999981508876811808,37.7414221963243150526,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +193 ,1 ,0.36865385997951821694,-0.4800000716222960761,1000.00000000000000000,0.00000000000000000000,0.00034615379597178157,-0.0004999999791666669,0.99999981508876811808,37.7414221963243150526,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +194 ,0 ,0.45057694831968025939,-0.4800000864151985902,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,-0.0004999999791666669,0.99999978550297374813,55.7742703835885649255,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +194 ,1 ,0.45057694831968025939,-0.4800000864151985902,1000.00000000000000000,0.00000000000000000000,0.00042307685757093292,-0.0004999999791666669,0.99999978550297374813,55.7742703835885649255,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +195 ,0 ,0.53250004166667075367,-0.4800001041666824841,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,-0.0004999999791666669,0.99999975000002094827,140.071565783599282895,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +195 ,1 ,0.53250004166667075367,-0.4800001041666824841,1000.00000000000000000,0.00000000000000000000,0.00049999991666667084,-0.0004999999791666669,0.99999975000002094827,140.071565783599282895,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +196 ,0 ,-0.5325000416666707536,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,145.191135244721323260,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +196 ,1 ,-0.5325000416666707536,0.48000010416668248414,1000.00000000000000000,0.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,145.191135244721323260,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +197 ,0 ,-0.4505769483196802038,0.48000008641519859020,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,169.332227848780405565,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +197 ,1 ,-0.4505769483196802038,0.48000008641519859020,1000.00000000000000000,0.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,169.332227848780405565,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +198 ,0 ,-0.3686538599795182169,0.48000007162229607615,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,179.422050849400022798,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +198 ,1 ,-0.3686538599795182169,0.48000007162229607615,1000.00000000000000000,0.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,179.422050849400022798,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +199 ,0 ,-0.2867307757358520947,0.48000005978797466443,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,171.264857978388874926,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +199 ,1 ,-0.2867307757358520947,0.48000005978797466443,1000.00000000000000000,0.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,171.264857978388874926,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 diff --git a/Intern/RayCore/tests/output/MatrixSource_seeded.rayx.csv b/Intern/RayCore/tests/output/MatrixSource_seeded.rayx.csv new file mode 100644 index 000000000..23105003a --- /dev/null +++ b/Intern/RayCore/tests/output/MatrixSource_seeded.rayx.csv @@ -0,0 +1,401 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.5387730364695781926,0.48627309975371429962,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1012.54624169685496326,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +0 ,1 ,-0.5387730364695781926,0.48627309975371429962,1000.00000000000000000,0.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1012.54624169685496326,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +1 ,0 ,-0.4315082647603292742,0.45746436693115022364,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,954.928773650999005440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +1 ,1 ,-0.4315082647603292742,0.45746436693115022364,1000.00000000000000000,0.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,954.928773650999005440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +2 ,0 ,-0.3606233002491213701,0.46840037303565268400,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,976.800786771337698155,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +2 ,1 ,-0.3606233002491213701,0.46840037303565268400,1000.00000000000000000,0.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,976.800786771337698155,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +3 ,0 ,-0.2840745856529754420,0.47506713487767548986,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.134311010946930764,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +3 ,1 ,-0.2840745856529754420,0.47506713487767548986,1000.00000000000000000,0.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.134311010946930764,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +4 ,0 ,-0.2114227209415486807,0.49719912073581812306,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,0.00049999997916666690,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1034.39828457156431795,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +4 ,1 ,-0.2114227209415486807,0.49719912073581812306,1000.00000000000000000,0.00000000000000000000,-0.0001923076670839029,0.00049999997916666690,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1034.39828457156431795,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +5 ,0 ,-0.1268539098702317069,0.49720032035199851483,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,0.00049999997916666690,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1034.40068380402499315,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +5 ,1 ,-0.1268539098702317069,0.49720032035199851483,1000.00000000000000000,0.00000000000000000000,-0.0001153846007055078,0.00049999997916666690,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1034.40068380402499315,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +6 ,0 ,-0.0426612169002327165,0.50209586333973688088,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,0.00049999997916666690,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1044.19177018746358953,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +6 ,1 ,-0.0426612169002327165,0.50209586333973688088,1000.00000000000000000,0.00000000000000000000,-0.0000384615336443635,0.00049999997916666690,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1044.19177018746358953,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +7 ,0 ,0.03955316867655773310,0.46169123305494774722,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,0.00049999997916666690,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,963.382506250832761907,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +7 ,1 ,0.03955316867655773310,0.46169123305494774722,1000.00000000000000000,0.00000000000000000000,0.00003846153364436359,0.00049999997916666690,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,963.382506250832761907,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +8 ,0 ,0.12171790422014708288,0.47494429396424486800,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,0.00049999997916666690,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,989.888629173848698883,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +8 ,1 ,0.12171790422014708288,0.47494429396424486800,1000.00000000000000000,0.00000000000000000000,0.00011538460070550785,0.00049999997916666690,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,989.888629173848698883,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +9 ,0 ,0.20080629888928180903,0.46959642092956416226,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,0.00049999997916666690,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,979.192882658831308617,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +9 ,1 ,0.20080629888928180903,0.46959642092956416226,1000.00000000000000000,0.00000000000000000000,0.00019230766708390299,0.00049999997916666690,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,979.192882658831308617,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +10 ,0 ,0.29963811646545357447,0.50397083771581574485,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,0.00049999997916666690,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1047.94171909586930269,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +10 ,1 ,0.29963811646545357447,0.50397083771581574485,1000.00000000000000000,0.00000000000000000000,0.00026923073232438285,0.00049999997916666690,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1047.94171909586930269,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +11 ,0 ,0.35238774923302068620,0.45650457589462684060,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,0.00049999997916666690,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.009191497969482043,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +11 ,1 ,0.35238774923302068620,0.45650457589462684060,1000.00000000000000000,0.00000000000000000000,0.00034615379597178157,0.00049999997916666690,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.009191497969482043,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +12 ,0 ,0.43651206670285430666,0.46337795171425821827,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,0.00049999997916666690,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,966.755943710013639247,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +12 ,1 ,0.43651206670285430666,0.46337795171425821827,1000.00000000000000000,0.00000000000000000000,0.00042307685757093292,0.00049999997916666690,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,966.755943710013639247,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +13 ,0 ,0.54688308727095458205,0.49438315156884715673,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1028.76634600295824384,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +13 ,1 ,0.54688308727095458205,0.49438315156884715673,1000.00000000000000000,0.00000000000000000000,0.00049999991666667084,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1028.76634600295824384,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +14 ,0 ,-0.5484087946386686507,0.41961517816004179071,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,0.00042307691045554557,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.81772461437026322,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +14 ,1 ,-0.5484087946386686507,0.41961517816004179071,1000.00000000000000000,0.00000000000000000000,-0.0004999999344181487,0.00042307691045554557,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.81772461437026322,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +15 ,0 ,-0.4639713736978018365,0.41954833583762440873,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,0.00042307691045554557,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.65973366576145053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +15 ,1 ,-0.4639713736978018365,0.41954833583762440873,1000.00000000000000000,0.00000000000000000000,-0.0004230768725914143,0.00042307691045554557,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.65973366576145053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +16 ,0 ,-0.3754300903682085133,0.41443595676716782350,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,0.00042307691045554557,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1019.57592822964829792,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +16 ,1 ,-0.3754300903682085133,0.41443595676716782350,1000.00000000000000000,0.00000000000000000000,-0.0003461538082612664,0.00042307691045554557,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1019.57592822964829792,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +17 ,0 ,-0.2860642562730613125,0.40510649892762584656,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,0.00042307691045554557,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.524481769248268392,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +17 ,1 ,-0.2860642562730613125,0.40510649892762584656,1000.00000000000000000,0.00000000000000000000,-0.0002692307418828711,0.00042307691045554557,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.524481769248268392,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +18 ,0 ,-0.2061164442880983049,0.40903312855075596443,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,0.00042307691045554557,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1006.80560660988828658,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +18 ,1 ,-0.2061164442880983049,0.40903312855075596443,1000.00000000000000000,0.00000000000000000000,-0.0001923076739113946,0.00042307691045554557,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1006.80560660988828658,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +19 ,0 ,-0.1252935104448915648,0.41498648810299038069,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,0.00042307691045554557,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1020.87718415313941022,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +19 ,1 ,-0.1252935104448915648,0.41498648810299038069,1000.00000000000000000,0.00000000000000000000,-0.0001153846048020029,0.00042307691045554557,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1020.87718415313941022,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +20 ,0 ,-0.0405313350266790980,0.40142163343394526853,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,0.00042307691045554557,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,988.814799433445728027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +20 ,1 ,-0.0405313350266790980,0.40142163343394526853,1000.00000000000000000,0.00000000000000000000,-0.0000384615350098619,0.00042307691045554557,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,988.814799433445728027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +21 ,0 ,0.04234810054875543655,0.42140605537407654912,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,0.00042307691045554557,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1036.05070724655024605,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +21 ,1 ,0.04234810054875543655,0.42140605537407654912,1000.00000000000000000,0.00000000000000000000,0.00003846153500986195,0.00042307691045554557,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1036.05070724655024605,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +22 ,0 ,0.12528294689615207535,0.41494775508854869761,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,0.00042307691045554557,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1020.78563338900050894,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +22 ,1 ,0.12528294689615207535,0.41494775508854869761,1000.00000000000000000,0.00000000000000000000,0.00011538460480200291,0.00042307691045554557,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1020.78563338900050894,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +23 ,0 ,0.20737765922662326767,0.41180780159816310348,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,0.00042307691045554557,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1013.36392491759136191,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +23 ,1 ,0.20737765922662326767,0.41180780159816310348,1000.00000000000000000,0.00000000000000000000,0.00019230767391139474,0.00042307691045554557,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1013.36392491759136191,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +24 ,0 ,0.28791350679211469287,0.40801246423748555036,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,0.00042307691045554557,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1004.39312725200625209,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +24 ,1 ,0.28791350679211469287,0.40801246423748555036,1000.00000000000000000,0.00000000000000000000,0.00026923074188287118,0.00042307691045554557,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1004.39312725200625209,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +25 ,0 ,0.35878238403888523810,0.39408875852208802292,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,0.00042307691045554557,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,971.482549124721458611,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +25 ,1 ,0.35878238403888523810,0.39408875852208802292,1000.00000000000000000,0.00000000000000000000,0.00034615380826126648,0.00042307691045554557,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,971.482549124721458611,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +26 ,0 ,0.46328305823544557728,0.41886002031366587061,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,0.00042307691045554557,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1030.03280601514256886,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +26 ,1 ,0.46328305823544557728,0.41886002031366587061,1000.00000000000000000,0.00000000000000000000,0.00042307687259141442,0.00042307691045554557,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1030.03280601514256886,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +27 ,0 ,0.53178831979086194081,0.40555169801759538561,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,0.00042307691045554557,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.576770558750354211,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +27 ,1 ,0.53178831979086194081,0.40555169801759538561,1000.00000000000000000,0.00000000000000000000,0.00049999993441814875,0.00042307691045554557,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.576770558750354211,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +28 ,0 ,-0.5278793126446066352,0.32910878289549727604,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,0.00034615383924101053,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.758725928409489824,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +28 ,1 ,-0.5278793126446066352,0.32910878289549727604,1000.00000000000000000,0.00000000000000000000,-0.0004999999492110472,0.00034615383924101053,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.758725928409489824,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +29 ,0 ,-0.4697655861003966482,0.34800753275639650929,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,0.00034615383924101053,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1045.35511550576438821,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +29 ,1 ,-0.4697655861003966482,0.34800753275639650929,1000.00000000000000000,0.00000000000000000000,-0.0004230768851084824,0.00034615383924101053,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1045.35511550576438821,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +30 ,0 ,-0.3649311534443439586,0.32858502011366702566,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,0.00034615383924101053,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,989.245633417349722549,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +30 ,1 ,-0.3649311534443439586,0.32858502011366702566,1000.00000000000000000,0.00000000000000000000,-0.0003461538185025041,0.00034615383924101053,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,989.245633417349722549,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +31 ,0 ,-0.2956012802763715585,0.34371265368142528418,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,0.00034615383924101053,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1032.94768681917707908,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +31 ,1 ,-0.2956012802763715585,0.34371265368142528418,1000.00000000000000000,0.00000000000000000000,-0.0002692307498482782,0.00034615383924101053,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1032.94768681917707908,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +32 ,0 ,-0.2131720871987956844,0.34736361976508761673,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,0.00034615383924101053,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1043.49492238261223064,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +32 ,1 ,-0.2131720871987956844,0.34736361976508761673,1000.00000000000000000,0.00000000000000000000,-0.0001923076796009712,0.00034615383924101053,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1043.49492238261223064,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +33 ,0 ,-0.1177051674373130601,0.31676936240445729975,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,0.00034615383924101053,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,955.111510464626803695,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +33 ,1 ,-0.1177051674373130601,0.31676936240445729975,1000.00000000000000000,0.00000000000000000000,-0.0001153846082157488,0.00034615383924101053,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,955.111510464626803695,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +34 ,0 ,-0.0391706460358167973,0.31618967373947187704,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,0.00034615383924101053,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.436854287891833337,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +34 ,1 ,-0.0391706460358167973,0.31618967373947187704,1000.00000000000000000,0.00000000000000000000,-0.0000384615361477772,0.00034615383924101053,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.436854287891833337,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +35 ,0 ,0.03977539482841409290,0.32163241309157691860,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,0.00034615383924101053,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.160323841310741954,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +35 ,1 ,0.03977539482841409290,0.32163241309157691860,1000.00000000000000000,0.00000000000000000000,0.00003846153614777726,0.00034615383924101053,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.160323841310741954,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +36 ,0 ,0.12513907239528249126,0.33907107821860071883,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,0.00034615383924101053,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1019.53869076990076791,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +36 ,1 ,0.12513907239528249126,0.33907107821860071883,1000.00000000000000000,0.00000000000000000000,0.00011538460821574884,0.00034615383924101053,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1019.53869076990076791,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +37 ,0 ,0.21254476944746894528,0.34623444776063944106,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,0.00034615383924101053,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.23286986017274102,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +37 ,1 ,0.21254476944746894528,0.34623444776063944106,1000.00000000000000000,0.00000000000000000000,0.00019230767960097126,0.00034615383924101053,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.23286986017274102,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +38 ,0 ,0.28177065559640579461,0.32593042102497882250,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,0.00034615383924101053,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,981.576791452433894846,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +38 ,1 ,0.28177065559640579461,0.32593042102497882250,1000.00000000000000000,0.00000000000000000000,0.00026923074984827827,0.00034615383924101053,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,981.576791452433894846,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +39 ,0 ,0.37072550456957292785,0.33437937158604280618,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,0.00034615383924101053,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1005.98487133850233021,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +39 ,1 ,0.37072550456957292785,0.33437937158604280618,1000.00000000000000000,0.00000000000000000000,0.00034615381850250414,0.00034615383924101053,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1005.98487133850233021,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +40 ,0 ,0.46656763946999524339,0.34539103078532457091,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,0.00034615383924101053,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1037.79633188282673472,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +40 ,1 ,0.46656763946999524339,0.34539103078532457091,1000.00000000000000000,0.00000000000000000000,0.00042307688510848247,0.00034615383924101053,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1037.79633188282673472,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +41 ,0 ,0.53274119615986537112,0.33247470252689909075,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,0.00034615383924101053,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.48249394664708233,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +41 ,1 ,0.53274119615986537112,0.33247470252689909075,1000.00000000000000000,0.00000000000000000000,0.00049999994921104721,0.00034615383924101053,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.48249394664708233,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +42 ,0 ,-0.5557806174521595643,0.27099727409940127520,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,0.00026923076597822786,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1046.56131644114520895,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +42 ,1 ,-0.5557806174521595643,0.27099727409940127520,1000.00000000000000000,0.00000000000000000000,-0.0004999999610453660,0.00026923076597822786,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1046.56131644114520895,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +43 ,0 ,-0.4332595456462874361,0.24744140312934367886,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,0.00026923076597822786,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.068080352508445685,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +43 ,1 ,-0.4332595456462874361,0.24744140312934367886,1000.00000000000000000,0.00000000000000000000,-0.0004230768951221369,0.00026923076597822786,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.068080352508445685,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +44 ,0 ,-0.3770037840476019863,0.26495594676947098466,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,0.00026923076597822786,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1024.12210037317618116,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +44 ,1 ,-0.3770037840476019863,0.26495594676947098466,1000.00000000000000000,0.00000000000000000000,-0.0003461538266954942,0.00026923076597822786,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1024.12210037317618116,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +45 ,0 ,-0.2823551757702407738,0.25408595460005140020,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,0.00026923076597822786,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,983.747843256147234569,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +45 ,1 ,-0.2823551757702407738,0.25408595460005140020,1000.00000000000000000,0.00000000000000000000,-0.0002692307562206040,0.00026923076597822786,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,983.747843256147234569,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +46 ,0 ,-0.2084286356224638592,0.26353086742049081081,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,0.00026923076597822786,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.82894844158943215,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +46 ,1 ,-0.2084286356224638592,0.26353086742049081081,1000.00000000000000000,0.00000000000000000000,-0.0001923076841526324,0.00026923076597822786,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.82894844158943215,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +47 ,0 ,-0.1226530618081831808,0.25792125387143177706,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,0.00026923076597822786,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.993240721942470372,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +47 ,1 ,-0.1226530618081831808,0.25792125387143177706,1000.00000000000000000,0.00000000000000000000,-0.0001153846109467456,0.00026923076597822786,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.993240721942470372,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +48 ,0 ,-0.0407818835675829854,0.25720396074461615576,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,0.00026923076597822786,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,995.329009075869635125,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +48 ,1 ,-0.0407818835675829854,0.25720396074461615576,1000.00000000000000000,0.00000000000000000000,-0.0000384615370581095,0.00026923076597822786,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,995.329009075869635125,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +49 ,0 ,0.04217363671100633759,0.26694623298637176755,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,0.00026923076597822786,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.51459212525787734,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +49 ,1 ,0.04217363671100633759,0.26694623298637176755,1000.00000000000000000,0.00000000000000000000,0.00003846153705810951,0.00026923076597822786,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.51459212525787734,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +50 ,0 ,0.11746633169532724738,0.24581888328883261252,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,0.00026923076597822786,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.041578014947731389,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +50 ,1 ,0.11746633169532724738,0.24581888328883261252,1000.00000000000000000,0.00000000000000000000,0.00011538461094674560,0.00026923076597822786,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.041578014947731389,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +51 ,0 ,0.19951667872828968142,0.25105412739028420965,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,0.00026923076597822786,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.486770626682641704,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +51 ,1 ,0.19951667872828968142,0.25105412739028420965,1000.00000000000000000,0.00000000000000000000,0.00019230768415263250,0.00026923076597822786,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.486770626682641704,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +52 ,0 ,0.27489811170571726295,0.24662889026526449431,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,0.00026923076597822786,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,956.050175392326764267,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +52 ,1 ,0.27489811170571726295,0.24662889026526449431,1000.00000000000000000,0.00000000000000000000,0.00026923075622060400,0.00026923076597822786,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,956.050175392326764267,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +53 ,0 ,0.35498675883996821944,0.24783159307446572805,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,0.00026923076597822786,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.517357309041813095,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +53 ,1 ,0.35498675883996821944,0.24783159307446572805,1000.00000000000000000,0.00000000000000000000,0.00034615382669549426,0.00026923076597822786,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.517357309041813095,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +54 ,0 ,0.44643502598738665776,0.25582580016275097145,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,0.00026923076597822786,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.210126852815619713,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +54 ,1 ,0.44643502598738665776,0.25582580016275097145,1000.00000000000000000,0.00000000000000000000,0.00042307689512213698,0.00026923076597822786,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.210126852815619713,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +55 ,0 ,0.51140632809399633185,0.24710342441057331352,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,0.00026923076597822786,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,957.812730810481525622,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +55 ,1 ,0.51140632809399633185,0.24710342441057331352,1000.00000000000000000,0.00000000000000000000,0.00049999996104536600,0.00026923076597822786,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,957.812730810481525622,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +56 ,0 ,-0.5530754184086755786,0.19252901789102647156,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,0.00019230769112236383,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1041.15089945068802990,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +56 ,1 ,-0.5530754184086755786,0.19252901789102647156,1000.00000000000000000,0.00000000000000000000,-0.0004999999699211052,0.00019230769112236383,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1041.15089945068802990,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +57 ,0 ,-0.4634392125456729960,0.19046188818258660835,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,0.00019230769112236383,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1030.40182490054644404,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +57 ,1 ,-0.4634392125456729960,0.19046188818258660835,1000.00000000000000000,0.00000000000000000000,-0.0004230769026323778,0.00019230769112236383,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1030.40182490054644404,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +58 ,0 ,-0.3843959929693127608,0.19336102822867473616,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,0.00019230769112236383,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1045.47735323312576838,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +58 ,1 ,-0.3843959929693127608,0.19336102822867473616,1000.00000000000000000,0.00000000000000000000,-0.0003461538328402369,0.00019230769112236383,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1045.47735323312576838,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +59 ,0 ,-0.2914334209139534115,0.18797442630783395278,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,0.00019230769112236383,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.46702307210637172,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +59 ,1 ,-0.2914334209139534115,0.18797442630783395278,1000.00000000000000000,0.00000000000000000000,-0.0002692307609998483,0.00019230769112236383,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.46702307210637172,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +60 ,0 ,-0.2069485160950387814,0.18675621199830280683,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,0.00019230769112236383,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1011.13230862349905692,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +60 ,1 ,-0.2069485160950387814,0.18675621199830280683,1000.00000000000000000,0.00000000000000000000,-0.0001923076875663784,0.00019230769112236383,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1011.13230862349905692,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +61 ,0 ,-0.1255228963109913109,0.18901252235401533319,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,0.00019230769112236383,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1022.86512254552178546,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +61 ,1 ,-0.1255228963109913109,0.18901252235401533319,1000.00000000000000000,0.00000000000000000000,-0.0001153846129949931,0.00019230769112236383,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1022.86512254552178546,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +62 ,0 ,-0.0396971634428422981,0.17829351186048306154,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,0.00019230769112236383,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,967.126267635595922911,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +62 ,1 ,-0.0396971634428422981,0.17829351186048306154,1000.00000000000000000,0.00000000000000000000,-0.0000384615377408587,0.00019230769112236383,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,967.126267635595922911,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +63 ,0 ,0.04151248722921494632,0.18737013090647539059,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,0.00019230769112236383,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1014.32468696567332244,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +63 ,1 ,0.04151248722921494632,0.18737013090647539059,1000.00000000000000000,0.00000000000000000000,0.00003846153774085871,0.00019230769112236383,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1014.32468696567332244,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +64 ,0 ,0.12541229462116643134,0.18882818620162578060,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,0.00019230769112236383,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1021.90657454718791541,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +64 ,1 ,0.12541229462116643134,0.18882818620162578060,1000.00000000000000000,0.00000000000000000000,0.00011538461299499319,0.00019230769112236383,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1021.90657454718791541,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +65 ,0 ,0.20398661606217607933,0.18379431191067119311,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,0.00019230769112236383,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,995.730428072882091328,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +65 ,1 ,0.20398661606217607933,0.18379431191067119311,1000.00000000000000000,0.00000000000000000000,0.00019230768756637849,0.00019230769112236383,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,995.730428072882091328,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +66 ,0 ,0.29639820069005046176,0.19152069766303311815,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,0.00019230769112236383,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1035.90763423280441202,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +66 ,1 ,0.29639820069005046176,0.19152069766303311815,1000.00000000000000000,0.00000000000000000000,0.00026923076099984833,0.00019230769112236383,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1035.90763423280441202,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +67 ,0 ,0.35819319476662597745,0.17880391764590788938,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,0.00019230769112236383,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.780377736164268753,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +67 ,1 ,0.35819319476662597745,0.17880391764590788938,1000.00000000000000000,0.00000000000000000000,0.00034615383284023691,0.00019230769112236383,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.780377736164268753,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +68 ,0 ,0.46857672985752824024,0.19279712342279195502,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,0.00019230769112236383,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1042.54504822446142497,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +68 ,1 ,0.46857672985752824024,0.19279712342279195502,1000.00000000000000000,0.00000000000000000000,0.00042307690263237795,0.00019230769112236383,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1042.54504822446142497,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +69 ,0 ,0.50815569288434048189,0.17525219944882086675,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,0.00019230769112236383,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,951.311442997474614458,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +69 ,1 ,0.50815569288434048189,0.17525219944882086675,1000.00000000000000000,0.00000000000000000000,0.00049999996992110523,0.00019230769112236383,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,951.311442997474614458,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +70 ,0 ,-0.5188878019378441175,0.10762795946827592719,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,0.00011538461512858444,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.775650883583807626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +70 ,1 ,-0.5188878019378441175,0.10762795946827592719,1000.00000000000000000,0.00000000000000000000,-0.0004999999758382646,0.00011538461512858444,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.775650883583807626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +71 ,0 ,-0.4633235933051890742,0.11424559945033135877,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,0.00011538461512858444,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1030.12853085532628938,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +71 ,1 ,-0.4633235933051890742,0.11424559945033135877,1000.00000000000000000,0.00000000000000000000,-0.0004230769076392051,0.00011538461512858444,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1030.12853085532628938,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +72 ,0 ,-0.3857704025809525205,0.11647475253386865845,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,0.00011538461512858444,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1049.44785762218475611,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +72 ,1 ,-0.3857704025809525205,0.11647475253386865845,1000.00000000000000000,0.00000000000000000000,-0.0003461538369367320,0.00011538461512858444,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1049.44785762218475611,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +73 ,0 ,-0.2782375831981779290,0.10712929574400130439,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,0.00011538461512858444,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,968.453898596947396981,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +73 ,1 ,-0.2782375831981779290,0.10712929574400130439,1000.00000000000000000,0.00000000000000000000,-0.0002692307641860112,0.00011538461512858444,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,968.453898596947396981,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +74 ,0 ,-0.2008296688132033269,0.10838241787049239517,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,0.00011538461512858444,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,979.314290383968568676,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +74 ,1 ,-0.2008296688132033269,0.10838241787049239517,1000.00000000000000000,0.00000000000000000000,-0.0001923076898422090,0.00011538461512858444,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,979.314290383968568676,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +75 ,0 ,-0.1202422255450762839,0.10812684168019466579,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,0.00011538461512858444,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,977.099296729806496841,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +75 ,1 ,-0.1202422255450762839,0.10812684168019466579,1000.00000000000000000,0.00000000000000000000,-0.0001153846143604915,0.00011538461512858444,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,977.099296729806496841,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +76 ,0 ,-0.0399181910094093400,0.10763918893869088566,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,0.00011538461512858444,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.872972960729157421,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +76 ,1 ,-0.0399181910094093400,0.10763918893869088566,1000.00000000000000000,0.00000000000000000000,-0.0000384615381960248,0.00011538461512858444,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.872972960729157421,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +77 ,0 ,0.04259982830523008356,0.11568410086383884571,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,0.00011538461512858444,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1042.59554313338821884,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +77 ,1 ,0.04259982830523008356,0.11568410086383884571,1000.00000000000000000,0.00000000000000000000,0.00003846153819602484,0.00011538461512858444,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1042.59554313338821884,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +78 ,0 ,0.12451770369038070440,0.11240231985396009761,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,0.00011538461512858444,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1014.15344098466118794,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +78 ,1 ,0.12451770369038070440,0.11240231985396009761,1000.00000000000000000,0.00000000000000000000,0.00011538461436049158,0.00011538461512858444,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1014.15344098466118794,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +79 ,0 ,0.21219482833484112904,0.11520151365576820901,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,0.00011538461512858444,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.41312065416195764,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +79 ,1 ,0.21219482833484112904,0.11520151365576820901,1000.00000000000000000,0.00000000000000000000,0.00019230768984220914,0.00011538461512858444,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.41312065416195764,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +80 ,0 ,0.27695491416125883610,0.10657958043338393305,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,0.00011538461512858444,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,963.689699227692017302,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +80 ,1 ,0.27695491416125883610,0.10657958043338393305,1000.00000000000000000,0.00000000000000000000,0.00026923076418601120,0.00011538461512858444,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,963.689699227692017302,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +81 ,0 ,0.36438584778103316752,0.10934656742657544725,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,0.00011538461512858444,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,987.670253221896473405,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +81 ,1 ,0.36438584778103316752,0.10934656742657544725,1000.00000000000000000,0.00000000000000000000,0.00034615383693673202,0.00011538461512858444,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,987.670253221896473405,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +82 ,0 ,0.45773126309666223310,0.11272041843210119094,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,0.00011538461512858444,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1016.91029533466780776,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +82 ,1 ,0.45773126309666223310,0.11272041843210119094,1000.00000000000000000,0.00000000000000000000,0.00042307690763920520,0.00011538461512858444,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1016.91029533466780776,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +83 ,0 ,0.55432212593365448594,0.11580511153662058354,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,0.00011538461512858444,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1043.64430229982349374,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +83 ,1 ,0.55432212593365448594,0.11580511153662058354,1000.00000000000000000,0.00000000000000000000,0.00049999997583826468,0.00011538461512858444,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1043.64430229982349374,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +84 ,0 ,-0.5419509263578902169,0.03765007291047852561,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,0.00003846153845205580,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.90189592365106818,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +84 ,1 ,-0.5419509263578902169,0.03765007291047852561,1000.00000000000000000,0.00000000000000000000,-0.0004999999787968444,0.00003846153845205580,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.90189592365106818,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +85 ,0 ,-0.4579730389630555786,0.03759545228129676508,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,0.00003846153845205580,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.48175956457521351,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +85 ,1 ,-0.4579730389630555786,0.03759545228129676508,1000.00000000000000000,0.00000000000000000000,-0.0004230769101426188,0.00003846153845205580,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.48175956457521351,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +86 ,0 ,-0.3607059536193307214,0.03603997852156198139,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,0.00003846153845205580,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,977.039441801499947359,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +86 ,1 ,-0.3607059536193307214,0.03603997852156198139,1000.00000000000000000,0.00000000000000000000,-0.0003461538389849795,0.00003846153845205580,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,977.039441801499947359,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +87 ,0 ,-0.2830273052709604275,0.03639401112006577371,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,0.00003846153845205580,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.244289364867881886,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +87 ,1 ,-0.2830273052709604275,0.03639401112006577371,1000.00000000000000000,0.00000000000000000000,-0.0002692307657790926,0.00003846153845205580,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.244289364867881886,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +88 ,0 ,-0.1973612956508832005,0.03543379783783218162,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,0.00003846153845205580,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,961.278744020639123846,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +88 ,1 ,-0.1973612956508832005,0.03543379783783218162,1000.00000000000000000,0.00000000000000000000,-0.0001923076909801243,0.00003846153845205580,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,961.278744020639123846,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +89 ,0 ,-0.1232052129471131324,0.03702994288184153354,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,0.00003846153845205580,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1002.77851517511396650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +89 ,1 ,-0.1232052129471131324,0.03702994288184153354,1000.00000000000000000,0.00000000000000000000,-0.0001153846150432407,0.00003846153845205580,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1002.77851517511396650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +90 ,0 ,-0.0424246375594649477,0.03838617605053346731,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,0.00003846153845205580,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.04057756979796067,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +90 ,1 ,-0.0424246375594649477,0.03838617605053346731,1000.00000000000000000,0.00000000000000000000,-0.0000384615384236079,0.00003846153845205580,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.04057756979796067,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +91 ,0 ,0.04014136623359557815,0.03610290472297528197,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,0.00003846153845205580,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,978.675523038649089357,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +91 ,1 ,0.04014136623359557815,0.03610290472297528197,1000.00000000000000000,0.00000000000000000000,0.00003846153842360791,0.00003846153845205580,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,978.675523038649089357,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +92 ,0 ,0.11987555769005356354,0.03592005779314496466,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,0.00003846153845205580,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,973.921502861888598090,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +92 ,1 ,0.11987555769005356354,0.03592005779314496466,1000.00000000000000000,0.00000000000000000000,0.00011538461504324078,0.00003846153845205580,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,973.921502861888598090,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +93 ,0 ,0.20362928693761644938,0.03668739610352378388,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,0.00003846153845205580,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,993.872298936656648038,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +93 ,1 ,0.20362928693761644938,0.03668739610352378388,1000.00000000000000000,0.00000000000000000000,0.00019230769098012445,0.00003846153845205580,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,993.872298936656648038,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +94 ,0 ,0.27943550518851689723,0.03588089681612195713,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,0.00003846153845205580,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.903317459039271852,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +94 ,1 ,0.27943550518851689723,0.03588089681612195713,1000.00000000000000000,0.00000000000000000000,0.00026923076577909266,0.00003846153845205580,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.903317459039271852,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +95 ,0 ,0.36886862776434303778,0.03694694233401190491,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,0.00003846153845205580,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.62050093101174752,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +95 ,1 ,0.36886862776434303778,0.03694694233401190491,1000.00000000000000000,0.00000000000000000000,0.00034615383898497955,0.00003846153845205580,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.62050093101174752,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +96 ,0 ,0.44961517485157914686,0.03683564642993927829,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,0.00003846153845205580,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.726807424410026214,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +96 ,1 ,0.44961517485157914686,0.03683564642993927829,1000.00000000000000000,0.00000000000000000000,0.00042307691014261891,0.00003846153845205580,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.726807424410026214,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +97 ,0 ,0.53612299092400717004,0.03720177016589487628,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,0.00003846153845205580,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1007.24602456160255314,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +97 ,1 ,0.53612299092400717004,0.03720177016589487628,1000.00000000000000000,0.00000000000000000000,0.00049999997879684445,0.00003846153845205580,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1007.24602456160255314,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +98 ,0 ,-0.5562290873654824885,-0.0387483930342905416,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,-0.0000384615384520558,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1047.45821914980410838,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +98 ,1 ,-0.5562290873654824885,-0.0387483930342905416,1000.00000000000000000,0.00000000000000000000,-0.0004999999787968444,-0.0000384615384520558,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1047.45821914980410838,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +99 ,0 ,-0.4671661581117620976,-0.0384311904110687663,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,-0.0000384615384520558,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1039.21095094400448033,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +99 ,1 ,-0.4671661581117620976,-0.0384311904110687663,1000.00000000000000000,0.00000000000000000000,-0.0004230769101426188,-0.0000384615384520558,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1039.21095094400448033,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +100 ,0 ,-0.3848736195733292175,-0.0387252747936235180,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,-0.0000384615384520558,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1046.85714489231327206,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +100 ,1 ,-0.3848736195733292175,-0.0387252747936235180,1000.00000000000000000,0.00000000000000000000,-0.0003461538389849795,-0.0000384615384520558,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1046.85714489231327206,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +101 ,0 ,-0.2830581877053079398,-0.0363984228964566100,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,-0.0000384615384520558,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.358995551057773809,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +101 ,1 ,-0.2830581877053079398,-0.0363984228964566100,1000.00000000000000000,0.00000000000000000000,-0.0002692307657790926,-0.0000384615384520558,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.358995551057773809,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +102 ,0 ,-0.2083777720035789038,-0.0376370931230382288,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,-0.0000384615384520558,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.56442145012010769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +102 ,1 ,-0.2083777720035789038,-0.0376370931230382288,1000.00000000000000000,0.00000000000000000000,-0.0001923076909801243,-0.0000384615384520558,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.56442145012010769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +103 ,0 ,-0.1227857232810207616,-0.0368901129927648591,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,-0.0000384615384520558,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.142938058224103770,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +103 ,1 ,-0.1227857232810207616,-0.0368901129927648591,1000.00000000000000000,0.00000000000000000000,-0.0001153846150432407,-0.0000384615384520558,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.142938058224103770,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +104 ,0 ,-0.0393939750956869144,-0.0353555135845138174,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,-0.0000384615384520558,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.243353433859965662,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +104 ,1 ,-0.0393939750956869144,-0.0353555135845138174,1000.00000000000000000,0.00000000000000000000,-0.0000384615384236079,-0.0000384615384520558,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.243353433859965662,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +105 ,0 ,0.04192579913549479564,-0.0378873376261943534,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,-0.0000384615384520558,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1025.07077853378359577,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +105 ,1 ,0.04192579913549479564,-0.0378873376261943534,1000.00000000000000000,0.00000000000000000000,0.00003846153842360791,-0.0000384615384520558,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1025.07077853378359577,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +106 ,0 ,0.12391865911007758638,-0.0372677582701413170,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,-0.0000384615384520558,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1008.96171527243291166,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +106 ,1 ,0.12391865911007758638,-0.0372677582701413170,1000.00000000000000000,0.00000000000000000000,0.00011538461504324078,-0.0000384615384520558,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1008.96171527243291166,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +107 ,0 ,0.19989324962672178065,-0.0359401886363708358,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,-0.0000384615384520558,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,974.444904785890457787,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +107 ,1 ,0.19989324962672178065,-0.0359401886363708358,1000.00000000000000000,0.00000000000000000000,0.00019230769098012445,-0.0000384615384520558,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,974.444904785890457787,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +108 ,0 ,0.29403236393330939302,-0.0379661623773123665,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,-0.0000384615384520558,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.12022206335723240,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +108 ,1 ,0.29403236393330939302,-0.0379661623773123665,1000.00000000000000000,0.00000000000000000000,0.00026923076577909266,-0.0000384615384520558,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.12022206335723240,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +109 ,0 ,0.38329686358966752468,-0.0385500796807426646,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,-0.0000384615384520558,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1042.30207195628804583,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +109 ,1 ,0.38329686358966752468,-0.0385500796807426646,1000.00000000000000000,0.00000000000000000000,0.00034615383898497955,-0.0000384615384520558,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1042.30207195628804583,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +110 ,0 ,0.45947207964870923069,-0.0377317287113979257,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,-0.0000384615384520558,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1021.02494674807871888,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +110 ,1 ,0.45947207964870923069,-0.0377317287113979257,1000.00000000000000000,0.00000000000000000000,0.00042307691014261891,-0.0000384615384520558,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1021.02494674807871888,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +111 ,0 ,0.54943897879719960641,-0.0382260769685557472,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,-0.0000384615384520558,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1033.87800143735125857,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +111 ,1 ,0.54943897879719960641,-0.0382260769685557472,1000.00000000000000000,0.00000000000000000000,0.00049999997879684445,-0.0000384615384520558,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1033.87800143735125857,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +112 ,0 ,-0.5110151574692605169,-0.1058111952763801794,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,-0.0001153846151285844,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,957.030361185549509173,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +112 ,1 ,-0.5110151574692605169,-0.1058111952763801794,1000.00000000000000000,0.00000000000000000000,-0.0004999999758382646,-0.0001153846151285844,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,957.030361185549509173,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +113 ,0 ,-0.4375410852965806451,-0.1072140061161002827,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,-0.0001153846151285844,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.188055156767632070,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +113 ,1 ,-0.4375410852965806451,-0.1072140061161002827,1000.00000000000000000,0.00000000000000000000,-0.0004230769076392051,-0.0001153846151285844,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.188055156767632070,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +114 ,0 ,-0.3640360372830070967,-0.1092299639243873299,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,-0.0001153846151285844,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.659689534023755186,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +114 ,1 ,-0.3640360372830070967,-0.1092299639243873299,1000.00000000000000000,0.00000000000000000000,-0.0003461538369367320,-0.0001153846151285844,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.659689534023755186,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +115 ,0 ,-0.2767299135054704928,-0.1064831515793103478,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,-0.0001153846151285844,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,962.853982490533098825,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +115 ,1 ,-0.2767299135054704928,-0.1064831515793103478,1000.00000000000000000,0.00000000000000000000,-0.0002692307641860112,-0.0001153846151285844,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,962.853982490533098825,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +116 ,0 ,-0.1989678468804907396,-0.1072653246990218772,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,-0.0001153846151285844,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.632816209741804414,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +116 ,1 ,-0.1989678468804907396,-0.1072653246990218772,1000.00000000000000000,0.00000000000000000000,-0.0001923076898422090,-0.0001153846151285844,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.632816209741804414,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +117 ,0 ,-0.1265011152390264348,-0.1143857314158090165,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,-0.0001153846151285844,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.34300789216081284,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +117 ,1 ,-0.1265011152390264348,-0.1143857314158090165,1000.00000000000000000,0.00000000000000000000,-0.0001153846143604915,-0.0001153846151285844,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.34300789216081284,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +118 ,0 ,-0.0394516961764171461,-0.1062397044331585271,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,-0.0001153846151285844,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.744107219202419400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +118 ,1 ,-0.0394516961764171461,-0.1062397044331585271,1000.00000000000000000,0.00000000000000000000,-0.0000384615381960248,-0.0001153846151285844,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.744107219202419400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +119 ,0 ,0.04081022216522532664,-0.1103152824186747898,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,-0.0001153846151285844,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,996.065783172053102134,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +119 ,1 ,0.04081022216522532664,-0.1103152824186747898,1000.00000000000000000,0.00000000000000000000,0.00003846153819602484,-0.0001153846151285844,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,996.065783172053102134,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +120 ,0 ,0.11933722941635908909,-0.1072218455454530816,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,-0.0001153846151285844,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.255996877975690040,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +120 ,1 ,0.11933722941635908909,-0.1072218455454530816,1000.00000000000000000,0.00000000000000000000,0.00011538461436049158,-0.0001153846151285844,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.255996877975690040,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +121 ,0 ,0.19719055412745098432,-0.1061989490358927479,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,-0.0001153846151285844,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.390893775448489577,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +121 ,1 ,0.19719055412745098432,-0.1061989490358927479,1000.00000000000000000,0.00000000000000000000,0.00019230768984220914,-0.0001153846151285844,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.390893775448489577,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +122 ,0 ,0.29163068243960604819,-0.1128691955137149649,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,-0.0001153846151285844,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.19969671151511647,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +122 ,1 ,0.29163068243960604819,-0.1128691955137149649,1000.00000000000000000,0.00000000000000000000,0.00026923076418601120,-0.0001153846151285844,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.19969671151511647,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +123 ,0 ,0.38215206320044836640,-0.1152686393775947809,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,-0.0001153846151285844,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.99487691128365440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +123 ,1 ,0.38215206320044836640,-0.1152686393775947809,1000.00000000000000000,0.00000000000000000000,0.00034615383693673202,-0.0001153846151285844,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.99487691128365440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +124 ,0 ,0.46208738440286961646,-0.1139084515563264510,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,-0.0001153846151285844,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.20658243413367927,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +124 ,1 ,0.46208738440286961646,-0.1139084515563264510,1000.00000000000000000,0.00000000000000000000,0.00042307690763920520,-0.0001153846151285844,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.20658243413367927,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +125 ,0 ,0.53614465219669282802,-0.1116103097116146469,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,-0.0001153846151285844,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1007.28935306910284452,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +125 ,1 ,0.53614465219669282802,-0.1116103097116146469,1000.00000000000000000,0.00000000000000000000,0.00049999997583826468,-0.0001153846151285844,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1007.28935306910284452,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +126 ,0 ,-0.5165993019461145863,-0.1784997415710051771,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,-0.0001923076911223638,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,968.198662136920574994,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +126 ,1 ,-0.5165993019461145863,-0.1784997415710051771,1000.00000000000000000,0.00000000000000000000,-0.0004999999699211052,-0.0001923076911223638,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,968.198662136920574994,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +127 ,0 ,-0.4353152688955022608,-0.1776782768935550593,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,-0.0001923076911223638,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,963.927045787850943270,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +127 ,1 ,-0.4353152688955022608,-0.1776782768935550593,1000.00000000000000000,0.00000000000000000000,-0.0004230769026323778,-0.0001923076911223638,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,963.927045787850943270,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +128 ,0 ,-0.3857209022907011064,-0.1940970889865526183,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,-0.0001923076911223638,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1049.30486919768236475,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +128 ,1 ,-0.3857209022907011064,-0.1940970889865526183,1000.00000000000000000,0.00000000000000000000,-0.0003461538328402369,-0.0001923076911223638,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1049.30486919768236475,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +129 ,0 ,-0.2864414253349025774,-0.1844087150929076823,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,-0.0001923076911223638,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.925324640203712078,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +129 ,1 ,-0.2864414253349025774,-0.1844087150929076823,1000.00000000000000000,0.00000000000000000000,-0.0002692307609998483,-0.0001923076911223638,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.925324640203712078,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +130 ,0 ,-0.2063959446691524257,-0.1862036405621988466,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,-0.0001923076911223638,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1008.25893713804748585,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +130 ,1 ,-0.2063959446691524257,-0.1862036405621988466,1000.00000000000000000,0.00000000000000000000,-0.0001923076875663784,-0.0001923076911223638,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1008.25893713804748585,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +131 ,0 ,-0.1260910642998142039,-0.1899594690158281917,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,-0.0001923076911223638,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.78924521729913976,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +131 ,1 ,-0.1260910642998142039,-0.1899594690158281917,1000.00000000000000000,0.00000000000000000000,-0.0001153846129949931,-0.0001923076911223638,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.78924521729913976,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +132 ,0 ,-0.0424235947522043771,-0.1919256685787037730,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,-0.0001923076911223638,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.01348300727136120,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +132 ,1 ,-0.0424235947522043771,-0.1919256685787037730,1000.00000000000000000,0.00000000000000000000,-0.0000384615377408587,-0.0001923076911223638,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.01348300727136120,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +133 ,0 ,0.04158609551071743709,-0.1877381723186156425,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,-0.0001923076911223638,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1016.23850232059851350,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +133 ,1 ,0.04158609551071743709,-0.1877381723186156425,1000.00000000000000000,0.00000000000000000000,0.00003846153774085871,-0.0001923076911223638,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1016.23850232059851350,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +134 ,0 ,0.11777411926471503811,-0.1760978937556942069,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,-0.0001923076911223638,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,955.709053420321197336,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +134 ,1 ,0.11777411926471503811,-0.1760978937556942069,1000.00000000000000000,0.00000000000000000000,0.00011538461299499319,-0.0001923076911223638,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,955.709053420321197336,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +135 ,0 ,0.20820763827111707366,-0.1880153341976636693,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,-0.0001923076911223638,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.67974410053159317,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +135 ,1 ,0.20820763827111707366,-0.1880153341976636693,1000.00000000000000000,0.00000000000000000000,0.00019230768756637849,-0.0001923076911223638,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.67974410053159317,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +136 ,0 ,0.28622487428337456405,-0.1842540357666122008,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,-0.0001923076911223638,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.120992138509564028,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +136 ,1 ,0.28622487428337456405,-0.1842540357666122008,1000.00000000000000000,0.00000000000000000000,0.00026923076099984833,-0.0001923076911223638,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.120992138509564028,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +137 ,0 ,0.36162628038646837946,-0.1807111874963099606,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,-0.0001923076911223638,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,979.698181019385060608,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +137 ,1 ,0.36162628038646837946,-0.1807111874963099606,1000.00000000000000000,0.00000000000000000000,0.00034615383284023691,-0.0001923076911223638,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,979.698181019385060608,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +138 ,0 ,0.45634646534559597519,-0.1872379120466295676,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,-0.0001923076911223638,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1013.63714889023685827,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +138 ,1 ,0.45634646534559597519,-0.1872379120466295676,1000.00000000000000000,0.00000000000000000000,0.00042307690263237795,-0.0001923076911223638,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1013.63714889023685827,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +139 ,0 ,0.50891093546187715634,-0.1755426773789422190,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,-0.0001923076911223638,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,952.821928243415527504,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +139 ,1 ,0.50891093546187715634,-0.1755426773789422190,1000.00000000000000000,0.00000000000000000000,0.00049999996992110523,-0.0001923076911223638,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,952.821928243415527504,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +140 ,0 ,-0.5093776748522763631,-0.2460110725931239916,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,-0.0002692307659782278,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.755424010939577783,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +140 ,1 ,-0.5093776748522763631,-0.2460110725931239916,1000.00000000000000000,0.00000000000000000000,-0.0004999999610453660,-0.0002692307659782278,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.755424010939577783,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +141 ,0 ,-0.4610784671311338178,-0.2651443541210095622,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,-0.0002692307659782278,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1024.82189911591649433,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +141 ,1 ,-0.4610784671311338178,-0.2651443541210095622,1000.00000000000000000,0.00000000000000000000,-0.0004230768951221369,-0.0002692307659782278,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1024.82189911591649433,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +142 ,0 ,-0.3687491041817552717,-0.2585356399238037949,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,-0.0002692307659782278,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.27524608689316210,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +142 ,1 ,-0.3687491041817552717,-0.2585356399238037949,1000.00000000000000000,0.00000000000000000000,-0.0003461538266954942,-0.0002692307659782278,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.27524608689316210,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +143 ,0 ,-0.2920917443747613750,-0.2638225235574506721,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,-0.0002692307659782278,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1019.91224267767029232,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +143 ,1 ,-0.2920917443747613750,-0.2638225235574506721,1000.00000000000000000,0.00000000000000000000,-0.0002692307562206040,-0.0002692307659782278,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1019.91224267767029232,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +144 ,0 ,-0.2089453775998306450,-0.2642543062107428619,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,-0.0002692307659782278,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1021.51600683784499778,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +144 ,1 ,-0.2089453775998306450,-0.2642543062107428619,1000.00000000000000000,0.00000000000000000000,-0.0001923076841526324,-0.0002692307659782278,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1021.51600683784499778,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +145 ,0 ,-0.1282282280461522760,-0.2709299754365385171,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,-0.0002692307659782278,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1046.31134997606363867,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +145 ,1 ,-0.1282282280461522760,-0.2709299754365385171,1000.00000000000000000,0.00000000000000000000,-0.0001153846109467456,-0.0002692307659782278,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1046.31134997606363867,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +146 ,0 ,-0.0405401372088698766,-0.2555117361923200935,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,-0.0002692307659782278,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,989.043603519979683369,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +146 ,1 ,-0.0405401372088698766,-0.2555117361923200935,1000.00000000000000000,0.00000000000000000000,-0.0000384615370581095,-0.0002692307659782278,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,989.043603519979683369,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +147 ,0 ,0.04095123455543604046,-0.2583894176885224713,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,-0.0002692307659782278,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.732134920715338921,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +147 ,1 ,0.04095123455543604046,-0.2583894176885224713,1000.00000000000000000,0.00000000000000000000,0.00003846153705810951,-0.0002692307659782278,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.732134920715338921,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +148 ,0 ,0.12805986104381547607,-0.2705371190873888109,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,-0.0002692307659782278,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1044.85216923302232316,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +148 ,1 ,0.12805986104381547607,-0.2705371190873888109,1000.00000000000000000,0.00000000000000000000,0.00011538461094674560,-0.0002692307659782278,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1044.85216923302232316,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +149 ,0 ,0.20906449352578945766,-0.2644210685121423098,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,-0.0002692307659782278,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1022.13540967909739265,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +149 ,1 ,0.20906449352578945766,-0.2644210685121423098,1000.00000000000000000,0.00000000000000000000,0.00019230768415263250,-0.0002692307659782278,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1022.13540967909739265,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +150 ,0 ,0.27573900173887605502,-0.2474697803288993247,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,-0.0002692307659782278,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.173481380702810383,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +150 ,1 ,0.27573900173887605502,-0.2474697803288993247,1000.00000000000000000,0.00000000000000000000,0.00026923075622060400,-0.0002692307659782278,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.173481380702810383,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +151 ,0 ,0.37766902569121274524,-0.2654733569595582043,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,-0.0002692307659782278,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1026.04390967386007105,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +151 ,1 ,0.37766902569121274524,-0.2654733569595582043,1000.00000000000000000,0.00000000000000000000,0.00034615382669549426,-0.0002692307659782278,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1026.04390967386007105,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +152 ,0 ,0.46560062786059353001,-0.2680220929224102488,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,-0.0002692307659782278,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1035.51064336453396208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +152 ,1 ,0.46560062786059353001,-0.2680220929224102488,1000.00000000000000000,0.00000000000000000000,0.00042307689512213698,-0.0002692307659782278,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1035.51064336453396208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +153 ,0 ,0.53302740372979684480,-0.2587455428270017954,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,-0.0002692307659782278,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1001.05488545104708464,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +153 ,1 ,0.53302740372979684480,-0.2587455428270017954,1000.00000000000000000,0.00000000000000000000,0.00049999996104536600,-0.0002692307659782278,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1001.05488545104708464,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +154 ,0 ,-0.5082175167712038588,-0.3154967692569145554,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,-0.0003461538392410105,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,951.435130187195454709,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +154 ,1 ,-0.5082175167712038588,-0.3154967692569145554,1000.00000000000000000,0.00000000000000000000,-0.0004999999492110472,-0.0003461538392410105,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,951.435130187195454709,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +155 ,0 ,-0.4614899950551638041,-0.3412365941560488447,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,-0.0003461538392410105,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1025.79462582524001845,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +155 ,1 ,-0.4614899950551638041,-0.3412365941560488447,1000.00000000000000000,0.00000000000000000000,-0.0004230768851084824,-0.0003461538392410105,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1025.79462582524001845,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +156 ,0 ,-0.3626953215533518237,-0.3263491880887234297,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,-0.0003461538392410105,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,982.786562994077712573,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +156 ,1 ,-0.3626953215533518237,-0.3263491880887234297,1000.00000000000000000,0.00000000000000000000,-0.0003461538185025041,-0.0003461538392410105,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,982.786562994077712573,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +157 ,0 ,-0.2796871705442759981,-0.3232516543900293415,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,-0.0003461538392410105,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,973.838132130257690732,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +157 ,1 ,-0.2796871705442759981,-0.3232516543900293415,1000.00000000000000000,0.00000000000000000000,-0.0002692307498482782,-0.0003461538392410105,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,973.838132130257690732,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +158 ,0 ,-0.2098531265040638749,-0.3413894902391358954,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,-0.0003461538392410105,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1026.23632562964576209,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +158 ,1 ,-0.2098531265040638749,-0.3413894902391358954,1000.00000000000000000,0.00000000000000000000,-0.0001923076796009712,-0.0003461538392410105,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1026.23632562964576209,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +159 ,0 ,-0.1202513503105780701,-0.3244079113462917662,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,-0.0003461538392410105,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,977.178430070611739211,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +159 ,1 ,-0.1202513503105780701,-0.3244079113462917662,1000.00000000000000000,0.00000000000000000000,-0.0001153846082157488,-0.0003461538392410105,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,977.178430070611739211,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +160 ,0 ,-0.0414700648859237588,-0.3368844442221031187,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,-0.0003461538392410105,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1013.22174798720004673,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +160 ,1 ,-0.0414700648859237588,-0.3368844442221031187,1000.00000000000000000,0.00000000000000000000,-0.0000384615361477772,-0.0003461538392410105,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1013.22174798720004673,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +161 ,0 ,0.04045266991164696290,-0.3277278890856339943,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,-0.0003461538392410105,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.769477064693091961,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +161 ,1 ,0.04045266991164696290,-0.3277278890856339943,1000.00000000000000000,0.00000000000000000000,0.00003846153614777726,-0.0003461538392410105,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.769477064693091961,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +162 ,0 ,0.12134388847713498127,-0.3276855259841459644,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,-0.0003461538392410105,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.647094769061482111,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +162 ,1 ,0.12134388847713498127,-0.3276855259841459644,1000.00000000000000000,0.00000000000000000000,0.00011538460821574884,-0.0003461538392410105,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.647094769061482111,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +163 ,0 ,0.20411972004592765506,-0.3310693581386857098,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,-0.0003461538392410105,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,996.422610077397393979,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +163 ,1 ,0.20411972004592765506,-0.3310693581386857098,1000.00000000000000000,0.00000000000000000000,0.00019230767960097126,-0.0003461538392410105,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,996.422610077397393979,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +164 ,0 ,0.29776143610491700997,-0.3464899970340372115,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,-0.0003461538392410105,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.97112333139853035,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +164 ,1 ,0.29776143610491700997,-0.3464899970340372115,1000.00000000000000000,0.00000000000000000000,0.00026923074984827827,-0.0003461538392410105,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.97112333139853035,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +165 ,0 ,0.35704723470075883096,-0.3207011008977465049,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,-0.0003461538392410105,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,966.469866338737688238,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +165 ,1 ,0.35704723470075883096,-0.3207011008977465049,1000.00000000000000000,0.00000000000000000000,0.00034615381850250414,-0.0003461538392410105,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,966.469866338737688238,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +166 ,0 ,0.45815933052972990235,-0.3385115048087374844,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,-0.0003461538392410105,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.92214533134608700,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +166 ,1 ,0.45815933052972990235,-0.3385115048087374844,1000.00000000000000000,0.00000000000000000000,0.00042307688510848247,-0.0003461538392410105,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.92214533134608700,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +167 ,0 ,0.54817411765168255755,-0.3431590336623863146,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,-0.0003461538392410105,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.34834006556934582,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +167 ,1 ,0.54817411765168255755,-0.3431590336623863146,1000.00000000000000000,0.00000000000000000000,0.00049999994921104721,-0.0003461538392410105,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.34834006556934582,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +168 ,0 ,-0.5554612864956958162,-0.4255826718745283621,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,-0.0004230769104555456,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1045.92271017848679548,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +168 ,1 ,-0.5554612864956958162,-0.4255826718745283621,1000.00000000000000000,0.00000000000000000000,-0.0004999999344181487,-0.0004230769104555456,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1045.92271017848679548,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +169 ,0 ,-0.4467314773266597982,-0.4023084379235626339,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,-0.0004230769104555456,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.910882835072015950,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +169 ,1 ,-0.4467314773266597982,-0.4023084379235626339,1000.00000000000000000,0.00000000000000000000,-0.0004230768725914143,-0.0004230769104555456,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.910882835072015950,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +170 ,0 ,-0.3625074008966603922,-0.3986415572663759010,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,-0.0004230769104555456,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,982.243710114068676375,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +170 ,1 ,-0.3625074008966603922,-0.3986415572663759010,1000.00000000000000000,0.00000000000000000000,-0.0003461538082612664,-0.0004230769104555456,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,982.243710114068676375,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +171 ,0 ,-0.2997457191473566484,-0.4266059421297224707,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,-0.0004230769104555456,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1048.34134903564472551,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +171 ,1 ,-0.2997457191473566484,-0.4266059421297224707,1000.00000000000000000,0.00000000000000000000,-0.0002692307418828711,-0.0004230769104555456,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1048.34134903564472551,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +172 ,0 ,-0.2045751359667724311,-0.4056422500206230408,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,-0.0004230769104555456,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.790802572291568139,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +172 ,1 ,-0.2045751359667724311,-0.4056422500206230408,1000.00000000000000000,0.00000000000000000000,-0.0001923076739113946,-0.0004230769104555456,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.790802572291568139,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +173 ,0 ,-0.1260404338701763271,-0.4177252074985165486,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,-0.0004230769104555456,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.35052109931598351,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +173 ,1 ,-0.1260404338701763271,-0.4177252074985165486,1000.00000000000000000,0.00000000000000000000,-0.0001153846048020029,-0.0004230769104555456,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.35052109931598351,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +174 ,0 ,-0.0404031815684558828,-0.4000119453090338339,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,-0.0004230769104555456,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,985.482809220617355094,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +174 ,1 ,-0.0404031815684558828,-0.4000119453090338339,1000.00000000000000000,0.00000000000000000000,-0.0000384615350098619,-0.0004230769104555456,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,985.482809220617355094,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +175 ,0 ,0.04221397530242154000,-0.4199306775760120458,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,-0.0004230769104555456,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1032.56345052891015257,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +175 ,1 ,0.04221397530242154000,-0.4199306775760120458,1000.00000000000000000,0.00000000000000000000,0.00003846153500986195,-0.0004230769104555456,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1032.56345052891015257,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +176 ,0 ,0.12068148817188632804,-0.3980757387221393606,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,-0.0004230769104555456,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,980.906320787794129500,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +176 ,1 ,0.12068148817188632804,-0.3980757387221393606,1000.00000000000000000,0.00000000000000000000,0.00011538460480200291,-0.0004230769104555456,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,980.906320787794129500,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +177 ,0 ,0.20698586105614699692,-0.4109458455663741460,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,-0.0004230769104555456,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1011.32657423622038095,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +177 ,1 ,0.20698586105614699692,-0.4109458455663741460,1000.00000000000000000,0.00000000000000000000,0.00019230767391139474,-0.0004230769104555456,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1011.32657423622038095,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +178 ,0 ,0.27497266042598367263,-0.3876768470602894312,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,-0.0004230769104555456,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,956.327121581075289213,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +178 ,1 ,0.27497266042598367263,-0.3876768470602894312,1000.00000000000000000,0.00000000000000000000,0.00026923074188287118,-0.0004230769104555456,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,956.327121581075289213,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +179 ,0 ,0.38120121258723310697,-0.4214895511521338788,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,-0.0004230769104555456,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1036.24806090966421834,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +179 ,1 ,0.38120121258723310697,-0.4214895511521338788,1000.00000000000000000,0.00000000000000000000,0.00034615380826126648,-0.0004230769104555456,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1036.24806090966421834,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +180 ,0 ,0.45730106460040570448,-0.4128780261432553055,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,-0.0004230769104555456,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1015.89354664509198755,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +180 ,1 ,0.45730106460040570448,-0.4128780261432553055,1000.00000000000000000,0.00000000000000000000,0.00042307687259141442,-0.0004230769104555456,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1015.89354664509198755,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +181 ,0 ,0.55182636701233589437,-0.4225069704615588284,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,-0.0004230769104555456,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.65287025822817668,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +181 ,1 ,0.55182636701233589437,-0.4225069704615588284,1000.00000000000000000,0.00000000000000000000,0.00049999993441814875,-0.0004230769104555456,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.65287025822817668,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +182 ,0 ,-0.5112653589180122803,-0.4587654187636883151,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,-0.0004999999791666669,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,957.530877424496225103,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +182 ,1 ,-0.5112653589180122803,-0.4587654187636883151,1000.00000000000000000,0.00000000000000000000,-0.0004999999166666708,-0.0004999999791666669,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,957.530877424496225103,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +183 ,0 ,-0.4346125900337609038,-0.4611331153967458407,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,-0.0004999999791666669,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,962.266270887919176857,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +183 ,1 ,-0.4346125900337609038,-0.4611331153967458407,1000.00000000000000000,0.00000000000000000000,-0.0004230768575709328,-0.0004999999791666669,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,962.266270887919176857,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +184 ,0 ,-0.3770328040109403033,-0.4921029920290715953,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,-0.0004999999791666669,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1024.20602673339385546,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +184 ,1 ,-0.3770328040109403033,-0.4921029920290715953,1000.00000000000000000,0.00000000000000000000,-0.0003461537959717815,-0.0004999999791666669,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1024.20602673339385546,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +185 ,0 ,-0.2824235127156454194,-0.4720008562729245960,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,-0.0004999999791666669,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,984.001753545921928889,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +185 ,1 ,-0.2824235127156454194,-0.4720008562729245960,1000.00000000000000000,0.00000000000000000000,-0.0002692307323243828,-0.0004999999791666669,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,984.001753545921928889,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +186 ,0 ,-0.1987072677013288768,-0.4641389393524581463,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,-0.0004999999791666669,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,968.277919049829279174,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +186 ,1 ,-0.1987072677013288768,-0.4641389393524581463,1000.00000000000000000,0.00000000000000000000,-0.0001923076670839029,-0.0004999999791666669,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,968.277919049829279174,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +187 ,0 ,-0.1222476834307649751,-0.4772400040733256743,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,-0.0004999999791666669,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,994.480049583319441808,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +187 ,1 ,-0.1222476834307649751,-0.4772400040733256743,1000.00000000000000000,0.00000000000000000000,-0.0001153846007055078,-0.0004999999791666669,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,994.480049583319441808,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +188 ,0 ,-0.0408474977772842889,-0.4785175127707315123,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,-0.0004999999791666669,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.035067084590195918,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +188 ,1 ,-0.0408474977772842889,-0.4785175127707315123,1000.00000000000000000,0.00000000000000000000,-0.0000384615336443635,-0.0004999999791666669,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.035067084590195918,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +189 ,0 ,0.04195441431265894277,-0.4929074289333095215,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,-0.0004999999791666669,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1025.81490060890610038,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +189 ,1 ,0.04195441431265894277,-0.4929074289333095215,1000.00000000000000000,0.00000000000000000000,0.00003846153364436359,-0.0004999999791666669,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1025.81490060890610038,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +190 ,0 ,0.12757958402373870132,-0.5003449086195554951,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,-0.0004999999791666669,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.68986060118800196,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +190 ,1 ,0.12757958402373870132,-0.5003449086195554951,1000.00000000000000000,0.00000000000000000000,0.00011538460070550785,-0.0004999999791666669,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.68986060118800196,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +191 ,0 ,0.19716893003488014657,-0.4601392610617319745,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,-0.0004999999791666669,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.278562135070501426,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +191 ,1 ,0.19716893003488014657,-0.4601392610617319745,1000.00000000000000000,0.00000000000000000000,0.00019230766708390299,-0.0004999999791666669,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.278562135070501426,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +192 ,0 ,0.27595028946731137153,-0.4599791548075489178,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,-0.0004999999791666669,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.958349613362088348,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +192 ,1 ,0.27595028946731137153,-0.4599791548075489178,1000.00000000000000000,0.00000000000000000000,0.00026923073232438285,-0.0004999999791666669,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.958349613362088348,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +193 ,0 ,0.36404650149313255713,-0.4733449975655781849,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,-0.0004999999791666669,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.690036243240911062,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +193 ,1 ,0.36404650149313255713,-0.4733449975655781849,1000.00000000000000000,0.00000000000000000000,0.00034615379597178157,-0.0004999999791666669,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.690036243240911062,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +194 ,0 ,0.45738722680279103594,-0.4880485982605994310,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,-0.0004999999791666669,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1016.09723885858340963,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +194 ,1 ,0.45738722680279103594,-0.4880485982605994310,1000.00000000000000000,0.00000000000000000000,0.00042307685757093292,-0.0004999999791666669,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1016.09723885858340963,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +195 ,0 ,0.54003956379788653485,-0.4875396272403385578,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,-0.0004999999791666669,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1015.07929677564732173,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +195 ,1 ,0.54003956379788653485,-0.4875396272403385578,1000.00000000000000000,0.00000000000000000000,0.00049999991666667084,-0.0004999999791666669,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1015.07929677564732173,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +196 ,0 ,-0.5387730364695781926,0.48627309975371429962,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1012.54624169685496326,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +196 ,1 ,-0.5387730364695781926,0.48627309975371429962,1000.00000000000000000,0.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1012.54624169685496326,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +197 ,0 ,-0.4315082647603292742,0.45746436693115022364,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,954.928773650999005440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +197 ,1 ,-0.4315082647603292742,0.45746436693115022364,1000.00000000000000000,0.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,954.928773650999005440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +198 ,0 ,-0.3606233002491213701,0.46840037303565268400,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,976.800786771337698155,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +198 ,1 ,-0.3606233002491213701,0.46840037303565268400,1000.00000000000000000,0.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,976.800786771337698155,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +199 ,0 ,-0.2840745856529754420,0.47506713487767548986,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.134311010946930764,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +199 ,1 ,-0.2840745856529754420,0.47506713487767548986,1000.00000000000000000,0.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.134311010946930764,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneGratingDevAzMisVLS.rayui.csv b/Intern/RayCore/tests/output/PlaneGratingDevAzMisVLS.rayui.csv new file mode 100644 index 000000000..61b76aa68 --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneGratingDevAzMisVLS.rayui.csv @@ -0,0 +1,68 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-170.30092127167500848,1234.43413671559005706,0.00000000000000000000,-1.0000000000000000000,-0.1084051209471870030,0.77415339656600101747,0.62364641291179601090,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,598.113508530244985195,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-93.112380529189707090,673.148378875918979247,0.00000000000000000000,-1.0000000000000000000,-0.0801756837633638974,0.55966120124129703494,0.82483404364649304252,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,207.925166600273996664,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,-59.011964580084196541,427.527601098578998062,0.00000000000000000000,-1.0000000000000000000,-0.0584388627840900995,0.39598302082336500617,0.91639639159923802491,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,87.0710773668347002285,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,-38.523825366125201696,281.972733354691001750,0.00000000000000000000,-1.0000000000000000000,-0.0422497011285715012,0.27473669451828697241,0.96059081373897803324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,36.9787274093395978979,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-24.863779144032498891,186.801059693268001637,0.00000000000000000000,-1.0000000000000000000,-0.0304781063550668002,0.18696267123686599598,0.98189411068454102160,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,14.4398716768792994002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-256.39919311109201771,1809.84923424940006952,0.00000000000000000000,-1.0000000000000000000,-0.1214279459656460030,0.86981777526283898804,0.47819691736288799654,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1084.73167715955992207,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,-120.41809110151200457,821.986397467831011454,0.00000000000000000000,-1.0000000000000000000,-0.0907765665113915015,0.63537821183591303153,0.76684688360623898262,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,299.427656190771983801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,-76.346593589821893033,504.008813382769005784,0.00000000000000000000,-1.0000000000000000000,-0.0666300650427584933,0.45305617825709898482,0.88898848911303096631,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,120.674350356993002719,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-51.851518754917897524,329.262393480704986359,0.00000000000000000000,-1.0000000000000000000,-0.0484517574565848999,0.31665670230605297286,0.94730193712671395545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,51.5858844903700983763,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-35.990869697327099174,217.966515130306987657,0.00000000000000000000,-1.0000000000000000000,-0.0351175383696048989,0.21706762740527199562,0.97552468120058599687,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,21.1107812498607998463,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,-25.105636334506900908,143.391341683174005083,0.00000000000000000000,-1.0000000000000000000,-0.0255521410154655008,0.14593413018799900049,0.98896426514601498691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,7.20661003969677960157,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,-17.460567836978299283,92.8172304020251033307,0.00000000000000000000,-1.0000000000000000000,-0.0188325796754524009,0.09620343207410760044,0.99518351754836198441,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.89615296659337695395,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-12.033210159334300826,58.7153624258777000477,0.00000000000000000000,-1.0000000000000000000,-0.0142041319052258006,0.06215966338559009846,0.99796513911288897702,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9041299632216399650,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-8.1399166899881798542,36.0295041129772997123,0.00000000000000000000,-1.0000000000000000000,-0.0110708730260002004,0.03931368821927540280,0.99916558672176003508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.1111774539008401063,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,-5.2970367821015598153,21.1702936926355995694,0.00000000000000000000,-1.0000000000000000000,-0.0089770063768353398,0.02424344744461959938,0.99966577845423398862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.6166705245554999770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,-3.1586517838254901668,11.5645017279361006501,0.00000000000000000000,-1.0000000000000000000,-0.0075850241803326196,0.01442032153207889987,0.99986725205653903536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8235861468907601512,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-1.4810528518186298896,5.39651590761636956727,0.00000000000000000000,-1.0000000000000000000,-0.0066535477231063795,0.00803827135128504059,0.99994555676615703987,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9074780302940999021,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-0.0975130198860574004,1.42310651246819008797,0.00000000000000000000,-1.0000000000000000000,-0.0060163747433045703,0.00385474499292124978,0.99997447176214804276,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9420221108572399693,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,-20.377968533720100197,69.3217104713750984501,0.00000000000000000000,-1.0000000000000000000,-0.0163562983088611987,0.07357453640586339438,0.99715558419852101668,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0535551930806799081,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,-15.962452838213799566,42.7551389983006018269,0.00000000000000000000,-1.0000000000000000000,-0.0127115691582933999,0.04689971452682629993,0.99881871868063998309,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-2.7259748021096998904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +20 ,0 ,-12.764343256320900721,25.2514126891333994251,0.00000000000000000000,-1.0000000000000000000,-0.0102655610164890005,0.02919583730136929983,0.99952099594820298378,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.4341522780808899639,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +21 ,0 ,-10.389749549580599818,13.8851708203192991675,0.00000000000000000000,-1.0000000000000000000,-0.0086381161649907497,0.01761277164930169850,0.99980756809695603415,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.7265464975156401550,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +22 ,0 ,-8.5590379372971607807,6.57525510671036972354,0.00000000000000000000,-1.0000000000000000000,-0.0075536131676018003,0.01008737968622789964,0.99992059069667105219,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8455676819989998982,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +23 ,0 ,-7.0785467173482103930,1.87847431320879998395,0.00000000000000000000,-1.0000000000000000000,-0.0068194229794924501,0.00517916066834113973,0.99996333521034597158,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8943862550460202065,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +24 ,0 ,-5.8187061236987602796,-1.1714957320137500129,0.00000000000000000000,-1.0000000000000000000,-0.0063061525935062699,0.00192107289841082990,0.99997827072311296081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9153958395961598881,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +25 ,0 ,-4.6960080650904698629,-3.1977414227668101709,0.00000000000000000000,-1.0000000000000000000,-0.0059302578889001396,-0.0003110428408639729,0.99998236749140800849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9255313703234802069,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +26 ,0 ,-3.6581114451243501584,-4.5909078033699799448,0.00000000000000000000,-1.0000000000000000000,-0.0056393302718077799,-0.0019086467457978600,0.99998227735379596747,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9314301046279100937,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +27 ,0 ,-2.6719112657130601462,-5.5981158173879599360,0.00000000000000000000,-1.0000000000000000000,-0.0054002070981858697,-0.0031194082357093801,0.99998055333869195759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9356393832126701504,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +28 ,0 ,-1.7145404183834700440,-6.3900853268305102261,0.00000000000000000000,-1.0000000000000000000,-0.0051899751160073897,-0.0041144319333414900,0.99997806756356399926,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9390293691092201910,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +29 ,0 ,-0.7673028672735170419,-7.1064110834257903093,0.00000000000000000000,-1.0000000000000000000,-0.0049898970864903097,-0.0050336242129289700,0.99997488146170399048,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9416613374106601597,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +30 ,0 ,0.18745932927468100803,-7.8789479935196595761,0.00000000000000000000,-1.0000000000000000000,-0.0047822740877862899,-0.0060091270133781895,0.99997050968870404563,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9430509685375900730,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +31 ,0 ,1.16656345481277989861,-8.8332828455944092382,0.00000000000000000000,-1.0000000000000000000,-0.0045502485604280596,-0.0071667894034520701,0.99996396553460098477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9422136178675399875,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +32 ,0 ,-10.525904252462099819,-4.9810555389897297473,0.00000000000000000000,-1.0000000000000000000,-0.0063289258182603301,-0.0014315073121624200,0.99997894752079796720,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8891582319093900288,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +33 ,0 ,-9.5229959299253792437,-6.1129606993655603019,0.00000000000000000000,-1.0000000000000000000,-0.0060730689316291696,-0.0027672261297635200,0.99997772989866995363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8943460988349398732,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +34 ,0 ,-8.5569149287387897828,-6.9699190520973504092,0.00000000000000000000,-1.0000000000000000000,-0.0058541165216328796,-0.0038273699648955598,0.99997553998030497268,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8985045863198601878,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +35 ,0 ,-7.6078974313088902903,-7.6994908745455603593,0.00000000000000000000,-1.0000000000000000000,-0.0056522630400350900,-0.0047598274278414700,0.99997269760998097609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9019528187339997948,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +36 ,0 ,-6.6580708983150600488,-8.4351308089679104540,0.00000000000000000000,-1.0000000000000000000,-0.0054495953457884003,-0.0056983441720486801,0.99996891490899098009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9044035128592899930,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +37 ,0 ,-5.6901324856631401161,-9.3060515125357401444,0.00000000000000000000,-1.0000000000000000000,-0.0052287694806865897,-0.0067724051307588703,0.99996339657932598043,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9050630267838601916,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +38 ,0 ,-4.6889639631503499117,-10.425163638715000402,0.00000000000000000000,-1.0000000000000000000,-0.0049746300038468402,-0.0080951438809297691,0.99995485983211795932,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9026511871177298473,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +39 ,0 ,-3.6461850693603299333,-11.855071564426300056,0.00000000000000000000,-1.0000000000000000000,-0.0046787750857984200,-0.0097292605540781201,0.99994172357831301312,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8955899791997099512,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +40 ,0 ,-2.5676500908441100001,-13.552079728430399541,0.00000000000000000000,-1.0000000000000000000,-0.0043470731598403500,-0.0116309144335319004,0.99992290942071204717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8828027544224101852,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +41 ,0 ,-1.4838962806478499523,-15.288134261060200458,0.00000000000000000000,-1.0000000000000000000,-0.0040101391361863697,-0.0135715443860686992,0.99989986096963001660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8657295300443998975,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +42 ,0 ,-0.4635499362432469738,-16.550657768050399454,0.00000000000000000000,-1.0000000000000000000,-0.0037367722441523599,-0.0150376052184298999,0.99987994627479603870,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8517235097506299368,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +43 ,0 ,0.37033496578336899673,-16.420513243227798483,0.00000000000000000000,-1.0000000000000000000,-0.0036503278470094301,-0.0151083828872781000,0.99987919864008600878,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8567878095080900813,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +44 ,0 ,0.82111995393453596214,-13.429111947725500542,0.00000000000000000000,-1.0000000000000000000,-0.0039479155806884996,-0.0123125220756176000,0.99991640438723905504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8996720650993701440,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +45 ,0 ,0.59682511512571301270,-5.3966683201509200173,0.00000000000000000000,-1.0000000000000000000,-0.0049221462997426704,-0.0044648989479225903,0.99997791833279503492,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9667522924304399190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +46 ,0 ,-9.4615645591695791694,-13.747209530738899729,0.00000000000000000000,-1.0000000000000000000,-0.0050628668508786696,-0.0109583227043417007,0.99992713861698800936,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8480143437179799015,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +47 ,0 ,-8.3741047590167596581,-15.510963162211799826,0.00000000000000000000,-1.0000000000000000000,-0.0047222168364862496,-0.0129267256515329994,0.99990529573159003806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8326175404927198542,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +48 ,0 ,-7.3183040162873798095,-17.038327223186101377,0.00000000000000000000,-1.0000000000000000000,-0.0044133049212564598,-0.0146581366480530005,0.99988282401973405111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8165327367499899402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +49 ,0 ,-6.3942607452700999104,-17.581572064191501425,0.00000000000000000000,-1.0000000000000000000,-0.0042364828728313000,-0.0154035303858007007,0.99987238358928698378,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8123960837701797998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +50 ,0 ,-5.7680016035542198693,-15.900556583865400384,0.00000000000000000000,-1.0000000000000000000,-0.0043581862269591502,-0.0139206034005751998,0.99989360584703002032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8398023709261202007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +51 ,0 ,-5.6922807553581797890,-10.107946067925800193,0.00000000000000000000,-1.0000000000000000000,-0.0050317545596459695,-0.0083178821293310896,0.99995274602499795157,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9049906011131301220,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +52 ,0 ,-6.5299670722758103025,2.50370019487026995719,0.00000000000000000000,-1.0000000000000000000,-0.0066204848969489303,0.00411896673842410999,0.99996960118432398623,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9279178271826800106,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +53 ,0 ,-8.7812978232325793470,25.6611910971803993675,0.00000000000000000000,-1.0000000000000000000,-0.0096220351228757002,0.02711342802973880014,0.99958605355445495632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.5510642069406199716,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +54 ,0 ,-13.122761326657599312,64.3919771484399063865,0.00000000000000000000,-1.0000000000000000000,-0.0146925951864594998,0.06558772395130869903,0.99773863216454294899,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.7086075656144399381,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +55 ,0 ,-20.487796981871099433,125.608489979460003382,0.00000000000000000000,-1.0000000000000000000,-0.0226680884225094990,0.12583958849811399671,0.99179158886022800167,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.28260638987705988256,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +56 ,0 ,-32.290975313023096759,219.743520134832010626,0.00000000000000000000,-1.0000000000000000000,-0.0345773183528340979,0.21567631817995400189,0.97585251694703600833,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,20.7106810199408002404,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +57 ,0 ,-51.153325195686200288,366.066541831190988887,0.00000000000000000000,-1.0000000000000000000,-0.0516351976458701983,0.34443630899958399549,0.93738862560136404500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,62.6648735857552026118,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +58 ,0 ,-83.776487391802504589,613.775576295939004012,0.00000000000000000000,-1.0000000000000000000,-0.0751766796627166972,0.52266641634119204162,0.84921627637719299119,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,173.189884157638999795,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +59 ,0 ,-160.22026194517599151,1183.38360001005003141,0.00000000000000000000,-1.0000000000000000000,-0.1063171481009260038,0.76019477472930097050,0.64093725784506605513,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,555.042835316110995336,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +60 ,0 ,-17.640403815417201371,46.4711363839245024109,0.00000000000000000000,-1.0000000000000000000,-0.0130437440413355993,0.04858314067681190201,0.99873396817338699893,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-2.6662583021899299851,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +61 ,0 ,-23.717414899247199144,98.0976539595332042154,0.00000000000000000000,-1.0000000000000000000,-0.0197962556859964007,0.09965997041534480072,0.99482460693210994495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.25375398658376990823,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +62 ,0 ,-33.611346386384099105,178.033400912829989692,0.00000000000000000000,-1.0000000000000000000,-0.0300656385411308992,0.17714937456098500678,0.98372463447438696082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,12.5659780668185998564,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +63 ,0 ,-49.334782006700301337,301.042792596823971962,0.00000000000000000000,-1.0000000000000000000,-0.0449986187952485031,0.28981407698793199001,0.95602454209405796081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,41.9518243791428986355,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +64 ,0 ,-75.367331723219095351,499.902250456420006230,0.00000000000000000000,-1.0000000000000000000,-0.0658998279855328022,0.44782218798516998381,0.89169080998945604576,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,117.255230046985005287,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +65 ,0 ,-127.06473425801100063,886.848508260773996880,0.00000000000000000000,-1.0000000000000000000,-0.0940561248603429961,0.66178262561741596492,0.74377227819217295312,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,339.818635992677002377,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +66 ,0 ,-389.71663846603297542,2814.31262968581995664,0.00000000000000000000,-1.0000000000000000000,-0.1293423746994140088,0.93461672349879998389,0.33130368284020500491,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,2010.22528717504997075,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneGratingDevAzMisVLS.rayx.csv b/Intern/RayCore/tests/output/PlaneGratingDevAzMisVLS.rayx.csv new file mode 100644 index 000000000..29411b46b --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneGratingDevAzMisVLS.rayx.csv @@ -0,0 +1,68 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-170.30092127156905235,1234.43413671481539495,0.00000000000000000000,1.00000000000000000000,-0.1084051209471626614,0.77415339656581227956,0.62364641291203348760,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11598.1135085296355100,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-93.112380529191185019,673.148378875931484799,0.00000000000000000000,1.00000000000000000000,-0.0801756837633646052,0.55966120124130369628,0.82483404364648849060,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11207.9251666002819547,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,-59.011964580095607857,427.527601098664661094,0.00000000000000000000,1.00000000000000000000,-0.0584388627840987107,0.39598302082343056484,0.91639639159920927014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11087.0710773668724868,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,-38.523825366170662221,281.972733355029788526,0.00000000000000000000,1.00000000000000000000,-0.0422497011286114693,0.27473669451858812040,0.96059081373889010357,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11036.9787274094378517,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-24.863779144033749446,186.801059693277721862,0.00000000000000000000,1.00000000000000000000,-0.0304781063550679000,0.18696267123687473898,0.98189411068453880115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11014.4398716768828307,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-256.39919311059861684,1809.84923424580347273,0.00000000000000000000,1.00000000000000000000,-0.1214279459655949466,0.86981777526244374865,0.47819691736361963352,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,12084.7316771563710062,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,-120.41809110163472951,821.986397468729592219,0.00000000000000000000,1.00000000000000000000,-0.0907765665114449171,0.63537821183631915111,0.76684688360589581268,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11299.4276561913538898,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,-76.346593589776063026,504.008813382431640093,0.00000000000000000000,1.00000000000000000000,-0.0666300650427267965,0.45305617825686073096,0.88898848911315453413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11120.6743503568395681,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-51.851518754942432565,329.262393480887851637,0.00000000000000000000,1.00000000000000000000,-0.0484517574566054390,0.31665670230620823755,0.94730193712666044270,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11051.5858844904305442,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,-35.990869697358292000,217.966515130539193023,0.00000000000000000000,1.00000000000000000000,-0.0351175383696336190,0.21706762740548782297,0.97552468120053681399,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11021.1107812499121791,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,-25.105636334529634723,143.391341683344052171,0.00000000000000000000,1.00000000000000000000,-0.0255521410154874624,0.14593413018816414616,0.98896426514599011792,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11007.2066100397260015,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,-17.460567836989710599,92.8172304021110932126,0.00000000000000000000,1.00000000000000000000,-0.0188325796754636766,0.09620343207419304598,0.99518351754835310263,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.8961529666048591,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,-12.033210159333016520,58.7153624258682356185,0.00000000000000000000,1.00000000000000000000,-0.0142041319052244388,0.06215966338558098075,0.99796513911289008724,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10998.0958700367791607,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-8.1399166899895813998,36.0295041129883841790,0.00000000000000000000,1.00000000000000000000,-0.0110708730260016038,0.03931368821928677564,0.99916558672175981303,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.8888225460996181,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,-5.2970367821019213039,21.1702936926388183280,0.00000000000000000000,1.00000000000000000000,-0.0089770063768357076,0.02424344744462326659,0.99966577845423387760,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.3833294754440430,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,-3.1586517838219987375,11.5645017279107307217,0.00000000000000000000,1.00000000000000000000,-0.0075850241803290825,0.01442032153205328667,0.99986725205653970149,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1764138531052594,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-1.4810528518210024362,5.39651590763483390844,0.00000000000000000000,1.00000000000000000000,-0.0066535477231087986,0.00803827135130401153,0.99994555676615659578,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0925219697091961,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-0.0975130198855542335,1.42310651246518138357,0.00000000000000000000,1.00000000000000000000,-0.0060163747433040534,0.00385474499291826129,0.99997447176214837583,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0579778891406022,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,-20.377968533718245680,69.3217104713618397227,0.00000000000000000000,1.00000000000000000000,-0.0163562983088593565,0.07357453640585051579,0.99715558419852179383,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10998.9464448069156787,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,-15.962452838211738992,42.7551389982862986016,0.00000000000000000000,1.00000000000000000000,-0.0127115691582913685,0.04689971452681204050,0.99881871868064064923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10997.2740251978902961,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +20 ,0 ,-12.764343256320973551,25.2514126891343551051,0.00000000000000000000,1.00000000000000000000,-0.0102655610164890248,0.02919583730137052454,0.99952099594820342787,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.5658477219167252,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,0 ,-10.389749549583651599,13.8851708203420969311,0.00000000000000000000,1.00000000000000000000,-0.0086381161649937646,0.01761277164932503747,0.99980756809695559006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.2734535024883371,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,0 ,-8.5590379372961020720,6.57525510670306978511,0.00000000000000000000,1.00000000000000000000,-0.0075536131676007126,0.01008737968622070053,0.99992059069667138526,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1544323180041828,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +23 ,0 ,-7.0785467173476757096,1.87847431320540425581,0.00000000000000000000,1.00000000000000000000,-0.0068194229794919253,0.00517916066833805886,0.99996333521034563851,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1056137449522793,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +24 ,0 ,-5.8187061237000889946,-1.1714957320031604837,0.00000000000000000000,1.00000000000000000000,-0.0063061525935076499,0.00192107289842203795,0.99997827072311218365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0846041604017955,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,0 ,-4.6960080650906652621,-3.1977414227646709932,0.00000000000000000000,1.00000000000000000000,-0.0059302578889003703,-0.0003110428408614031,0.99998236749140823054,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0744686296784493,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,0 ,-3.6581114451243554874,-4.5909078033695678300,0.00000000000000000000,1.00000000000000000000,-0.0056393302718077886,-0.0019086467457969603,0.99998227735379663361,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0685698953748214,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +27 ,0 ,-2.6719112657129300281,-5.5981158173882192841,0.00000000000000000000,1.00000000000000000000,-0.0054002070981857301,-0.0031194082357094555,0.99998055333869151350,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0643606167850521,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +28 ,0 ,-1.7145404183830421640,-6.3900853268327946210,0.00000000000000000000,1.00000000000000000000,-0.0051899751160069274,-0.0041144319333440608,0.99997806756356466539,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0609706308878230,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +29 ,0 ,-0.7673028672734301114,-7.1064110834256766224,0.00000000000000000000,1.00000000000000000000,-0.0049898970864902282,-0.0050336242129286664,0.99997488146170387945,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0583386625894490,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,0 ,0.18745932927442160442,-7.8789479935170314561,0.00000000000000000000,1.00000000000000000000,-0.0047822740877865761,-0.0060091270133751373,0.99997050968870382359,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0569490314665017,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,0 ,1.16656345481319201340,-8.8332828455968002145,0.00000000000000000000,1.00000000000000000000,-0.0045502485604276259,-0.0071667894034543704,0.99996396553460098477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0577863821326900,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +32 ,0 ,-10.525904252462437327,-4.9810555389871113973,0.00000000000000000000,1.00000000000000000000,-0.0063289258182606328,-0.0014315073121592221,0.99997894752079730107,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1108417680934508,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +33 ,0 ,-9.5229959299255018123,-6.1129606993641605328,0.00000000000000000000,1.00000000000000000000,-0.0060730689316293023,-0.0027672261297615901,0.99997772989867017567,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1056539011660788,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +34 ,0 ,-8.5569149287387542557,-6.9699190520970830675,0.00000000000000000000,1.00000000000000000000,-0.0058541165216328371,-0.0038273699648950156,0.99997553998030519473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1014954136826418,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +35 ,0 ,-7.6078974313090981240,-7.6994908745434162966,0.00000000000000000000,1.00000000000000000000,-0.0056522630400353216,-0.0047598274278388228,0.99997269760998119814,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0980471812672476,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,0 ,-6.6580708983151470903,-8.4351308089665799627,0.00000000000000000000,1.00000000000000000000,-0.0054495953457884913,-0.0056983441720471345,0.99996891490899053600,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0955964871409378,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,0 ,-5.6901324856632280457,-9.3060515125345677489,0.00000000000000000000,1.00000000000000000000,-0.0052287694806866539,-0.0067724051307574816,0.99996339657932586941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0949369732152263,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +38 ,0 ,-4.6889639631502371130,-10.425163638715185143,0.00000000000000000000,1.00000000000000000000,-0.0049746300038467135,-0.0080951438809298194,0.99995485983211818137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0973488128820463,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +39 ,0 ,-3.6461850693601922657,-11.855071564426802765,0.00000000000000000000,1.00000000000000000000,-0.0046787750857982864,-0.0097292605540782433,0.99994172357831290209,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1044100208000600,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +40 ,0 ,-2.5676500908447859039,-13.552079728424828886,0.00000000000000000000,1.00000000000000000000,-0.0043470731598410821,-0.0116309144335255288,0.99992290942071260229,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1171972455795184,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,0 ,-1.4838962806472819622,-15.288134261063559549,0.00000000000000000000,1.00000000000000000000,-0.0040101391361857807,-0.0135715443860721547,0.99989986096962968353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1342704699545720,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +42 ,0 ,-0.4635499362430219316,-16.550657768051365792,0.00000000000000000000,1.00000000000000000000,-0.0037367722441521149,-0.0150376052184307603,0.99987994627479614972,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1482764902502822,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +43 ,0 ,0.37033496578338487292,-16.420513243227137678,0.00000000000000000000,1.00000000000000000000,-0.0036503278470094379,-0.0151083828872772153,0.99987919864008600878,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1432121904927043,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,0 ,0.82111995393557135614,-13.429111947732693010,0.00000000000000000000,1.00000000000000000000,-0.0039479155806874761,-0.0123125220756243325,0.99991640438723894401,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1003279349006334,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,0 ,0.59682511512683933396,-5.3966683201587359874,0.00000000000000000000,1.00000000000000000000,-0.0049221462997415281,-0.0044648989479302439,0.99997791833279436879,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0332477075698989,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,0 ,-9.4615645591692452143,-13.747209530740821747,0.00000000000000000000,1.00000000000000000000,-0.0050628668508782984,-0.0109583227043435708,0.99992713861698823141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1519856562827044,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +47 ,0 ,-8.3741047590170882841,-15.510963162208902588,0.00000000000000000000,1.00000000000000000000,-0.0047222168364866000,-0.0129267256515295143,0.99990529573159014908,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1673824595090991,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +48 ,0 ,-7.3183040162875805378,-17.038327223183948433,0.00000000000000000000,1.00000000000000000000,-0.0044133049212566688,-0.0146581366480504904,0.99988282401973449520,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1834672632503497,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +49 ,0 ,-6.3942607452699240511,-17.581572064192318549,0.00000000000000000000,1.00000000000000000000,-0.0042364828728311629,-0.0154035303858008343,0.99987238358928665071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1876039162325469,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +50 ,0 ,-5.7680016035543371089,-15.900556583864126736,0.00000000000000000000,1.00000000000000000000,-0.0043581862269592552,-0.0139206034005735432,0.99989360584702924317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1601976290749007,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +51 ,0 ,-5.6922807553586718398,-10.107946067921547594,0.00000000000000000000,1.00000000000000000000,-0.0050317545596464622,-0.0083178821293265134,0.99995274602499784055,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0950093988867592,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,0 ,-6.5299670722766487429,2.50370019487727146767,0.00000000000000000000,1.00000000000000000000,-0.0066204848969497647,0.00411896673843128134,0.99996960118432443032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0720821728173177,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +53 ,0 ,-8.7812978232242659970,25.6611910971189125518,0.00000000000000000000,1.00000000000000000000,-0.0096220351228674099,0.02711342802967774134,0.99958605355445651063,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.4489357930615369,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +54 ,0 ,-13.122761326626740441,64.3919771482103726611,0.00000000000000000000,1.00000000000000000000,-0.0146925951864289323,0.06558772395108077024,0.99773863216455849212,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10998.2913924343720282,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +55 ,0 ,-20.487796981874787149,125.608489979488993526,0.00000000000000000000,1.00000000000000000000,-0.0226680884225131627,0.12583958849814191882,0.99179158886022378283,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11004.2826063898792199,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +56 ,0 ,-32.290975312943054120,219.743520134237712682,0.00000000000000000000,1.00000000000000000000,-0.0345773183527602959,0.21567631817940116634,0.97585251694716113046,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11020.7106810198110906,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +57 ,0 ,-51.153325195635559907,366.066541830816788660,0.00000000000000000000,1.00000000000000000000,-0.0516351976458291339,0.34443630899927574207,0.93738862560147973024,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11062.6648735856233543,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +58 ,0 ,-83.776487391732402443,613.775576295422183648,0.00000000000000000000,1.00000000000000000000,-0.0751766796626746752,0.52266641634087485090,0.84921627637739161009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11173.1898841573674872,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +59 ,0 ,-160.22026194503587248,1183.38360000901957391,0.00000000000000000000,1.00000000000000000000,-0.1063171481008903518,0.76019477472902885484,0.64093725784539445911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11555.0428353153129137,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +60 ,0 ,-17.640403815424168243,46.4711363839769759920,0.00000000000000000000,1.00000000000000000000,-0.0130437440413425816,0.04858314067686472781,0.99873396817338477848,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10997.3337416978120018,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +61 ,0 ,-23.717414899226373137,98.0976539593787748572,0.00000000000000000000,1.00000000000000000000,-0.0197962556859760142,0.09965997041519285282,0.99482460693212537705,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11001.2537539865716098,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,0 ,-33.611346386341928393,178.033400912516782454,0.00000000000000000000,1.00000000000000000000,-0.0300656385410910317,0.17714937456068691190,0.98372463447444169482,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11012.5659780667647282,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +63 ,0 ,-49.334782006696926259,301.042792596799074544,0.00000000000000000000,1.00000000000000000000,-0.0449986187952455818,0.28981407698791050719,0.95602454209406428908,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11041.9518243791353597,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +64 ,0 ,-75.367331723161328227,499.902250455994817457,0.00000000000000000000,1.00000000000000000000,-0.0658998279854926261,0.44782218798486789212,0.89169080998961036677,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11117.2552300467905297,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +65 ,0 ,-127.06473425794125375,886.848508260265703029,0.00000000000000000000,1.00000000000000000000,-0.0940561248603153376,0.66178262561720624379,0.74377227819236213512,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11339.8186359923329291,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +66 ,0 ,-389.71663847011456027,2814.31262971561272934,0.00000000000000000000,1.00000000000000000000,-0.1293423746995504275,0.93461672349988733632,0.33130368283708361287,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,13010.2252872034241590,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneGratingDeviationAz.rayui.csv b/Intern/RayCore/tests/output/PlaneGratingDeviationAz.rayui.csv new file mode 100644 index 000000000..ad584ac1c --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneGratingDeviationAz.rayui.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-3.9249655222316701674,-6.7306687136070300070,0.00000000000000000000,-1.0000000000000000000,-0.0003536334141186139,-0.0006117639845279299,0.99999975034408694618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.07241822499963750103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-0.3623421526871570264,-5.7756234262003101065,0.00000000000000000000,-1.0000000000000000000,-0.0000316518368597072,-0.0005255393055126369,0.99999986140329000239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06574217256866179970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,3.20027729016850015497,-4.8205784132766602567,0.00000000000000000000,-1.0000000000000000000,0.00029032957782844799,-0.0004393132509877929,0.99999986135629204131,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06028839746750239841,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,6.76289359340541995635,-3.8655334637066101066,0.00000000000000000000,-1.0000000000000000000,0.00061231079417205095,-0.0003530858305485979,0.99999975020291298477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.05605689685330619842,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-4.8709270039011096642,-3.1985865013697600822,0.00000000000000000000,-1.0000000000000000000,-0.0004398593486420930,-0.0002901467230055620,0.99999986116930694723,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.03020328819025050112,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-1.3083162501367799901,-2.2435469527581402005,0.00000000000000000000,-1.0000000000000000000,-0.0001178777359445720,-0.0002039220318490640,0.99999997226032200092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02352755008951139953,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,2.25429047159803985778,-1.2885072843439600021,0.00000000000000000000,-1.0000000000000000000,0.00020410371418701900,-0.0001176959652196269,0.99999997224466696810,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.01807408050785850109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,5.81689394836678008715,-0.3334672850002959876,0.00000000000000000000,-1.0000000000000000000,0.00052608496597887795,-0.0000314685327124661,0.99999986112215999423,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.01384287660084740009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-5.8168814368718502194,0.33346989742105498377,0.00000000000000000000,-1.0000000000000000000,-0.0005260854172262919,0.00003147196027686069,0.99999986112181504793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0107871115761781991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-2.2542832982057898760,1.28850370768908994989,0.00000000000000000000,-1.0000000000000000000,-0.0002041038048652280,0.00011769665398900900,0.99999997224456704802,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0174625360776872011,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,1.30831070309154995356,2.24353803204034996099,0.00000000000000000000,-1.0000000000000000000,0.00011787764493474899,0.00020392272313730301,0.99999997226019199381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0229157007385083003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,4.87090135407695967728,3.19857308159873010566,0.00000000000000000000,-1.0000000000000000000,0.00043985889639983299,0.00029015015812657100,0.99999986116850902995,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0271466084045642007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-6.7628290328569198308,3.86550127379824992601,0.00000000000000000000,-1.0000000000000000000,-0.0006123116102758229,0.00035309202947218098,0.99999975020022402460,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0505529961429828991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-3.2002435086098501848,4.82052934617416983797,0.00000000000000000000,-1.0000000000000000000,-0.0002903300340262840,0.00043931671615438100,0.99999986135463803105,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0572281077832030998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,0.36233777293087698900,5.77555832690763981673,0.00000000000000000000,-1.0000000000000000000,0.00003165137966702419,0.00052554277823583898,0.99999986140148000579,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0626809681245959066,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,3.92491559881529994413,6.73058842712034000044,0.00000000000000000000,-1.0000000000000000000,0.00035363259503030101,0.00061177020612135498,0.99999975034056998168,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0669115800100144042,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-3.9249655222316701674,-6.7306687136070300070,0.00000000000000000000,-1.0000000000000000000,-0.0003536334141186139,-0.0006117639845279299,0.99999975034408694618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.07241822499963750103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-0.3623421526871570264,-5.7756234262003101065,0.00000000000000000000,-1.0000000000000000000,-0.0000316518368597072,-0.0005255393055126369,0.99999986140329000239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06574217256866179970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,3.20027729016850015497,-4.8205784132766602567,0.00000000000000000000,-1.0000000000000000000,0.00029032957782844799,-0.0004393132509877929,0.99999986135629204131,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06028839746750239841,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,6.76289359340541995635,-3.8655334637066101066,0.00000000000000000000,-1.0000000000000000000,0.00061231079417205095,-0.0003530858305485979,0.99999975020291298477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.05605689685330619842,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneGratingDeviationAz.rayx.csv b/Intern/RayCore/tests/output/PlaneGratingDeviationAz.rayx.csv new file mode 100644 index 000000000..c59109449 --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneGratingDeviationAz.rayx.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-3.9249655222315702474,-6.7306687136069482946,0.00000000000000000000,1.00000000000000000000,-0.0003536334141185014,-0.0006117639845278601,0.99999975034408661311,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0724182250014564,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-0.3623421526870885256,-5.7756234262000543111,0.00000000000000000000,1.00000000000000000000,-0.0000316518368596014,-0.0005255393055125104,0.99999986140329022443,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0657421725700260,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,3.20027729016860584820,-4.8205784132767437455,0.00000000000000000000,1.00000000000000000000,0.00029032957782854995,-0.0004393132509876518,0.99999986135629226335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0602883974679571,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,6.76289359340549900423,-3.8655334637063085700,0.00000000000000000000,1.00000000000000000000,0.00061231079417215265,-0.0003530858305484698,0.99999975020291265170,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0560568968539882,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-4.8709270039010226227,-3.1985865013694656511,0.00000000000000000000,1.00000000000000000000,-0.0004398593486419857,-0.0002901467230054813,0.99999986116930650315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0302032881882041,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-1.3083162501366791818,-2.2435469527581624049,0.00000000000000000000,1.00000000000000000000,-0.0001178777359444725,-0.0002039220318489405,0.99999997226032155683,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0235275500926945,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,2.25429047159815576506,-1.2885072843440319445,0.00000000000000000000,1.00000000000000000000,0.00020410371418712726,-0.0001176959652194806,0.99999997224466663503,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0180740805080858,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,5.81689394836686624046,-0.3334672850002450283,0.00000000000000000000,1.00000000000000000000,0.00052608496597898344,-0.0000314685327123393,0.99999986112216032729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0138428766003926,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-5.8168814368717418616,0.33346989742115956678,0.00000000000000000000,1.00000000000000000000,-0.0005260854172261876,0.00003147196027700581,0.99999986112181504793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9892128884221165,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,-2.2542832982057401380,1.28850370768951405509,0.00000000000000000000,1.00000000000000000000,-0.0002041038048651251,0.00011769665398911480,0.99999997224456682598,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9825374639203801,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,1.30831070309167429854,2.24353803204046542418,0.00000000000000000000,1.00000000000000000000,0.00011787764493485677,0.00020392272313744027,0.99999997226019154972,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9770842992602410,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,4.87090135407705826509,3.19857308159879938358,0.00000000000000000000,1.00000000000000000000,0.00043985889639993523,0.00029015015812670983,0.99999986116850880790,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9728533915968000,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,-6.7628290328568043676,3.86550127379826946594,0.00000000000000000000,1.00000000000000000000,-0.0006123116102757123,0.00035309202947228171,0.99999975020022402460,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9494470038553117,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-3.2002435086097378302,4.82052934617417605522,0.00000000000000000000,1.00000000000000000000,-0.0002903300340261794,0.00043931671615451121,0.99999986135463747594,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9427718922161147,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,0.36233777293101798733,5.77555832690742221302,0.00000000000000000000,1.00000000000000000000,0.00003165137966712901,0.00052554277823593179,0.99999986140147945068,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9373190318765409,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,3.92491559881539098242,6.73058842712051141887,0.00000000000000000000,1.00000000000000000000,0.00035363259503040709,0.00061177020612146059,0.99999975034056998168,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9330884199898719,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-3.9249655222315702474,-6.7306687136069482946,0.00000000000000000000,1.00000000000000000000,-0.0003536334141185014,-0.0006117639845278601,0.99999975034408661311,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0724182250014564,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-0.3623421526870885256,-5.7756234262000543111,0.00000000000000000000,1.00000000000000000000,-0.0000316518368596014,-0.0005255393055125104,0.99999986140329022443,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0657421725700260,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,3.20027729016860584820,-4.8205784132767437455,0.00000000000000000000,1.00000000000000000000,0.00029032957782854995,-0.0004393132509876518,0.99999986135629226335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0602883974679571,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,6.76289359340549900423,-3.8655334637063085700,0.00000000000000000000,1.00000000000000000000,0.00061231079417215265,-0.0003530858305484698,0.99999975020291265170,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0560568968539882,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneGratingDeviationAzMis.rayui.csv b/Intern/RayCore/tests/output/PlaneGratingDeviationAzMis.rayui.csv new file mode 100644 index 000000000..5760211be --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneGratingDeviationAzMis.rayui.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-9.6396952642774405006,-9.1452313427755704822,0.00000000000000000000,-1.0000000000000000000,-0.0060382324854792298,-0.0033779937093555401,0.99997606416701401155,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8542534256817999605,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-6.0787538566712600029,-8.1886238834143405540,0.00000000000000000000,-1.0000000000000000000,-0.0057163009069730102,-0.0032916161002782200,0.99997824434703996843,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8837473927369501325,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,-2.5178310697671402174,-7.2320206486937701484,0.00000000000000000000,-1.0000000000000000000,-0.0053943688624961501,-0.0032052368085638298,0.99998031342700799406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9120193916695598090,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,1.04307388325375005599,-6.2754214271552095638,0.00000000000000000000,-1.0000000000000000000,-0.0050724363878165102,-0.0031188558438240998,0.99998227140650697286,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9390694379669599634,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-10.587038048842799753,-5.6148469289859104236,0.00000000000000000000,-1.0000000000000000000,-0.0061246279910514601,-0.0030564250279920901,0.99997657332460498924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9008524714322398985,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-7.0261086940684096546,-4.6582529427043999348,0.00000000000000000000,-1.0000000000000000000,-0.0058026963772593101,-0.0029700474064684998,0.99997875354087195631,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9303459775087499217,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,-3.4651980654112999324,-3.7016627869046700993,0.00000000000000000000,-1.0000000000000000000,-0.0054807642974903196,-0.0028836681023438298,0.99998082265661003553,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9586175252535400481,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,0.09569462394104009950,-2.7450762501350998157,0.00000000000000000000,-1.0000000000000000000,-0.0051588317875123400,-0.0027972871252298398,0.99998278067141099789,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9856671301597499379,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-11.534373021509699341,-2.0844911548918099164,0.00000000000000000000,-1.0000000000000000000,-0.0062110230028329903,-0.0027348546179954001,0.99997697161658505304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9462273659850097828,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-7.9734557188921195702,-1.1279106411566799383,0.00000000000000000000,-1.0000000000000000000,-0.0058890913895242296,-0.0026484769936280798,0.99997915186878805204,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9757204143576201360,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,-4.4125572478055499203,-0.1713335637493859919,0.00000000000000000000,-1.0000000000000000000,-0.0055671593102325101,-0.0025620976866957499,0.99998122102000397415,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0039915140639603663,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,-0.8516768214436960526,0.78524028877344298482,0.00000000000000000000,-1.0000000000000000000,-0.0052452268007256398,-0.0024757167068103001,0.99998317906982703284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0310406805883802761,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-12.481700394317099878,1.44583677019736001057,0.00000000000000000000,-1.0000000000000000000,-0.0062974175112056503,-0.0024132825152056000,0.99997725904152001685,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9903781336312200700,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-8.9207951431841703282,2.40240381191859020404,0.00000000000000000000,-1.0000000000000000000,-0.0059754859341496499,-0.0023269048975968899,0.99997943932935395849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0198707275901597313,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,-5.3599088289940501894,3.35896781145848999372,0.00000000000000000000,-1.0000000000000000000,-0.0056535538911045698,-0.0022405255974595797,0.99998150851575695607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0481413823994198963,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,-1.7990406649469901090,4.31552898025400999415,0.00000000000000000000,-1.0000000000000000000,-0.0053316214178382595,-0.0021541446244054901,0.99998346660032000343,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0751901135462302860,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-9.6396952642774405006,-9.1452313427755704822,0.00000000000000000000,-1.0000000000000000000,-0.0060382324854792298,-0.0033779937093555401,0.99997606416701401155,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8542534256817999605,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-6.0787538566712600029,-8.1886238834143405540,0.00000000000000000000,-1.0000000000000000000,-0.0057163009069730102,-0.0032916161002782200,0.99997824434703996843,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8837473927369501325,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,-2.5178310697671402174,-7.2320206486937701484,0.00000000000000000000,-1.0000000000000000000,-0.0053943688624961501,-0.0032052368085638298,0.99998031342700799406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9120193916695598090,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,1.04307388325375005599,-6.2754214271552095638,0.00000000000000000000,-1.0000000000000000000,-0.0050724363878165102,-0.0031188558438240998,0.99998227140650697286,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9390694379669599634,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneGratingDeviationAzMis.rayx.csv b/Intern/RayCore/tests/output/PlaneGratingDeviationAzMis.rayx.csv new file mode 100644 index 000000000..fe327fdeb --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneGratingDeviationAzMis.rayx.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-9.6396952642772930630,-9.1452313427758991082,0.00000000000000000000,1.00000000000000000000,-0.0060382324854791327,-0.0033779937093553684,0.99997606416701345644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1457465743205830,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-6.0787538566711534215,-8.1886238834145466114,0.00000000000000000000,1.00000000000000000000,-0.0057163009069729053,-0.0032916161002780539,0.99997824434704041252,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1162526072657783,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,-2.5178310697670367446,-7.2320206486939406786,0.00000000000000000000,1.00000000000000000000,-0.0053943688624960520,-0.0032052368085636641,0.99998031342700754997,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0879806083321454,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,1.04307388325385796967,-6.2754214271553330206,0.00000000000000000000,1.00000000000000000000,-0.0050724363878164044,-0.0031188558438239263,0.99998227140650686184,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0609305620346276,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-10.587038048842730475,-5.6148469289860916120,0.00000000000000000000,1.00000000000000000000,-0.0061246279910513647,-0.0030564250279918941,0.99997657332460510026,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0991475285700289,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-7.0261086940682799806,-4.6582529427047782988,0.00000000000000000000,1.00000000000000000000,-0.0058026963772592121,-0.0029700474064682986,0.99997875354087228938,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0696540224944328,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,-3.4651980654111729229,-3.7016627869048073229,0.00000000000000000000,1.00000000000000000000,-0.0054807642974902233,-0.0028836681023436663,0.99998082265661014655,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0413824747465696,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,0.09569462394113857628,-2.7450762501350842725,0.00000000000000000000,1.00000000000000000000,-0.0051588317875122463,-0.0027972871252296702,0.99998278067141088687,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0143328698413824,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-11.534373021509482626,-2.0844911548924716093,0.00000000000000000000,1.00000000000000000000,-0.0062110230028328853,-0.0027348546179952488,0.99997697161658505304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0537726340171502,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,-7.9734557188920334169,-1.1279106411566530709,0.00000000000000000000,1.00000000000000000000,-0.0058890913895241385,-0.0026484769936278807,0.99997915186878783000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0242795856411248,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,-4.4125572478054611025,-0.1713335637494559360,0.00000000000000000000,1.00000000000000000000,-0.0055671593102324095,-0.0025620976866955976,0.99998122102000419619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9960084859376365,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,-0.8516768214436318817,0.78524028877355966926,0.00000000000000000000,1.00000000000000000000,-0.0052452268007255366,-0.0024757167068101735,0.99998317906982636671,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9689593194143526,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,-12.481700394317041258,1.44583677019713219280,0.00000000000000000000,1.00000000000000000000,-0.0062974175112055609,-0.0024132825152054036,0.99997725904152001685,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0096218663657055,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-8.9207951431840921685,2.40240381191863461296,0.00000000000000000000,1.00000000000000000000,-0.0059754859341495459,-0.0023269048975967203,0.99997943932935340338,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9801292724114318,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,-5.3599088289939516016,3.35896781145840206406,0.00000000000000000000,1.00000000000000000000,-0.0056535538911044701,-0.0022405255974594236,0.99998150851575606790,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9518586176000098,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,-1.7990406649468948518,4.31552898025398778969,0.00000000000000000000,1.00000000000000000000,-0.0053316214178381546,-0.0021541446244053427,0.99998346660032022548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9248098864518397,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-9.6396952642772930630,-9.1452313427758991082,0.00000000000000000000,1.00000000000000000000,-0.0060382324854791327,-0.0033779937093553684,0.99997606416701345644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1457465743205830,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-6.0787538566711534215,-8.1886238834145466114,0.00000000000000000000,1.00000000000000000000,-0.0057163009069729053,-0.0032916161002780539,0.99997824434704041252,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1162526072657783,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,-2.5178310697670367446,-7.2320206486939406786,0.00000000000000000000,1.00000000000000000000,-0.0053943688624960520,-0.0032052368085636641,0.99998031342700754997,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0879806083321454,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,1.04307388325385796967,-6.2754214271553330206,0.00000000000000000000,1.00000000000000000000,-0.0050724363878164044,-0.0031188558438239263,0.99998227140650686184,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0609305620346276,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneGratingDeviationDefault.rayui.csv b/Intern/RayCore/tests/output/PlaneGratingDeviationDefault.rayui.csv new file mode 100644 index 000000000..480b55de0 --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneGratingDeviationDefault.rayui.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-5.5325314673836700762,-5.4849109975435696995,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,-0.0004994526961402260,0.99999975027351295508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06476811138884390472,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-1.8441770199902700611,-5.4849117675275698147,0.00000000000000000000,-1.0000000000000000000,-0.0001666666450617289,-0.0004994540783459650,0.99999986138391705470,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06354587575231110396,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,1.84417701999027006110,-5.4849117675275698147,0.00000000000000000000,-1.0000000000000000000,0.00016666664506172898,-0.0004994540783459650,0.99999986138391705470,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06354587575231110396,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,5.53253146738367007628,-5.4849109975435696995,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,-0.0004994526961402260,0.99999975027351295508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06476811138884390472,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-5.5325107943899602958,-1.8282958470923300620,0.00000000000000000000,-1.0000000000000000000,-0.0004999999722222229,-0.0001664835520649170,0.99999986114161798500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02219989225648080072,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-1.8441701289935699126,-1.8282970251884300694,0.00000000000000000000,-1.0000000000000000000,-0.0001666666635802470,-0.0001664849342334210,0.99999997225249503962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02097766550275539931,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,1.84417012899356991262,-1.8282970251884300694,0.00000000000000000000,-1.0000000000000000000,0.00016666666358024700,-0.0001664849342334210,0.99999997225249503962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02097766550275539931,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,5.53251079438996029580,-1.8282958470923300620,0.00000000000000000000,-1.0000000000000000000,0.00049999997222222297,-0.0001664835520649170,0.99999986114161798500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02219989225648080072,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-5.5324901225696203610,1.82829231127919000776,0.00000000000000000000,-1.0000000000000000000,-0.0004999999722222229,0.00016648701234757399,0.99999986114104200130,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0191437507199907000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-1.8441632383879900114,1.82829072507669998515,0.00000000000000000000,-1.0000000000000000000,-0.0001666666635802470,0.00016648563021647000,0.99999997225237902132,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0203659687284699006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,1.84416323838799001144,1.82829072507669998515,0.00000000000000000000,-1.0000000000000000000,0.00016666666358024700,0.00016648563021647000,0.99999997225237902132,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0203659687284699006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,5.53249012256962036104,1.82829231127919000776,0.00000000000000000000,-1.0000000000000000000,0.00049999997222222297,0.00016648701234757399,0.99999986114104200130,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0191437507199907000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-5.5324694519185300123,5.48485429651579980969,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,0.00049945895998680699,0.99999975027038401353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0592628395824022005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-1.8441563481721598982,5.48485230221264963290,0.00000000000000000000,-1.0000000000000000000,-0.0001666666450617289,0.00049945757789321399,0.99999986138216900855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0604850489818318029,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,1.84415634817215989826,5.48485230221264963290,0.00000000000000000000,-1.0000000000000000000,0.00016666664506172898,0.00049945757789321399,0.99999986138216900855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0604850489818318029,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,5.53246945191853001233,5.48485429651579980969,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,0.00049945895998680699,0.99999975027038401353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0592628395824022005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-5.5325314673836700762,-5.4849109975435696995,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,-0.0004994526961402260,0.99999975027351295508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06476811138884390472,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-1.8441770199902700611,-5.4849117675275698147,0.00000000000000000000,-1.0000000000000000000,-0.0001666666450617289,-0.0004994540783459650,0.99999986138391705470,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06354587575231110396,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,1.84417701999027006110,-5.4849117675275698147,0.00000000000000000000,-1.0000000000000000000,0.00016666664506172898,-0.0004994540783459650,0.99999986138391705470,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06354587575231110396,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,5.53253146738367007628,-5.4849109975435696995,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,-0.0004994526961402260,0.99999975027351295508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06476811138884390472,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneGratingDeviationDefault.rayx.csv b/Intern/RayCore/tests/output/PlaneGratingDeviationDefault.rayx.csv new file mode 100644 index 000000000..fecd98571 --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneGratingDeviationDefault.rayx.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-5.5325314673835537249,-5.4849109975435350605,0.00000000000000000000,1.00000000000000000000,-0.0004999999166665487,-0.0004994526961401611,0.99999975027351251100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0647681113896396,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-1.8441770199901483806,-5.4849117675272900385,0.00000000000000000000,1.00000000000000000000,-0.0001666666450616069,-0.0004994540783458966,0.99999986138391683265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0635458757496962,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,1.84417701999039174154,-5.4849117675272900385,0.00000000000000000000,1.00000000000000000000,0.00016666664506185090,-0.0004994540783458966,0.99999986138391683265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0635458757496962,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,5.53253146738379797398,-5.4849109975435350605,0.00000000000000000000,1.00000000000000000000,0.00049999991666679292,-0.0004994526961401611,0.99999975027351251100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0647681113896396,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-5.5325107943898395035,-1.8282958470922203719,0.00000000000000000000,1.00000000000000000000,-0.0004999999722221006,-0.0001664835520648126,0.99999986114161765193,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0221998922570492,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-1.8441701289934466778,-1.8282970251883052803,0.00000000000000000000,1.00000000000000000000,-0.0001666666635801248,-0.0001664849342333165,0.99999997225249470655,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0209776655028690,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,1.84417012899369003875,-1.8282970251883052803,0.00000000000000000000,1.00000000000000000000,0.00016666666358036895,-0.0001664849342333165,0.99999997225249470655,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0209776655028690,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,5.53251079439008375260,-1.8282958470922203719,0.00000000000000000000,1.00000000000000000000,0.00049999997222234483,-0.0001664835520648126,0.99999986114161765193,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0221998922570492,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-5.5324901225694986806,1.82829231127962144043,0.00000000000000000000,1.00000000000000000000,-0.0004999999722221006,0.00016648701234769851,0.99999986114104177925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9808562492798955,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,-1.8441632383878692191,1.82829072507666245961,0.00000000000000000000,1.00000000000000000000,-0.0001666666635801248,0.00016648563021655132,0.99999997225237879927,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9796340312732354,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,1.84416323838811280211,1.82829072507666245961,0.00000000000000000000,1.00000000000000000000,0.00016666666358036895,0.00016648563021655132,0.99999997225237879927,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9796340312732354,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,5.53249012256974292967,1.82829231127962144043,0.00000000000000000000,1.00000000000000000000,0.00049999997222234483,0.00016648701234769851,0.99999986114104177925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9808562492798955,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,-5.5324694519184047791,5.48485429651581046783,0.00000000000000000000,1.00000000000000000000,-0.0004999999166665487,0.00049945895998689232,0.99999975027038401353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9407371604193031,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-1.8441563481720393280,5.48485230221265318562,0.00000000000000000000,1.00000000000000000000,-0.0001666666450616068,0.00049945757789331504,0.99999986138216900855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9395149510182818,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,1.84415634817228291097,5.48485230221265318562,0.00000000000000000000,1.00000000000000000000,0.00016666664506185093,0.00049945757789331504,0.99999986138216900855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9395149510182818,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,5.53246945191864902824,5.48485429651581046783,0.00000000000000000000,1.00000000000000000000,0.00049999991666679292,0.00049945895998689232,0.99999975027038401353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9407371604193031,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-5.5325314673835537249,-5.4849109975435350605,0.00000000000000000000,1.00000000000000000000,-0.0004999999166665487,-0.0004994526961401611,0.99999975027351251100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0647681113896396,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-1.8441770199901483806,-5.4849117675272900385,0.00000000000000000000,1.00000000000000000000,-0.0001666666450616069,-0.0004994540783458966,0.99999986138391683265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0635458757496962,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,1.84417701999039174154,-5.4849117675272900385,0.00000000000000000000,1.00000000000000000000,0.00016666664506185090,-0.0004994540783458966,0.99999986138391683265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0635458757496962,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,5.53253146738379797398,-5.4849109975435350605,0.00000000000000000000,1.00000000000000000000,0.00049999991666679292,-0.0004994526961401611,0.99999975027351251100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0647681113896396,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneGratingIncAzMis.rayui.csv b/Intern/RayCore/tests/output/PlaneGratingIncAzMis.rayui.csv new file mode 100644 index 000000000..01b23f8d5 --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneGratingIncAzMis.rayui.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-9.6163874844733996383,-8.8257482337614607814,0.00000000000000000000,-1.0000000000000000000,-0.0059761721587404696,-0.0033698159373556800,0.99997646457648103890,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8152427452818100661,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-6.0559512668928396905,-7.8670098499000502556,0.00000000000000000000,-1.0000000000000000000,-0.0056542761802785800,-0.0032833280423122199,0.99997862423046002255,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8445831423057401643,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,-2.4955335678661998422,-6.9082756804240297299,0.00000000000000000000,-1.0000000000000000000,-0.0053323797450227300,-0.0031968384506871200,0.99998067278831703763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8727015324566300691,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,1.06486639932833004884,-5.9495455132558401345,0.00000000000000000000,-1.0000000000000000000,-0.0050104828887348202,-0.0031103471721192202,0.99998261024964396614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8995979311404198597,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-10.565846382681799653,-5.2927253448249897971,0.00000000000000000000,-1.0000000000000000000,-0.0060626772333843602,-0.0030486317917329201,0.99997697462939705292,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8623233375771000019,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-7.0054223606786498734,-4.3340005815703896985,0.00000000000000000000,-1.0000000000000000000,-0.0057407812207539501,-0.0029621438764800001,0.99997913434962804046,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8916630001976999508,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,-3.4450169627545998984,-3.3752796378402898369,0.00000000000000000000,-1.0000000000000000000,-0.0054188847513183396,-0.0028756542647194100,0.99998118297326099579,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9197806658681901836,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,0.11537059780582399615,-2.4165623015653201477,0.00000000000000000000,-1.0000000000000000000,-0.0050969878608394404,-0.0027891629660901301,0.99998312049988902217,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9466763499885901822,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-11.515297233409800270,-1.7597324926239299447,0.00000000000000000000,-1.0000000000000000000,-0.0061491818313728100,-0.0027274458484402800,0.99997737404500697255,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9081777078901001054,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-7.9548854057036999520,-0.8010213489928069696,0.00000000000000000000,-1.0000000000000000000,-0.0058272858203384098,-0.0026409579225988798,0.99997953383117799130,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9375166395319598500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,-4.3944923076002195827,0.15768636996761301038,0.00000000000000000000,-1.0000000000000000000,-0.0055053893524875897,-0.0025544683003242301,0.99998158252028801484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9656335839988501312,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,-0.8341171523902169981,1.11639087631894007301,0.00000000000000000000,-1.0000000000000000000,-0.0051834924635822997,-0.0024679769912550300,0.99998352011193203381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9925285567066999270,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-12.464740249884700418,1.77323111747464001730,0.00000000000000000000,-1.0000000000000000000,-0.0062356859430589203,-0.0024062581433991199,0.99997766282180899910,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9528058818922300332,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-8.9043406151980608598,2.73192864246226019275,0.00000000000000000000,-1.0000000000000000000,-0.0059137899693850002,-0.0023197702165906001,0.99997982267360796537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9821440859702801340,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,-5.3439598156359897629,3.69062313762721005971,0.00000000000000000000,-1.0000000000000000000,-0.0055918935388835503,-0.0022332805934230800,0.99998187142789796144,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0102603125284304041,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,-1.7835970644954999286,4.64931481502140009354,0.00000000000000000000,-1.0000000000000000000,-0.0052699966873164796,-0.0021467892835355098,0.99998380908427098034,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0371545769635304168,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-9.6163874844733996383,-8.8257482337614607814,0.00000000000000000000,-1.0000000000000000000,-0.0059761721587404696,-0.0033698159373556800,0.99997646457648103890,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8152427452818100661,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-6.0559512668928396905,-7.8670098499000502556,0.00000000000000000000,-1.0000000000000000000,-0.0056542761802785800,-0.0032833280423122199,0.99997862423046002255,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8445831423057401643,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,-2.4955335678661998422,-6.9082756804240297299,0.00000000000000000000,-1.0000000000000000000,-0.0053323797450227300,-0.0031968384506871200,0.99998067278831703763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8727015324566300691,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,1.06486639932833004884,-5.9495455132558401345,0.00000000000000000000,-1.0000000000000000000,-0.0050104828887348202,-0.0031103471721192202,0.99998261024964396614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8995979311404198597,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneGratingIncAzMis.rayx.csv b/Intern/RayCore/tests/output/PlaneGratingIncAzMis.rayx.csv new file mode 100644 index 000000000..66f5e4849 --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneGratingIncAzMis.rayx.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-9.6163874844732593061,-8.8257482337614963086,0.00000000000000000000,1.00000000000000000000,-0.0059761721587403421,-0.0033698159373556973,0.99997646457648059481,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1847572547230811,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-6.0559512668927855116,-7.8670098498999463387,0.00000000000000000000,1.00000000000000000000,-0.0056542761802784559,-0.0032833280423122655,0.99997862423046024460,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1554168576967640,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,-2.4955335678660426346,-6.9082756804246594484,0.00000000000000000000,1.00000000000000000000,-0.0053323797450226060,-0.0031968384506871516,0.99998067278831714865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1272984675488260,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,1.06486639932853099921,-5.9495455132565604472,0.00000000000000000000,1.00000000000000000000,-0.0050104828887346918,-0.0031103471721193069,0.99998261024964363308,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1004020688651507,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-10.565846382681648663,-5.2927253448253788192,0.00000000000000000000,1.00000000000000000000,-0.0060626772333842466,-0.0030486317917329652,0.99997697462939727497,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1376766624271112,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-7.0054223606785193112,-4.3340005815706916791,0.00000000000000000000,1.00000000000000000000,-0.0057407812207538192,-0.0029621438764800291,0.99997913434962748535,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1083369998032139,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,-3.4450169627545017547,-3.3752796378404252841,0.00000000000000000000,1.00000000000000000000,-0.0054188847513182095,-0.0028756542647194855,0.99998118297326055170,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0802193341351085,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,0.11537059780603292624,-2.4165623015660044892,0.00000000000000000000,1.00000000000000000000,-0.0050969878608393076,-0.0027891629660901362,0.99998312049988868910,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0533236500159546,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-11.515297233409578225,-1.7597324926246853404,0.00000000000000000000,1.00000000000000000000,-0.0061491818313726999,-0.0027274458484402657,0.99997737404500741664,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0918222921118285,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,-7.9548854057035764952,-0.8010213489931442554,0.00000000000000000000,1.00000000000000000000,-0.0058272858203382623,-0.0026409579225990780,0.99997953383117743619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0624833604724699,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,-4.3944923076000659278,0.15768636996760934665,0.00000000000000000000,1.00000000000000000000,-0.0055053893524874501,-0.0025544683003242969,0.99998158252028834791,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0343664160027401,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,-0.8341171523901190765,1.11639087631882061302,0.00000000000000000000,1.00000000000000000000,-0.0051834924635821948,-0.0024679769912550578,0.99998352011193214483,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0074714432976179,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,-12.464740249884616929,1.77323111747512029978,0.00000000000000000000,1.00000000000000000000,-0.0062356859430587972,-0.0024062581433991129,0.99997766282180877706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0471941181112924,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-8.9043406151979933582,2.73192864246237077097,0.00000000000000000000,1.00000000000000000000,-0.0059137899693848666,-0.0023197702165906487,0.99997982267360796537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0178559140313154,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,-5.3439598156357650537,3.69062313762633786851,0.00000000000000000000,1.00000000000000000000,-0.0055918935388834184,-0.0022332805934231897,0.99998187142789773940,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9897396874785044,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,-1.7835970644954119990,4.64931481502120114157,0.00000000000000000000,1.00000000000000000000,-0.0052699966873163764,-0.0021467892835354889,0.99998380908427109137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9628454230405623,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-9.6163874844732593061,-8.8257482337614963086,0.00000000000000000000,1.00000000000000000000,-0.0059761721587403421,-0.0033698159373556973,0.99997646457648059481,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1847572547230811,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-6.0559512668927855116,-7.8670098498999463387,0.00000000000000000000,1.00000000000000000000,-0.0056542761802784559,-0.0032833280423122655,0.99997862423046024460,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1554168576967640,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,-2.4955335678660426346,-6.9082756804246594484,0.00000000000000000000,1.00000000000000000000,-0.0053323797450226060,-0.0031968384506871516,0.99998067278831714865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1272984675488260,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,1.06486639932853099921,-5.9495455132565604472,0.00000000000000000000,1.00000000000000000000,-0.0050104828887346918,-0.0031103471721193069,0.99998261024964363308,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1004020688651507,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneMirror.rayui.csv b/Intern/RayCore/tests/output/PlaneMirror.rayui.csv new file mode 100644 index 000000000..5d9e8bc53 --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneMirror.rayui.csv @@ -0,0 +1,101 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-5.0354696532798302044,0.00000000000000000000,7.75212559103439957652,-1.0000000000000000000,-0.0004999999166666709,0.64240442678404996446,0.76636564539933504924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.94097421640617984195,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-3.9164762687755398928,0.00000000000000000000,7.75212520644893032795,-1.0000000000000000000,-0.0003888888304755400,0.64240445852664296300,0.76636568322868403591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.94047980123468999380,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,-2.7974829804361700524,-0.0000000000000004440,7.75212491800874037295,-1.0000000000000000000,-0.0002777777394833119,0.64240448233358804497,0.76636571160069699715,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.94010898988199009806,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,-1.6784897607860100876,0.00000000000000044408,7.75212472571492039463,-1.0000000000000000000,-0.0001666666450617289,0.64240449820488498833,0.76636573051537204559,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.93986178232444039792,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-0.5594965823493900369,0.00000000000000000000,7.75212462956747039299,-1.0000000000000000000,-0.0000555555485825333,0.64240450614053301592,0.76636573997270895919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.93973817854930974391,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,0.55949658234939003698,0.00000000000000000000,7.75212462956747039299,-1.0000000000000000000,0.00005555554858253330,0.64240450614053301592,0.76636573997270895919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.93973817854930974391,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,1.67848976078601008765,0.00000000000000044408,7.75212472571492039463,-1.0000000000000000000,0.00016666664506172898,0.64240449820488498833,0.76636573051537204559,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.93986178232444039792,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,2.79748298043617005248,-0.0000000000000004440,7.75212491800874037295,-1.0000000000000000000,0.00027777773948331198,0.64240448233358804497,0.76636571160069699715,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.94010898988199009806,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,3.91647626877553989288,0.00000000000000000000,7.75212520644893032795,-1.0000000000000000000,0.00038888883047554000,0.64240445852664296300,0.76636568322868403591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.94047980123468999380,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,5.03546965327983020443,0.00000000000000000000,7.75212559103439957652,-1.0000000000000000000,0.00049999991666667094,0.64240442678404996446,0.76636564539933504924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.94097421640617984195,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,-5.0348095168983402203,0.00000000000000044408,6.02863204595774959670,-1.0000000000000000000,-0.0004999999413580270,0.64248957456742794569,0.76629426239025399958,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.62020717801715008477,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,-3.9159628294101000989,0.00000000000000000000,6.02863174691410019789,-1.0000000000000000000,-0.0003888888496799279,0.64248960631002305365,0.76629430021960498464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61971289359644021743,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-2.7971162380549898784,-0.0000000000000004440,6.02863152263055024349,-1.0000000000000000000,-0.0002777777532007319,0.64248963011696902380,0.76629432859161894509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61934218030728960258,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-1.6782697153663899136,0.00000000000000044408,6.02863137310819041658,-1.0000000000000000000,-0.0001666666532921810,0.64248964598826696636,0.76629434750629499273,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61909503812784993925,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,-0.5594232338776959911,0.00000000000000044408,6.02863129834809008400,-1.0000000000000000000,-0.0000555555513260173,0.64248965392391499396,0.76629435696363301655,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61897146704176986276,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,0.55942323387769599118,0.00000000000000044408,6.02863129834809008400,-1.0000000000000000000,0.00005555555132601739,0.64248965392391499396,0.76629435696363301655,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61897146704176986276,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,1.67826971536638991366,0.00000000000000044408,6.02863137310819041658,-1.0000000000000000000,0.00016666665329218100,0.64248964598826696636,0.76629434750629499273,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61909503812784993925,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,2.79711623805498987849,-0.0000000000000004440,6.02863152263055024349,-1.0000000000000000000,0.00027777775320073197,0.64248963011696902380,0.76629432859161894509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61934218030728960258,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,3.91596282941010009892,0.00000000000000000000,6.02863174691410019789,-1.0000000000000000000,0.00038888884967992797,0.64248960631002305365,0.76629430021960498464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61971289359644021743,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,5.03480951689834022033,0.00000000000000044408,6.02863204595774959670,-1.0000000000000000000,0.00049999994135802700,0.64248957456742794569,0.76629426239025399958,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.62020717801715008477,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +20 ,0 ,-5.0341495554586996874,0.00000000000000000000,4.30559524158061979193,-1.0000000000000000000,-0.0004999999598765440,0.64257471441883595719,0.76622286992074994937,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29991365132628011735,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +21 ,0 ,-3.9154495261105299874,0.00000000000000044408,4.30559502803327998066,-1.0000000000000000000,-0.0003888888640832200,0.64257474616143195333,0.76622290775010304386,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29941949759813990539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +22 ,0 ,-2.7967495928637098323,-0.0000000000000004440,4.30559486787467982082,-1.0000000000000000000,-0.0002777777634887980,0.64257476996837903371,0.76622293612211700430,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29904888233249993234,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +23 ,0 ,-1.6780497282607000908,0.00000000000000000000,4.30559476110155969763,-1.0000000000000000000,-0.0001666666594650209,0.64257478583967697627,0.76622295503679405115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29880180550025992047,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +24 ,0 ,-0.5593499048439789511,-0.0000000000000004440,4.30559470771499963603,-1.0000000000000000000,-0.0000555555533836304,0.64257479377532600306,0.76622296449413296315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29867826708687017500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +25 ,0 ,0.55934990484397895116,-0.0000000000000004440,4.30559470771499963603,-1.0000000000000000000,0.00005555555338363049,0.64257479377532600306,0.76622296449413296315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29867826708687017500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +26 ,0 ,1.67804972826070009084,0.00000000000000000000,4.30559476110155969763,-1.0000000000000000000,0.00016666665946502099,0.64257478583967697627,0.76622295503679405115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29880180550025992047,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +27 ,0 ,2.79674959286370983235,-0.0000000000000004440,4.30559486787467982082,-1.0000000000000000000,0.00027777776348879800,0.64257476996837903371,0.76622293612211700430,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29904888233249993234,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +28 ,0 ,3.91544952611052998747,0.00000000000000044408,4.30559502803327998066,-1.0000000000000000000,0.00038888886408322000,0.64257474616143195333,0.76622290775010304386,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29941949759813990539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +29 ,0 ,5.03414955545869968744,0.00000000000000000000,4.30559524158061979193,-1.0000000000000000000,0.00049999995987654402,0.64257471441883595719,0.76622286992074994937,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29991365132628011735,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +30 ,0 ,-5.0334897688750297461,0.00000000000000000000,2.58301495366587996471,-1.0000000000000000000,-0.0004999999722222229,0.64265984633722295082,0.76615146799170497082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.98009341560646001667,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +31 ,0 ,-3.9149363588100198896,0.00000000000000000000,2.58301482557153017083,-1.0000000000000000000,-0.0003888888736854139,0.64265987807981994617,0.76615150582105795429,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97959939251632000001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +32 ,0 ,-2.7963830448146000939,0.00000000000000000000,2.58301472950186017385,-1.0000000000000000000,-0.0002777777703475079,0.64265990188676702654,0.76615153419307402415,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97922887522691004491,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +33 ,0 ,-1.6778297994403099657,0.00000000000000000000,2.58301466545576996480,-1.0000000000000000000,-0.0001666666635802470,0.64265991775806596830,0.76615155310775095998,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97898186371457995846,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +34 ,0 ,-0.5592765952386959948,-0.0000000000000002220,2.58301463343217996282,-1.0000000000000000000,-0.0000555555547553725,0.64265992569371499509,0.76615156256508998300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97885835795932996106,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +35 ,0 ,0.55927659523869599489,-0.0000000000000002220,2.58301463343217996282,-1.0000000000000000000,0.00005555555475537259,0.64265992569371499509,0.76615156256508998300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97885835795932996106,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +36 ,0 ,1.67782979944030996577,0.00000000000000000000,2.58301466545576996480,-1.0000000000000000000,0.00016666666358024700,0.64265991775806596830,0.76615155310775095998,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97898186371457995846,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +37 ,0 ,2.79638304481460009398,0.00000000000000000000,2.58301472950186017385,-1.0000000000000000000,0.00027777777034750799,0.64265990188676702654,0.76615153419307402415,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97922887522691004491,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +38 ,0 ,3.91493635881001988963,0.00000000000000000000,2.58301482557153017083,-1.0000000000000000000,0.00038888887368541399,0.64265987807981994617,0.76615150582105795429,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97959939251632000001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +39 ,0 ,5.03348976887502974619,0.00000000000000000000,2.58301495366587996471,-1.0000000000000000000,0.00049999997222222297,0.64265984633722295082,0.76615146799170497082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.98009341560646001667,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +40 ,0 ,-5.0328301570614897286,0.00000000000000000000,0.86089095812219595948,-1.0000000000000000000,-0.0004999999783950620,0.64274497032153798947,0.76608005660399902669,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.66074625028341005261,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +41 ,0 ,-3.9144233274418200885,0.00000000000000000000,0.86089091543535800621,-1.0000000000000000000,-0.0003888888784865110,0.64274500206413498482,0.76608009443335300936,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.66025235777306101603,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +42 ,0 ,-2.7960165938600001211,0.00000000000000000000,0.86089088342077202398,-1.0000000000000000000,-0.0002777777737768629,0.64274502587108295337,0.76608012280536896820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.65988193841622000412,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +43 ,0 ,-1.6776099288766199713,-0.0000000000000000555,0.86089086207843701359,-1.0000000000000000000,-0.0001666666656378600,0.64274504174238200615,0.76608014172004701425,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.65963499219287802244,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +44 ,0 ,-0.5592033050523109727,0.00000000000000011102,0.86089085140618504254,-1.0000000000000000000,-0.0000555555554412436,0.64274504967803103294,0.76608015117738503807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.65951151908302596549,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +45 ,0 ,0.55920330505231097273,0.00000000000000011102,0.86089085140618504254,-1.0000000000000000000,0.00005555555544124369,0.64274504967803103294,0.76608015117738503807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.65951151908302596549,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +46 ,0 ,1.67760992887661997130,-0.0000000000000000555,0.86089086207843701359,-1.0000000000000000000,0.00016666666563786000,0.64274504174238200615,0.76608014172004701425,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.65963499219287802244,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +47 ,0 ,2.79601659386000012119,0.00000000000000000000,0.86089088342077202398,-1.0000000000000000000,0.00027777777377686299,0.64274502587108295337,0.76608012280536896820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.65988193841622000412,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +48 ,0 ,3.91442332744182008852,0.00000000000000000000,0.86089091543535800621,-1.0000000000000000000,0.00038888887848651101,0.64274500206413498482,0.76608009443335300936,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.66025235777306101603,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +49 ,0 ,5.03283015706148972867,0.00000000000000000000,0.86089095812219595948,-1.0000000000000000000,0.00049999997839506201,0.64274497032153798947,0.76608005660399902669,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.66074625028341005261,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +50 ,0 ,-5.0321707199323002512,0.00000000000000000000,-0.8607769690014439589,-1.0000000000000000000,-0.0004999999783950620,0.64283008637072902580,0.76600863575851496634,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6581280650789269603,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +51 ,0 ,-3.9139104319392199471,-0.0000000000000000555,-0.8607769263262420311,-1.0000000000000000000,-0.0003888888784865110,0.64283011811332602114,0.76600867358786894900,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6586218270695100018,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +52 ,0 ,-2.7956502399522298318,0.00000000000000000000,-0.8607768943184870291,-1.0000000000000000000,-0.0002777777737768629,0.64283014192027398969,0.76600870195988501887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6589921485337979500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +53 ,0 ,-1.6773901165410300961,0.00000000000000000000,-0.8607768729814280206,-1.0000000000000000000,-0.0001666666656378600,0.64283015779157304248,0.76600872087456295389,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6592390294990759791,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +54 ,0 ,-0.5591300342752909546,0.00000000000000000000,-0.8607768623139819830,-1.0000000000000000000,-0.0000555555554412436,0.64283016572722295745,0.76600873033190097771,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6593624699780780140,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +55 ,0 ,0.55913003427529095468,0.00000000000000000000,-0.8607768623139819830,-1.0000000000000000000,0.00005555555544124369,0.64283016572722295745,0.76600873033190097771,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6593624699780780140,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +56 ,0 ,1.67739011654103009618,0.00000000000000000000,-0.8607768729814280206,-1.0000000000000000000,0.00016666666563786000,0.64283015779157304248,0.76600872087456295389,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6592390294990759791,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +57 ,0 ,2.79565023995222983188,0.00000000000000000000,-0.8607768943184870291,-1.0000000000000000000,0.00027777777377686299,0.64283014192027398969,0.76600870195988501887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6589921485337979500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +58 ,0 ,3.91391043193921994713,-0.0000000000000000555,-0.8607769263262420311,-1.0000000000000000000,0.00038888887848651101,0.64283011811332602114,0.76600867358786894900,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6586218270695100018,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +59 ,0 ,5.03217071993230025128,0.00000000000000000000,-0.8607769690014439589,-1.0000000000000000000,0.00049999997839506201,0.64283008637072902580,0.76600863575851496634,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6581280650789269603,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +60 ,0 ,-5.0315114574017396620,0.00000000000000000000,-2.5819890515169099387,-1.0000000000000000000,-0.0004999999722222229,0.64291519448374701006,0.76593720545613497296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9765297507819898914,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +61 ,0 ,-3.9133976722355199306,0.00000000000000000000,-2.5819889235240398583,-1.0000000000000000000,-0.0003888888736854139,0.64291522622634400541,0.76593724328548795643,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9770233823092000502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +62 ,0 ,-2.7952839830436801982,0.00000000000000000000,-2.5819888275299298641,-1.0000000000000000000,-0.0002777777703475079,0.64291525003329197396,0.76593727165750302710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9773936059264098918,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +63 ,0 ,-1.6771703624049600911,0.00000000000000000000,-2.5819887635324101360,-1.0000000000000000000,-0.0001666666635802470,0.64291526590459002754,0.76593729057218096212,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9776404216590899309,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +64 ,0 ,-0.5590567828981130027,0.00000000000000000000,-2.5819887315347398448,-1.0000000000000000000,-0.0000555555547553725,0.64291527384023905433,0.76593730002951898594,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9777638295236099619,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +65 ,0 ,0.55905678289811300274,0.00000000000000000000,-2.5819887315347398448,-1.0000000000000000000,0.00005555555475537259,0.64291527384023905433,0.76593730002951898594,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9777638295236099619,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +66 ,0 ,1.67717036240496009114,0.00000000000000000000,-2.5819887635324101360,-1.0000000000000000000,0.00016666666358024700,0.64291526590459002754,0.76593729057218096212,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9776404216590899309,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +67 ,0 ,2.79528398304368019822,0.00000000000000000000,-2.5819888275299298641,-1.0000000000000000000,0.00027777777034750799,0.64291525003329197396,0.76593727165750302710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9773936059264098918,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +68 ,0 ,3.91339767223551993069,0.00000000000000000000,-2.5819889235240398583,-1.0000000000000000000,0.00038888887368541399,0.64291522622634400541,0.76593724328548795643,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9770233823092000502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +69 ,0 ,5.03151145740173966203,0.00000000000000000000,-2.5819890515169099387,-1.0000000000000000000,0.00049999997222222297,0.64291519448374701006,0.76593720545613497296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9765297507819898914,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +70 ,0 ,-5.0308523693841395996,0.00000000000000000000,-4.3027455130915797099,-1.0000000000000000000,-0.0004999999598765440,0.64300029465954000595,0.76586576569773900935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2944590269762601408,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +71 ,0 ,-3.9128850482641102104,0.00000000000000088817,-4.3027452998264799077,-1.0000000000000000000,-0.0003888888640832200,0.64300032640213600210,0.76586580352709099361,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2949525280982898678,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +72 ,0 ,-2.7949178230867501859,0.00000000000000044408,-4.3027451398787404102,-1.0000000000000000000,-0.0002777777634887980,0.64300035020908297145,0.76586583189910595326,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2953226539120801241,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +73 ,0 ,-1.6769506664398698969,-0.0000000000000008881,-4.3027450332472696459,-1.0000000000000000000,-0.0001666666594650209,0.64300036608038102503,0.76586585081378300010,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2955694044430901001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +74 ,0 ,-0.5589835509112579536,0.00000000000000088817,-4.3027449799299102295,-1.0000000000000000000,-0.0000555555533836304,0.64300037401603105102,0.76586586027112102392,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2956927797040398431,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +75 ,0 ,0.55898355091125795368,0.00000000000000088817,-4.3027449799299102295,-1.0000000000000000000,0.00005555555338363049,0.64300037401603105102,0.76586586027112102392,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2956927797040398431,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +76 ,0 ,1.67695066643986989696,-0.0000000000000008881,-4.3027450332472696459,-1.0000000000000000000,0.00016666665946502099,0.64300036608038102503,0.76586585081378300010,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2955694044430901001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +77 ,0 ,2.79491782308675995594,0.00000000000000044408,-4.3027451398787404102,-1.0000000000000000000,0.00027777776348879800,0.64300035020908297145,0.76586583189910595326,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2953226539120801241,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +78 ,0 ,3.91288504826411021042,0.00000000000000088817,-4.3027452998264799077,-1.0000000000000000000,0.00038888886408322000,0.64300032640213600210,0.76586580352709099361,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2949525280982898678,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +79 ,0 ,5.03085236938413959961,0.00000000000000000000,-4.3027455130915797099,-1.0000000000000000000,0.00049999995987654402,0.64300029465954000595,0.76586576569773900935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2944590269762601408,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +80 ,0 ,-5.0301934557938796643,0.00000000000000000000,-6.0230465772527104206,-1.0000000000000000000,-0.0004999999413580270,0.64308538689705796453,0.76579431648421103506,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6119161136721196214,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +81 ,0 ,-3.9123725599584000534,-0.0000000000000004440,-6.0230462787618899156,-1.0000000000000000000,-0.0003888888496799279,0.64308541863965296148,0.76579435431356202013,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6124094844472001142,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +82 ,0 ,-2.7945517600338800612,-0.0000000000000004440,-6.0230460548943201004,-1.0000000000000000000,-0.0002777777532007319,0.64308544244659904265,0.76579438268557498137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6127795125030397471,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +83 ,0 ,-1.6767310286171999145,0.00000000000000000000,-6.0230459056478302670,-1.0000000000000000000,-0.0001666666532921810,0.64308545831789698521,0.76579440160025102901,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6130261978578301906,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +84 ,0 ,-0.5589103383052119733,0.00000000000000000000,-6.0230458310245902353,-1.0000000000000000000,-0.0000555555513260173,0.64308546625354501280,0.76579441105758905283,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6131495405334099757,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +85 ,0 ,0.55891033830521197334,0.00000000000000000000,-6.0230458310245902353,-1.0000000000000000000,0.00005555555132601739,0.64308546625354501280,0.76579441105758905283,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6131495405334099757,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +86 ,0 ,1.67673102861719991452,0.00000000000000000000,-6.0230459056478302670,-1.0000000000000000000,0.00016666665329218100,0.64308545831789698521,0.76579440160025102901,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6130261978578301906,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +87 ,0 ,2.79455176003388006122,-0.0000000000000004440,-6.0230460548943201004,-1.0000000000000000000,0.00027777775320073197,0.64308544244659904265,0.76579438268557498137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6127795125030397471,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +88 ,0 ,3.91237255995840005340,-0.0000000000000004440,-6.0230462787618899156,-1.0000000000000000000,0.00038888884967992797,0.64308541863965296148,0.76579435431356202013,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6124094844472001142,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +89 ,0 ,5.03019345579387966438,0.00000000000000000000,-6.0230465772527104206,-1.0000000000000000000,0.00049999994135802700,0.64308538689705796453,0.76579431648421103506,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6119161136721196214,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +90 ,0 ,-5.0295347165454096227,0.00000000000000000000,-7.7428924673940500156,-1.0000000000000000000,-0.0004999999166666709,0.64317047119525094789,0.76572285781643101287,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9289012307490303044,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +91 ,0 ,-3.9118602072518298129,0.00000000000000044408,-7.7428920837196804072,-1.0000000000000000000,-0.0003888888304755400,0.64317050293784294723,0.76572289564577999954,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9293944712335395763,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +92 ,0 ,-2.7941857938375300740,0.00000000000000000000,-7.7428917959660701342,-1.0000000000000000000,-0.0002777777394833119,0.64317052674478802920,0.76572292401779296078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9297644015714503495,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +93 ,0 ,-1.6765114489084400606,0.00000000000000000000,-7.7428916041288902150,-1.0000000000000000000,-0.0001666666450617289,0.64317054261608497256,0.76572294293246800922,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9300110217845896087,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +94 ,0 ,-0.5588371450704679999,-0.0000000000000004440,-7.7428915082113798362,-1.0000000000000000000,-0.0000555555485825333,0.64317055055173399935,0.76572295238980603304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9301343318857098196,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +95 ,0 ,0.55883714507046799990,-0.0000000000000004440,-7.7428915082113798362,-1.0000000000000000000,0.00005555554858253330,0.64317055055173399935,0.76572295238980603304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9301343318857098196,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +96 ,0 ,1.67651144890844006063,0.00000000000000000000,-7.7428916041288902150,-1.0000000000000000000,0.00016666664506172898,0.64317054261608497256,0.76572294293246800922,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9300110217845896087,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +97 ,0 ,2.79418579383753984402,0.00000000000000000000,-7.7428917959660701342,-1.0000000000000000000,0.00027777773948331198,0.64317052674478802920,0.76572292401779296078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9297644015714503495,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +98 ,0 ,3.91186020725182981294,0.00000000000000044408,-7.7428920837196804072,-1.0000000000000000000,0.00038888883047554000,0.64317050293784294723,0.76572289564577999954,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9293944712335395763,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +99 ,0 ,5.02953471654540962276,0.00000000000000000000,-7.7428924673940500156,-1.0000000000000000000,0.00049999991666667094,0.64317047119525094789,0.76572285781643101287,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9289012307490303044,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneMirror.rayx.csv b/Intern/RayCore/tests/output/PlaneMirror.rayx.csv new file mode 100644 index 000000000..1d66998c0 --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneMirror.rayx.csv @@ -0,0 +1,101 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-5.0354696532798302044,0.00000000000000026406,7.75212559103398568538,1.00000000000000000000,-0.0004999999166666708,0.64240442678405007548,0.76636564539933516027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9409742164061754,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +1 ,0 ,-3.9164762687755398928,-0.0000000000000000469,7.75212520644774372158,1.00000000000000000000,-0.0003888888304755396,0.64240445852664296300,0.76636568322868425795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9404798012346873,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +2 ,0 ,-2.7974829804361660556,-0.0000000000000000524,7.75212491800730152391,1.00000000000000000000,-0.0002777777394833116,0.64240448233358804497,0.76636571160069655306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9401089898801728,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +3 ,0 ,-1.6784897607860125301,-0.0000000000000001777,7.75212472571468858006,1.00000000000000000000,-0.0001666666450617288,0.64240449820488498833,0.76636573051537182355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9398617823244421,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +4 ,0 ,-0.5594965823493900369,-0.0000000000000001834,7.75212462956685843806,1.00000000000000000000,-0.0000555555485825332,0.64240450614053346001,0.76636573997270929226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9397381785493053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +5 ,0 ,0.55949658234939003698,-0.0000000000000001834,7.75212462956685843806,1.00000000000000000000,0.00005555554858253328,0.64240450614053346001,0.76636573997270929226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9397381785493053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +6 ,0 ,1.67848976078601341832,-0.0000000000000001777,7.75212472571468858006,1.00000000000000000000,0.00016666664506172898,0.64240449820488498833,0.76636573051537182355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9398617823244421,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +7 ,0 ,2.79748298043616649977,-0.0000000000000000524,7.75212491800730152391,1.00000000000000000000,0.00027777773948331170,0.64240448233358804497,0.76636571160069655306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9401089898801728,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +8 ,0 ,3.91647626877553989288,-0.0000000000000000469,7.75212520644774372158,1.00000000000000000000,0.00038888883047553962,0.64240445852664296300,0.76636568322868425795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9404798012346873,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +9 ,0 ,5.03546965327983020443,0.00000000000000026406,7.75212559103398568538,1.00000000000000000000,0.00049999991666667084,0.64240442678405007548,0.76636564539933516027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9409742164061754,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +10 ,0 ,-5.0348095168983402203,0.00000000000000025089,6.02863204595784551997,1.00000000000000000000,-0.0004999999413580270,0.64248957456742816773,0.76629426239025422162,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6202071780171536,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +11 ,0 ,-3.9159628294101005430,-0.0000000000000002633,6.02863174691409398064,1.00000000000000000000,-0.0003888888496799280,0.64248960631002272059,0.76629430021960531771,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6197128935982618,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +12 ,0 ,-2.7971162380549885462,0.00000000000000005795,6.02863152263102453076,1.00000000000000000000,-0.0002777777532007321,0.64248963011696891278,0.76629432859161894509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6193421803072851,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +13 ,0 ,-1.6782697153663896916,-0.0000000000000001408,6.02863137311067109891,1.00000000000000000000,-0.0001666666532921812,0.64248964598826652228,0.76629434750629499273,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6190950381278526,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +14 ,0 ,-0.5594232338776959911,-0.0000000000000003531,6.02863129834998723310,1.00000000000000000000,-0.0000555555513260174,0.64248965392391543804,0.76629435696363312757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6189714670435932,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +15 ,0 ,0.55942323387769599118,-0.0000000000000003531,6.02863129834998723310,1.00000000000000000000,0.00005555555132601741,0.64248965392391543804,0.76629435696363312757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6189714670435932,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +16 ,0 ,1.67826971536639080184,-0.0000000000000001408,6.02863137311067109891,1.00000000000000000000,0.00016666665329218135,0.64248964598826652228,0.76629434750629499273,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6190950381278526,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +17 ,0 ,2.79711623805498854622,0.00000000000000005795,6.02863152263102453076,1.00000000000000000000,0.00027777775320073219,0.64248963011696891278,0.76629432859161894509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6193421803072851,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +18 ,0 ,3.91596282941010054301,-0.0000000000000002633,6.02863174691409398064,1.00000000000000000000,0.00038888884967992802,0.64248960631002272059,0.76629430021960531771,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6197128935982618,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +19 ,0 ,5.03480951689834022033,0.00000000000000025089,6.02863204595784551997,1.00000000000000000000,0.00049999994135802700,0.64248957456742816773,0.76629426239025422162,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6202071780171536,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +20 ,0 ,-5.0341495554587023519,0.00000000000000027384,4.30559524158059936382,1.00000000000000000000,-0.0004999999598765443,0.64257471441883617924,0.76622286992075039346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2999136513262783,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +21 ,0 ,-3.9154495261105290992,-0.0000000000000003078,4.30559502803375160340,1.00000000000000000000,-0.0003888888640832195,0.64257474616143184231,0.76622290775010282182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2994194975981372,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +22 ,0 ,-2.7967495928637062796,0.00000000000000011835,4.30559486787361489490,1.00000000000000000000,-0.0002777777634887976,0.64257476996837903371,0.76622293612211755942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2990488823324994,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +23 ,0 ,-1.6780497282606992026,0.00000000000000034737,4.30559476110120531444,1.00000000000000000000,-0.0001666666594650206,0.64257478583967730934,0.76622295503679438422,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2988018055002612,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +24 ,0 ,-0.5593499048439790621,0.00000000000000009561,4.30559470771449337433,1.00000000000000000000,-0.0000555555533836305,0.64257479377532644715,0.76622296449413274110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2986782670868706,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +25 ,0 ,0.55934990484397906218,0.00000000000000009561,4.30559470771449337433,1.00000000000000000000,0.00005555555338363054,0.64257479377532644715,0.76622296449413274110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2986782670868706,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +26 ,0 ,1.67804972826070031288,0.00000000000000034737,4.30559476110120531444,1.00000000000000000000,0.00016666665946502072,0.64257478583967730934,0.76622295503679438422,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2988018055002612,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +27 ,0 ,2.79674959286370672373,0.00000000000000011835,4.30559486787361489490,1.00000000000000000000,0.00027777776348879767,0.64257476996837903371,0.76622293612211755942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2990488823324994,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +28 ,0 ,3.91544952611052909929,-0.0000000000000003078,4.30559502803375160340,1.00000000000000000000,0.00038888886408321957,0.64257474616143184231,0.76622290775010282182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2994194975981372,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +29 ,0 ,5.03414955545870235198,0.00000000000000027384,4.30559524158059936382,1.00000000000000000000,0.00049999995987654434,0.64257471441883617924,0.76622286992075039346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2999136513262783,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +30 ,0 ,-5.0334897688750279698,-0.0000000000000001013,2.58301495366455524660,1.00000000000000000000,-0.0004999999722222227,0.64265984633722317287,0.76615146799170497082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9800934156046423,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +31 ,0 ,-3.9149363588100221100,-0.0000000000000001409,2.58301482557106920623,1.00000000000000000000,-0.0003888888736854140,0.64265987807981961310,0.76615150582105839838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9795993925145012,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +32 ,0 ,-2.7963830448146036466,-0.0000000000000001431,2.58301472950146226992,1.00000000000000000000,-0.0002777777703475080,0.64265990188676735961,0.76615153419307391313,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9792288752250897,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +33 ,0 ,-1.6778297994403128523,0.00000000000000002561,2.58301466545269065022,1.00000000000000000000,-0.0001666666635802468,0.64265991775806607932,0.76615155310775107100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9789818637109419,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +34 ,0 ,-0.5592765952386963279,-0.0000000000000001219,2.58301463343084058976,1.00000000000000000000,-0.0000555555547553726,0.64265992569371532816,0.76615156256508964993,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9788583579593250,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +35 ,0 ,0.55927659523869632796,-0.0000000000000001219,2.58301463343084058976,1.00000000000000000000,0.00005555555475537264,0.64265992569371532816,0.76615156256508964993,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9788583579593250,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +36 ,0 ,1.67782979944031396257,0.00000000000000002561,2.58301466545269065022,1.00000000000000000000,0.00016666666358024700,0.64265991775806607932,0.76615155310775107100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9789818637109419,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +37 ,0 ,2.79638304481460453487,-0.0000000000000001431,2.58301472950146226992,1.00000000000000000000,0.00027777777034750810,0.64265990188676735961,0.76615153419307391313,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9792288752250897,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +38 ,0 ,3.91493635881002211007,-0.0000000000000001409,2.58301482557106920623,1.00000000000000000000,0.00038888887368541404,0.64265987807981961310,0.76615150582105839838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9795993925145012,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +39 ,0 ,5.03348976887502796984,-0.0000000000000001013,2.58301495366455524660,1.00000000000000000000,0.00049999997222222275,0.64265984633722317287,0.76615146799170497082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9800934156046423,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +40 ,0 ,-5.0328301570614870641,0.00000000000000004280,0.86089095812249016859,1.00000000000000000000,-0.0004999999783950620,0.64274497032153787845,0.76608005660399947078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6607462502834096,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +41 ,0 ,-3.9144233274418231971,0.00000000000000000674,0.86089091543579454590,1.00000000000000000000,-0.0003888888784865112,0.64274500206413476277,0.76608009443335334243,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6602523577730607,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +42 ,0 ,-2.7960165938599974566,0.00000000000000002486,0.86089088342127983999,1.00000000000000000000,-0.0002777777737768632,0.64274502587108273132,0.76608012280536919025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6598819384180387,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +43 ,0 ,-1.6776099288766206374,-0.0000000000000000394,0.86089086207793208416,1.00000000000000000000,-0.0001666666656378600,0.64274504174238156206,0.76608014172004657016,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6596349921928776,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +44 ,0 ,-0.5592033050523107506,0.00000000000000001783,0.86089085140575116739,1.00000000000000000000,-0.0000555555554412436,0.64274504967803103294,0.76608015117738526011,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6595115190830256,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +45 ,0 ,0.55920330505231075068,0.00000000000000001783,0.86089085140575116739,1.00000000000000000000,0.00005555555544124369,0.64274504967803103294,0.76608015117738526011,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6595115190830256,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +46 ,0 ,1.67760992887662174766,-0.0000000000000000394,0.86089086207793208416,1.00000000000000000000,0.00016666666563786014,0.64274504174238156206,0.76608014172004657016,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6596349921928776,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +47 ,0 ,2.79601659385999790075,0.00000000000000002486,0.86089088342127983999,1.00000000000000000000,0.00027777777377686332,0.64274502587108273132,0.76608012280536919025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6598819384180387,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +48 ,0 ,3.91442332744182319714,0.00000000000000000674,0.86089091543579454590,1.00000000000000000000,0.00038888887848651128,0.64274500206413476277,0.76608009443335334243,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6602523577730607,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +49 ,0 ,5.03283015706148706414,0.00000000000000004280,0.86089095812249016859,1.00000000000000000000,0.00049999997839506201,0.64274497032153787845,0.76608005660399947078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6607462502834096,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +50 ,0 ,-5.0321707199322993631,-0.0000000000000000410,-0.8607769690014165364,1.00000000000000000000,-0.0004999999783950620,0.64283008637072946989,0.76600863575851541042,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34187193491925427,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +51 ,0 ,-3.9139104319392155062,0.00000000000000000591,-0.8607769263258520098,1.00000000000000000000,-0.0003888888784865112,0.64283011811332635421,0.76600867358786928207,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34137817293049010,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +52 ,0 ,-2.7956502399522316082,0.00000000000000000270,-0.8607768943206984824,1.00000000000000000000,-0.0002777777737768632,0.64283014192027443378,0.76600870195988512989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34100785146438283,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +53 ,0 ,-1.6773901165410287639,-0.0000000000000000201,-0.8607768729829161635,1.00000000000000000000,-0.0001666666656378600,0.64283015779157326452,0.76600872087456250980,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34076097050092357,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +54 ,0 ,-0.5591300342752913987,-0.0000000000000000240,-0.8607768623135182428,1.00000000000000000000,-0.0000555555554412436,0.64283016572722273540,0.76600873033190131078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34063753002192243,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +55 ,0 ,0.55913003427529139877,-0.0000000000000000240,-0.8607768623135182428,1.00000000000000000000,0.00005555555544124369,0.64283016572722273540,0.76600873033190131078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34063753002192243,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +56 ,0 ,1.67739011654102987414,-0.0000000000000000201,-0.8607768729829161635,1.00000000000000000000,0.00016666666563786014,0.64283015779157326452,0.76600872087456250980,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34076097050092357,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +57 ,0 ,2.79565023995223249642,0.00000000000000000270,-0.8607768943206984824,1.00000000000000000000,0.00027777777377686332,0.64283014192027443378,0.76600870195988512989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34100785146438283,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +58 ,0 ,3.91391043193921550624,0.00000000000000000591,-0.8607769263258520098,1.00000000000000000000,0.00038888887848651128,0.64283011811332635421,0.76600867358786928207,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34137817293049010,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +59 ,0 ,5.03217071993229936310,-0.0000000000000000410,-0.8607769690014165364,1.00000000000000000000,0.00049999997839506201,0.64283008637072946989,0.76600863575851541042,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34187193491925427,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +60 ,0 ,-5.0315114574017405502,0.00000000000000009689,-2.5819890515164729549,1.00000000000000000000,-0.0004999999722222227,0.64291519448374734313,0.76593720545613475092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02347024921800766,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +61 ,0 ,-3.9133976722355230393,0.00000000000000015395,-2.5819889235231658908,1.00000000000000000000,-0.0003888888736854140,0.64291522622634378336,0.76593724328548817847,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02297661769262049,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +62 ,0 ,-2.7952839830436828627,0.00000000000000005296,-2.5819888275286912993,1.00000000000000000000,-0.0002777777703475080,0.64291525003329152987,0.76593727165750369323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02260639407359121,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +63 ,0 ,-1.6771703624049629777,-0.0000000000000001021,-2.5819887635320375451,1.00000000000000000000,-0.0001666666635802468,0.64291526590459013856,0.76593729057218085110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02235957834091095,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +64 ,0 ,-0.5590567828981133358,0.00000000000000000686,-2.5819887315352301193,1.00000000000000000000,-0.0000555555547553726,0.64291527384023949842,0.76593730002951943003,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02223617047820880,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +65 ,0 ,0.55905678289811333581,0.00000000000000000686,-2.5819887315352301193,1.00000000000000000000,0.00005555555475537264,0.64291527384023949842,0.76593730002951943003,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02223617047820880,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +66 ,0 ,1.67717036240496408794,-0.0000000000000001021,-2.5819887635320375451,1.00000000000000000000,0.00016666666358024700,0.64291526590459013856,0.76593729057218085110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02235957834091095,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +67 ,0 ,2.79528398304368330684,0.00000000000000005296,-2.5819888275286912993,1.00000000000000000000,0.00027777777034750810,0.64291525003329152987,0.76593727165750369323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02260639407359121,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +68 ,0 ,3.91339767223552303931,0.00000000000000015395,-2.5819889235231658908,1.00000000000000000000,0.00038888887368541404,0.64291522622634378336,0.76593724328548817847,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02297661769262049,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +69 ,0 ,5.03151145740174055021,0.00000000000000009689,-2.5819890515164729549,1.00000000000000000000,0.00049999997222222275,0.64291519448374734313,0.76593720545613475092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02347024921800766,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +70 ,0 ,-5.0308523693841422641,-0.0000000000000003654,-4.3027455130901337554,1.00000000000000000000,-0.0004999999598765443,0.64300029465954033902,0.76586576569773912037,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70554097302556328,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +71 ,0 ,-3.9128850482641142072,0.00000000000000027543,-4.3027452998266255690,1.00000000000000000000,-0.0003888888640832195,0.64300032640213611312,0.76586580352709154873,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70504747190352645,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +72 ,0 ,-2.7949178230867546268,0.00000000000000019464,-4.3027451398772225132,1.00000000000000000000,-0.0002777777634887976,0.64300035020908319349,0.76586583189910639735,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70467734608791943,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +73 ,0 ,-1.6769506664398656781,-0.0000000000000002437,-4.3027450332469863170,1.00000000000000000000,-0.0001666666594650206,0.64300036608038158014,0.76586585081378311112,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70443059555691434,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +74 ,0 ,-0.5589835509112576206,0.00000000000000008640,-4.3027449799298436161,1.00000000000000000000,-0.0000555555533836305,0.64300037401603071796,0.76586586027112157903,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70430722029595926,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +75 ,0 ,0.55898355091125762061,0.00000000000000008640,-4.3027449799298436161,1.00000000000000000000,0.00005555555338363054,0.64300037401603071796,0.76586586027112157903,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70430722029595926,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +76 ,0 ,1.67695066643986678833,-0.0000000000000002437,-4.3027450332469863170,1.00000000000000000000,0.00016666665946502072,0.64300036608038158014,0.76586585081378311112,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70443059555691434,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +77 ,0 ,2.79491782308675507096,0.00000000000000019464,-4.3027451398772225132,1.00000000000000000000,0.00027777776348879767,0.64300035020908319349,0.76586583189910639735,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70467734608791943,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +78 ,0 ,3.91288504826411420722,0.00000000000000027543,-4.3027452998266255690,1.00000000000000000000,0.00038888886408321957,0.64300032640213611312,0.76586580352709154873,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70504747190352645,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +79 ,0 ,5.03085236938414226415,-0.0000000000000003654,-4.3027455130901337554,1.00000000000000000000,0.00049999995987654434,0.64300029465954033902,0.76586576569773912037,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70554097302556328,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +80 ,0 ,-5.0301934557938849934,-0.0000000000000002115,-6.0230465772531633916,1.00000000000000000000,-0.0004999999413580270,0.64308538689705829760,0.76579431648421070200,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38808388632605783,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +81 ,0 ,-3.9123725599583987211,0.00000000000000019466,-6.0230462787619201137,1.00000000000000000000,-0.0003888888496799280,0.64308541863965285045,0.76579435431356179808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38759051555280166,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +82 ,0 ,-2.7945517600338840580,0.00000000000000013157,-6.0230460548939923626,1.00000000000000000000,-0.0002777777532007321,0.64308544244659904265,0.76579438268557542546,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38722048749878013,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +83 ,0 ,-1.6767310286171996924,-0.0000000000000000235,-6.0230459056483702795,1.00000000000000000000,-0.0001666666532921812,0.64308545831789676316,0.76579440160025147310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38697380214034637,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +84 ,0 ,-0.5589103383052115292,0.00000000000000015248,-6.0230458310270771349,1.00000000000000000000,-0.0000555555513260174,0.64308546625354567893,0.76579441105758949692,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38685045946476748,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +85 ,0 ,0.55891033830521152925,0.00000000000000015248,-6.0230458310270771349,1.00000000000000000000,0.00005555555132601741,0.64308546625354567893,0.76579441105758949692,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38685045946476748,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +86 ,0 ,1.67673102861720080269,-0.0000000000000000235,-6.0230459056483702795,1.00000000000000000000,0.00016666665329218135,0.64308545831789676316,0.76579440160025147310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38697380214034637,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +87 ,0 ,2.79455176003388405803,0.00000000000000013157,-6.0230460548939923626,1.00000000000000000000,0.00027777775320073219,0.64308544244659904265,0.76579438268557542546,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38722048749878013,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +88 ,0 ,3.91237255995839872113,0.00000000000000019466,-6.0230462787619201137,1.00000000000000000000,0.00038888884967992802,0.64308541863965285045,0.76579435431356179808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38759051555280166,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +89 ,0 ,5.03019345579388499345,-0.0000000000000002115,-6.0230465772531633916,1.00000000000000000000,0.00049999994135802700,0.64308538689705829760,0.76579431648421070200,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38808388632605783,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +90 ,0 ,-5.0295347165454087345,-0.0000000000000001735,-7.7428924673923358312,1.00000000000000000000,-0.0004999999166666708,0.64317047119525050380,0.76572285781643145696,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.07109876925278513,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +91 ,0 ,-3.9118602072518280365,0.00000000000000003336,-7.7428920837198571547,1.00000000000000000000,-0.0003888888304755396,0.64317050293784350234,0.76572289564578055465,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.07060552876646397,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +92 ,0 ,-2.7941857938375349590,-0.0000000000000000521,-7.7428917959647396429,1.00000000000000000000,-0.0002777777394833116,0.64317052674478847329,0.76572292401779284976,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.07023559843037219,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +93 ,0 ,-1.6765114489084427251,0.00000000000000029173,-7.7428916041279940429,1.00000000000000000000,-0.0001666666450617288,0.64317054261608541665,0.76572294293246800922,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.06998897821722493,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +94 ,0 ,-0.5588371450704679999,0.00000000000000002262,-7.7428915082096212429,1.00000000000000000000,-0.0000555555485825332,0.64317055055173388833,0.76572295238980558895,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.06986566811428929,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +95 ,0 ,0.55883714507046799990,0.00000000000000002262,-7.7428915082096212429,1.00000000000000000000,0.00005555554858253328,0.64317055055173388833,0.76572295238980558895,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.06986566811428929,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +96 ,0 ,1.67651144890844361334,0.00000000000000029173,-7.7428916041279940429,1.00000000000000000000,0.00016666664506172898,0.64317054261608541665,0.76572294293246800922,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.06998897821722493,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +97 ,0 ,2.79418579383753584721,-0.0000000000000000521,-7.7428917959647396429,1.00000000000000000000,0.00027777773948331170,0.64317052674478847329,0.76572292401779284976,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.07023559843037219,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +98 ,0 ,3.91186020725182803658,0.00000000000000003336,-7.7428920837198571547,1.00000000000000000000,0.00038888883047553962,0.64317050293784350234,0.76572289564578055465,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.07060552876646397,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +99 ,0 ,5.02953471654540873458,-0.0000000000000001735,-7.7428924673923358312,1.00000000000000000000,0.00049999991666667084,0.64317047119525050380,0.76572285781643145696,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.07109876925278513,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneMirrorDef.rayui.csv b/Intern/RayCore/tests/output/PlaneMirrorDef.rayui.csv new file mode 100644 index 000000000..67b3de4d4 --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneMirrorDef.rayui.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-3.9256564129349698077,-6.7251911205093897194,0.00000000000000000000,-1.0000000000000000000,-0.0003535533154915260,-0.0006123723940040609,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000290089999999999,0.00275000045940033011,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-0.3629997221534569940,-5.7705795046367596157,0.00000000000000000000,-1.0000000000000000000,-0.0000315780996868780,-0.0005260993949464150,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000298975999999999,0.00152777794198754993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,3.19965673326978006230,-4.8159685844961197531,0.00000000000000000000,-1.0000000000000000000,0.00029039713400527201,-0.0004398263910957439,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000298902000000000,0.00152777794221492990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,6.76231374038559973627,-3.8613581491986899152,0.00000000000000000000,-1.0000000000000000000,0.00061237234980991304,-0.0003535533920380440,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000150033000,-0.0000008966829999999,0.00275000045769502017,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-4.8712088905667396687,-3.1963412327651998801,0.00000000000000000000,-1.0000000000000000000,-0.0004398263789958780,-0.0002903971523313980,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000150374000,-0.0000008977029999999,0.00152777793982750002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-1.3085520943405000160,-2.2417300104173500940,0.00000000000000000000,-1.0000000000000000000,-0.0001178511274162090,-0.0002041241436878109,0.99999997222222203330,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000289435999999999,0.00030555556008948802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,2.25410436108279021993,-1.2871190902771298958,0.00000000000000000000,-1.0000000000000000000,0.00020412414205097401,-0.0001178511302512810,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000150524000,-0.0000008981469999999,0.00030555555940736699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,5.81676126275386007336,-0.3325082614547629766,0.00000000000000000000,-1.0000000000000000000,0.00052609939363064297,-0.0000315781216076937,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000298268000000000,0.00152777794232861001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-5.8167612627537996772,0.33250826145434297931,0.00000000000000000000,-1.0000000000000000000,-0.0005260993936306429,0.00003157812160769379,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000297930000000000,0.00152777794187386006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-2.2541043610827200538,1.28711909027663007343,0.00000000000000000000,-1.0000000000000000000,-0.0002041241420509710,0.00011785113025125300,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000297856000000000,0.00030555556122635602,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,1.30855209434054997608,2.24173001041696018376,0.00000000000000000000,-1.0000000000000000000,0.00011785112741621300,0.00020412414368778299,0.99999997222222203330,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000288785000000000,0.00030555556213585099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,4.87120889056679029494,3.19634123276486015186,0.00000000000000000000,-1.0000000000000000000,0.00043982637899587801,0.00029039715233139800,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000288709000000000,0.00152777794050961996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-6.7623137403856601324,3.86135814919914999165,0.00000000000000000000,-1.0000000000000000000,-0.0006123723498099159,0.00035355339203807100,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000151509000,-0.0000009010720000000,0.00275000045780871005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-3.1996567332697298802,4.81596858449572984284,0.00000000000000000000,-1.0000000000000000000,-0.0002903971340052720,0.00043982639109574399,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00152777794164649007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,0.36299972215348502713,5.77057950463654023565,0.00000000000000000000,-1.0000000000000000000,0.00003157809968687800,0.00052609939494641501,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000297226999999999,0.00152777794141912008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,3.92565641293496980779,6.72519112050940037761,0.00000000000000000000,-1.0000000000000000000,0.00035355331549152200,0.00061237239400408795,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000288136000000000,0.00275000045758133984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-3.9256564129349698077,-6.7251911205093897194,0.00000000000000000000,-1.0000000000000000000,-0.0003535533154915260,-0.0006123723940040609,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000290089999999999,0.00275000045940033011,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-0.3629997221534569940,-5.7705795046367596157,0.00000000000000000000,-1.0000000000000000000,-0.0000315780996868780,-0.0005260993949464150,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000298975999999999,0.00152777794198754993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,3.19965673326978006230,-4.8159685844961197531,0.00000000000000000000,-1.0000000000000000000,0.00029039713400527201,-0.0004398263910957439,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000298902000000000,0.00152777794221492990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,6.76231374038559973627,-3.8613581491986899152,0.00000000000000000000,-1.0000000000000000000,0.00061237234980991304,-0.0003535533920380440,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000150033000,-0.0000008966829999999,0.00275000045769502017,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneMirrorDef.rayx.csv b/Intern/RayCore/tests/output/PlaneMirrorDef.rayx.csv new file mode 100644 index 000000000..bd299f5cd --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneMirrorDef.rayx.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-3.9256564129349693637,-6.7251911205090371126,0.00000000000000000000,1.00000000000000000000,-0.0003535533154915165,-0.0006123723940040745,0.99999975000002083724,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004598550,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-0.3629997221535449236,-5.7705795046360499611,0.00000000000000000000,1.00000000000000000000,-0.0000315780996868760,-0.0005260993949463913,0.99999986111111538455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779421012,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,3.19965673326977295687,-4.8159685844961295231,0.00000000000000000000,1.00000000000000000000,0.00029039713400527266,-0.0004398263910957611,0.99999986111111549558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779421012,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,6.76231374038567967232,-3.8613581491991513239,0.00000000000000000000,1.00000000000000000000,0.00061237234980991738,-0.0003535533920380660,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004562170,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-4.8712088905667698668,-3.1963412327649631805,0.00000000000000000000,1.00000000000000000000,-0.0004398263789958782,-0.0002903971523314137,0.99999986111111549558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779402822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-1.3085520943405324345,-2.2417300104169322061,0.00000000000000000000,1.00000000000000000000,-0.0001178511274162125,-0.0002041241436877472,0.99999997222222236636,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003055555589526,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,2.25410436108274359057,-1.2871190902764755303,0.00000000000000000000,1.00000000000000000000,0.00020412414205097338,-0.0001178511302512706,0.99999997222222236636,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003055555589526,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,5.81676126275381299990,-0.3325082614545094572,0.00000000000000000000,1.00000000000000000000,0.00052609939363064438,-0.0000315781216076816,0.99999986111111538455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779402822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-5.8167612627538201053,0.33250826145418521662,0.00000000000000000000,1.00000000000000000000,-0.0005260993936306346,0.00003157812160762096,0.99999986111111549558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779421012,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,-2.2541043610827120602,1.28711909027667248395,0.00000000000000000000,1.00000000000000000000,-0.0002041241420509758,0.00011785113025128751,0.99999997222222247739,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003055555607716,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,1.30855209434052754957,2.24173001041732078419,0.00000000000000000000,1.00000000000000000000,0.00011785112741621702,0.00020412414368781964,0.99999997222222247739,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003055555625905,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,4.87120889056677519590,3.19634123276495030196,0.00000000000000000000,1.00000000000000000000,0.00043982637899588105,0.00029039715233140857,0.99999986111111549558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779402822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,-6.7623137403857072058,3.86135814919956610324,0.00000000000000000000,1.00000000000000000000,-0.0006123723498099103,0.00035355339203812835,0.99999975000002083724,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-3.1996567332697636310,4.81596858449616505026,0.00000000000000000000,1.00000000000000000000,-0.0002903971340052698,0.00043982639109575597,0.99999986111111538455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779402822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,0.36299972215343534465,5.77057950463699054211,0.00000000000000000000,1.00000000000000000000,0.00003157809968687395,0.00052609939494647930,0.99999986111111538455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779421012,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,3.92565641293501110808,6.72519112050938616675,0.00000000000000000000,1.00000000000000000000,0.00035355331549152862,0.00061237239400409922,0.99999975000002083724,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-3.9256564129349693637,-6.7251911205090371126,0.00000000000000000000,1.00000000000000000000,-0.0003535533154915165,-0.0006123723940040745,0.99999975000002083724,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004598550,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-0.3629997221535449236,-5.7705795046360499611,0.00000000000000000000,1.00000000000000000000,-0.0000315780996868760,-0.0005260993949463913,0.99999986111111538455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779421012,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,3.19965673326977295687,-4.8159685844961295231,0.00000000000000000000,1.00000000000000000000,0.00029039713400527266,-0.0004398263910957611,0.99999986111111549558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779421012,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,6.76231374038567967232,-3.8613581491991513239,0.00000000000000000000,1.00000000000000000000,0.00061237234980991738,-0.0003535533920380660,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004562170,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneMirrorMis.rayui.csv b/Intern/RayCore/tests/output/PlaneMirrorMis.rayui.csv new file mode 100644 index 000000000..ba42e2c46 --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneMirrorMis.rayui.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-6.5462700817834198474,-3.5753983484748901311,0.00000000000000000000,-1.0000000000000000000,-0.0015323200272202299,-0.0025060014182077300,0.99999568596680799004,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006763339999999,-0.6765032467684479744,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-2.8582243953275998649,-3.5536141276050599024,0.00000000000000000000,-1.0000000000000000000,-0.0011989928626242600,-0.0025040336995305898,0.99999614610824705263,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006969900000000,-0.6815871979042640305,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,0.82981831286897900223,-3.5318305354122898620,0.00000000000000000000,-1.0000000000000000000,-0.0008656655644787470,-0.0025020657581819299,0.99999649513889399266,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006969859999999,-0.6854489976523150396,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,4.51785885756063976259,-3.5100475670836601693,0.00000000000000000000,-1.0000000000000000000,-0.0005323381698200700,-0.0025000975943804400,0.99999673305870895312,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006763219999999,-0.6880886481569630230,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-6.5678338049265496678,0.07765432229325600066,0.00000000000000000000,-1.0000000000000000000,-0.0015342888334181599,-0.0021726748057880902,0.99999646271472597547,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006749679999999,-0.6850203530312910515,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-2.8797905400787100482,0.09943683417585939821,0.00000000000000000000,-1.0000000000000000000,-0.0012009616317858299,-0.0021707070868923501,0.99999692285621699650,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006749639999999,-0.6901042968638649854,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,0.80824974410883498876,0.12121912475957499766,0.00000000000000000000,-1.0000000000000000000,-0.0008676342966039459,-0.0021687391453250898,0.99999727188690201717,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006749599999999,-0.6939660910684319894,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,4.49628786238906030803,0.14300119885658099661,0.00000000000000000000,-1.0000000000000000000,-0.0005343068649088880,-0.0021667709813048799,0.99999750980674395606,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006749560000000,-0.6966057377833290154,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-6.5893974969576296629,3.73070172245479980688,0.00000000000000000000,-1.0000000000000000000,-0.0015362574691395400,-0.0018393479519601999,0.99999712835192700044,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003584200,-0.0000000207391000000,-0.6923153017320370361,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-2.9013566537143198331,3.75248252535592019540,0.00000000000000000000,-1.0000000000000000000,-0.0012029302675072100,-0.0018373802330644000,0.99999758849341802147,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006736029999999,-0.6973992388229820482,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,0.78668120646768602277,3.77426351433431994664,0.00000000000000000000,-1.0000000000000000000,-0.0008696029323253350,-0.0018354122914971699,0.99999793752410304215,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006943379999999,-0.7012610279107319710,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,4.47471689833998009788,3.79604469420233980869,0.00000000000000000000,-1.0000000000000000000,-0.0005362755006302770,-0.0018334441274769600,0.99999817544394498103,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.7039006711357840284,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-6.6109611626861797262,7.38374466677159002614,0.00000000000000000000,-1.0000000000000000000,-0.0015382259341656600,-0.0015060208937603700,0.99999768287833701307,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006722510000000,-0.6983880969182789666,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-2.9229227410444398316,7.40552376069691042914,0.00000000000000000000,-1.0000000000000000000,-0.0012048987695696899,-0.0015040531750831500,0.99999814301977696384,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003597900,-0.0000000207786000000,-0.7034720278311400454,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,0.76511269513496105165,7.42730344807339015744,0.00000000000000000000,-1.0000000000000000000,-0.0008715714714241769,-0.0015020852337344901,0.99999849205042301569,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006722430000000,-0.7073338122327189614,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,4.45314596060229028751,7.44908373371390020167,0.00000000000000000000,-1.0000000000000000000,-0.0005382440767654990,-0.0015001170699330301,0.99999872997023897536,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006930180000000,-0.7099734522614650211,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-6.5462700817834198474,-3.5753983484748901311,0.00000000000000000000,-1.0000000000000000000,-0.0015323200272202299,-0.0025060014182077300,0.99999568596680799004,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006763339999999,-0.6765032467684479744,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-2.8582243953275998649,-3.5536141276050599024,0.00000000000000000000,-1.0000000000000000000,-0.0011989928626242600,-0.0025040336995305898,0.99999614610824705263,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006969900000000,-0.6815871979042640305,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,0.82981831286897900223,-3.5318305354122898620,0.00000000000000000000,-1.0000000000000000000,-0.0008656655644787470,-0.0025020657581819299,0.99999649513889399266,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006969859999999,-0.6854489976523150396,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,4.51785885756063976259,-3.5100475670836601693,0.00000000000000000000,-1.0000000000000000000,-0.0005323381698200700,-0.0025000975943804400,0.99999673305870895312,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006763219999999,-0.6880886481569630230,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneMirrorMis.rayx.csv b/Intern/RayCore/tests/output/PlaneMirrorMis.rayx.csv new file mode 100644 index 000000000..63e3d1b73 --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneMirrorMis.rayx.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-6.5462700817834278410,-3.5753983484756024502,0.00000000000000000000,1.00000000000000000000,-0.0015323200272202321,-0.0025060014182077369,0.99999568596680754595,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3234967532316659,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-2.8582243953276025294,-3.5536141276051629311,0.00000000000000000000,1.00000000000000000000,-0.0011989928626242568,-0.0025040336995305412,0.99999614610824716365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3184128020966454,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,0.82981831286897500543,-3.5318305354128858297,0.00000000000000000000,1.00000000000000000000,-0.0008656655644787478,-0.0025020657581819923,0.99999649513889388163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3145510023477982,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,4.51785885756063887441,-3.5100475670848307885,0.00000000000000000000,1.00000000000000000000,-0.0005323381698200701,-0.0025000975943805644,0.99999673305870928619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3119113518423546,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-6.5678338049265478915,0.07765432229175946166,0.00000000000000000000,1.00000000000000000000,-0.0015342888334181565,-0.0021726748057881825,0.99999646271472564240,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3149796469660941,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-2.8797905400787229268,0.09943683417553161874,0.00000000000000000000,1.00000000000000000000,-0.0012009616317858258,-0.0021707070868923193,0.99999692285621644138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3098957031361351,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,0.80824974410883199116,0.12121912475927637542,0.00000000000000000000,1.00000000000000000000,-0.0008676342966039463,-0.0021687391453250569,0.99999727188690212820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3060339089315675,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,4.49628786238906386074,0.14300119885636169980,0.00000000000000000000,1.00000000000000000000,-0.0005343068649088881,-0.0021667709813048868,0.99999750980674373401,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3033942622132599,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-6.5893974969576456501,3.73070172245461684212,0.00000000000000000000,1.00000000000000000000,-0.0015362574691395452,-0.0018393479519602064,0.99999712835192677840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3076846982712595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,-2.9013566537143282708,3.75248252535637494275,0.00000000000000000000,1.00000000000000000000,-0.0012029302675072143,-0.0018373802330644718,0.99999758849341746635,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3026007611824752,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,0.78668120646768069370,3.77426351433465434581,0.00000000000000000000,1.00000000000000000000,-0.0008696029323253346,-0.0018354122914971539,0.99999793752410315317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.2987389720929058,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,4.47471689833996855156,3.79604469420267998103,0.00000000000000000000,1.00000000000000000000,-0.0005362755006302773,-0.0018334441274769840,0.99999817544394475898,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.2960993288670579,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,-6.6109611626862019306,7.38374466677233076694,0.00000000000000000000,1.00000000000000000000,-0.0015382259341656613,-0.0015060208937603316,0.99999768287833690205,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3016119030817208,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-2.9229227410444469370,7.40552376069643880640,0.00000000000000000000,1.00000000000000000000,-0.0012048987695696860,-0.0015040531750831916,0.99999814301977640873,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.2965279721702245,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,0.76511269513495516747,7.42730344807366371640,0.00000000000000000000,1.00000000000000000000,-0.0008715714714241768,-0.0015020852337345141,0.99999849205042334876,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.2926661877718288,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,4.45314596060227607665,7.44908373371348542235,0.00000000000000000000,1.00000000000000000000,-0.0005382440767654997,-0.0015001170699330103,0.99999872997023842025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.2900265477437642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-6.5462700817834278410,-3.5753983484756024502,0.00000000000000000000,1.00000000000000000000,-0.0015323200272202321,-0.0025060014182077369,0.99999568596680754595,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3234967532316659,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-2.8582243953276025294,-3.5536141276051629311,0.00000000000000000000,1.00000000000000000000,-0.0011989928626242568,-0.0025040336995305412,0.99999614610824716365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3184128020966454,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,0.82981831286897500543,-3.5318305354128858297,0.00000000000000000000,1.00000000000000000000,-0.0008656655644787478,-0.0025020657581819923,0.99999649513889388163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3145510023477982,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,4.51785885756063887441,-3.5100475670848307885,0.00000000000000000000,1.00000000000000000000,-0.0005323381698200701,-0.0025000975943805644,0.99999673305870928619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3119113518423546,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/PlaneMirror_refl_seeded.rayx.csv b/Intern/RayCore/tests/output/PlaneMirror_refl_seeded.rayx.csv new file mode 100644 index 000000000..b0dc0eb43 --- /dev/null +++ b/Intern/RayCore/tests/output/PlaneMirror_refl_seeded.rayx.csv @@ -0,0 +1,307 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-5.0466620698997646243,-0.0000000000000002789,28.7602367255999062933,3.00000000000000000000,-0.0004999999166666708,0.17315573039890028161,0.98489433089550615374,100.000000000000000000,0.31759754053448807642,0.31759754053448807642,0.00000000000000001228,0.00000000000000000075,10028.3258111870818538,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +1 ,0 ,-4.2702524198358817741,0.00000000000000009323,28.7602356975238713232,3.00000000000000000000,-0.0004230768575709328,0.17315573656392332924,0.98489436585908940458,100.000000000000000000,0.31759752556571668735,0.31759752556571668735,0.00000000000000001228,0.00000000000000000075,10028.3254541393689578,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +2 ,0 ,-3.4938428201962699048,0.00000000000000002199,28.7602348407912487004,3.00000000000000000000,-0.0003461537959717815,0.17315574170144260035,0.98489439499540898381,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,10028.3251565996197314,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +3 ,0 ,-2.7174332618128755889,0.00000000000000005224,28.7602341554067066908,1.00000000000000000000,-0.0002692307323243828,0.17315574581145806720,0.98489441830446500247,100.000000000000000000,0.31759750311255929844,0.31759750311255929844,0.00000000000000001228,0.00000000000000000075,10028.3249185678359935,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +3 ,1 ,-2.9790385330943727204,-5.4800006576683779613,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,-0.0004999999791666953,0.99999983875740372507,100.000000000000000000,0.31759750311255929844,0.31759750311255929844,0.00000000000000001228,0.00000000000000000075,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,2 ,-2.9790385330943727204,336.870627145755747733,10941.5668913962690567,0.00000000000000000000,-0.0002692307323243828,0.34155024188663674067,0.93986347933196789927,100.000000000000000000,0.31759750311255929844,0.31759750311255929844,0.00000000000000001228,0.00000000000000000075,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-1.9410237355176491735,0.00000000000000012628,28.7602336413671295645,1.00000000000000000000,-0.0001923076670839029,0.17315574889396970204,0.98489443578625712749,100.000000000000000000,0.31759749562817440882,0.31759749562817440882,0.00000000000000001228,0.00000000000000000075,10028.3247400440031924,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +4 ,1 ,-2.1278846414618417526,-5.4800005600346919365,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,-0.0004999999791665995,0.99999985650888068011,100.000000000000000000,0.31759749562817440882,0.31759749562817440882,0.00000000000000001228,0.00000000000000000075,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,2 ,-2.1278846414618417526,336.870627237501423678,10941.5668913628760492,0.00000000000000000000,-0.0001923076670839029,0.34155024795799948655,0.93986349601289975730,100.000000000000000000,0.31759749562817440882,0.31759749562817440882,0.00000000000000001228,0.00000000000000000075,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-1.1646142321425427823,-0.0000000000000000811,28.7602332986756401567,3.00000000000000000000,-0.0001153846007055078,0.17315575094897742158,0.98489444744078513682,100.000000000000000000,0.31759749063858433437,0.31759749063858433437,0.00000000000000001228,0.00000000000000000075,10028.3246210281158710,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +6 ,0 ,-0.3882047425195060963,-0.0000000000000002605,28.7602331273291156321,3.00000000000000000000,-0.0000384615336443635,0.17315575197648130911,0.98489445326804925251,100.000000000000000000,0.31759748814378885306,0.31759748814378885306,0.00000000000000001228,0.00000000000000000075,10028.3245615201740292,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +7 ,0 ,0.38820474251950609634,-0.0000000000000002605,28.7602331273291156321,3.00000000000000000000,0.00003846153364436359,0.17315575197648130911,0.98489445326804925251,100.000000000000000000,0.31759748814378885306,0.31759748814378885306,0.00000000000000001228,0.00000000000000000075,10028.3245615201740292,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +8 ,0 ,1.16461423214254278235,-0.0000000000000000811,28.7602332986756401567,3.00000000000000000000,0.00011538460070550785,0.17315575094897742158,0.98489444744078513682,100.000000000000000000,0.31759749063858433437,0.31759749063858433437,0.00000000000000001228,0.00000000000000000075,10028.3246210281158710,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +9 ,0 ,1.94102373551765006176,0.00000000000000012628,28.7602336413671295645,3.00000000000000000000,0.00019230766708390299,0.17315574889396970204,0.98489443578625712749,100.000000000000000000,0.31759749562817440882,0.31759749562817440882,0.00000000000000001228,0.00000000000000000075,10028.3247400440031924,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +10 ,0 ,2.71743326181287558895,0.00000000000000005224,28.7602341554067066908,3.00000000000000000000,0.00026923073232438285,0.17315574581145806720,0.98489441830446500247,100.000000000000000000,0.31759750311255929844,0.31759750311255929844,0.00000000000000001228,0.00000000000000000075,10028.3249185678359935,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +11 ,0 ,3.49384282019626990489,0.00000000000000002199,28.7602348407912487004,1.00000000000000000000,0.00034615379597178157,0.17315574170144260035,0.98489439499540898381,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,10028.3251565996197314,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +11 ,1 ,3.83019245977470079722,-5.4800007878450722742,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,-0.0004999999791666261,0.99999981508876789604,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,11000.0020340239261713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,2 ,3.83019245977470079722,336.870627023429676683,10941.5668914407924603,0.00000000000000000000,0.00034615379597178157,0.34155023379148657936,0.93986345709072538490,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,11000.0020340239261713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,4.27025241983588266236,0.00000000000000009323,28.7602356975238713232,3.00000000000000000000,0.00042307685757093292,0.17315573656392332924,0.98489436585908940458,100.000000000000000000,0.31759752556571668735,0.31759752556571668735,0.00000000000000001228,0.00000000000000000075,10028.3254541393689578,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +13 ,0 ,5.04666206989976462438,-0.0000000000000002789,28.7602367255999062933,3.00000000000000000000,0.00049999991666667084,0.17315573039890028161,0.98489433089550615374,100.000000000000000000,0.31759754053448807642,0.31759754053448807642,0.00000000000000001228,0.00000000000000000075,10028.3258111870818538,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +14 ,0 ,-5.0444781135724197085,0.00000000000000022878,24.3249423472432404480,1.00000000000000000000,-0.0004999999344181487,0.17323149099837553688,0.98488100830838709587,100.000000000000000000,0.31741362901572067745,0.31741362901572067745,0.00000000000000001228,0.00000000000000000075,10023.9575419242228235,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +14 ,1 ,-5.5325004583333790009,-4.6369239363244529883,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,-0.0004230769104554765,0.99999978550297352608,100.000000000000000000,0.31741362901572067745,0.31741362901572067745,0.00000000000000001228,0.00000000000000000075,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,2 ,-5.5325004583333790009,337.662860119559013583,10941.2785421752014372,0.00000000000000000000,-0.0004999999344181487,0.34162250771258501069,0.93983712005018715807,100.000000000000000000,0.31741362901572067745,0.31741362901572067745,0.00000000000000001228,0.00000000000000000075,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,-4.2684044568996215573,-0.0000000000000002866,24.3249414780894674947,3.00000000000000000000,-0.0004230768725914143,0.17323149716339880654,0.98488104327197145693,100.000000000000000000,0.31741361405287193964,0.31741361405287193964,0.00000000000000001228,0.00000000000000000075,10023.9571851881064503,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +16 ,0 ,-3.4923308505961161429,-0.0000000000000000776,24.3249407537969943859,3.00000000000000000000,-0.0003461538082612664,0.17323150230091827195,0.98488107240829225741,100.000000000000000000,0.31741360158383091771,0.31741360158383091771,0.00000000000000001228,0.00000000000000000075,10023.9568879080252372,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +17 ,0 ,-2.7162572855038482622,0.00000000000000023353,24.3249401743611421977,3.00000000000000000000,-0.0002692307418828711,0.17323150641093387758,0.98488109571734894220,100.000000000000000000,0.31741359160859838883,0.31741359160859838883,0.00000000000000001228,0.00000000000000000075,10023.9566500839700893,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +18 ,0 ,-1.9401837524647629340,-0.0000000000000001717,24.3249397397850337654,3.00000000000000000000,-0.0001923076739113946,0.17323150949344559568,0.98488111319914173336,100.000000000000000000,0.31741358412717363135,0.31741358412717363135,0.00000000000000001228,0.00000000000000000075,10023.9564717159355495,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +19 ,0 ,-1.1641102423208065097,0.00000000000000030527,24.3249394500671058949,3.00000000000000000000,-0.0001153846048020029,0.17323151154845342625,0.98488112485367018678,100.000000000000000000,0.31741357913955725589,0.31741357913955725589,0.00000000000000001228,0.00000000000000000075,10023.9563528039143420,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +20 ,0 ,-0.3880367459139266173,-0.0000000000000003069,24.3249393052089288858,3.00000000000000000000,-0.0000384615350098619,0.17323151257595734153,0.98488113068093452451,100.000000000000000000,0.31741357664574942898,0.31741357664574942898,0.00000000000000001228,0.00000000000000000075,10023.9562933479064668,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +21 ,0 ,0.38803674591392661730,-0.0000000000000003069,24.3249393052089288858,1.00000000000000000000,0.00003846153500986195,0.17323151257595734153,0.98488113068093452451,100.000000000000000000,0.31741357664574942898,0.31741357664574942898,0.00000000000000001228,0.00000000000000000075,10023.9562933479064668,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +21 ,1 ,0.42557692328554058702,-4.6369233580355766477,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,-0.0004230769104555338,0.99999990976331476488,100.000000000000000000,0.31741357664574942898,0.31741357664574942898,0.00000000000000001228,0.00000000000000000075,11000.0009926036236720,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,2 ,0.42557692328554058702,337.662860662972775571,10941.2785419774136244,0.00000000000000000000,0.00003846153500986195,0.34162255021212467598,0.93983723681671282879,100.000000000000000000,0.31741357664574942898,0.31741357664574942898,0.00000000000000001228,0.00000000000000000075,11000.0009926036236720,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,0 ,1.16411024232080650975,0.00000000000000030527,24.3249394500671058949,1.00000000000000000000,0.00011538460480200291,0.17323151154845342625,0.98488112485367018678,100.000000000000000000,0.31741357913955725589,0.31741357913955725589,0.00000000000000001228,0.00000000000000000075,10023.9563528039143420,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +22 ,1 ,1.27673077486345043496,-4.6369233855734313110,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,-0.0004230769104554946,0.99999990384615544680,100.000000000000000000,0.31741357913955725589,0.31741357913955725589,0.00000000000000001228,0.00000000000000000075,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,2 ,1.27673077486345043496,337.662860637095661786,10941.2785419868323515,0.00000000000000000000,0.00011538460480200291,0.34162254818833703851,0.93983723125640195039,100.000000000000000000,0.31741357913955725589,0.31741357913955725589,0.00000000000000001228,0.00000000000000000075,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +23 ,0 ,1.94018375246476337814,-0.0000000000000001717,24.3249397397850337654,3.00000000000000000000,0.00019230767391139474,0.17323150949344559568,0.98488111319914173336,100.000000000000000000,0.31741358412717363135,0.31741358412717363135,0.00000000000000001228,0.00000000000000000075,10023.9564717159355495,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +24 ,0 ,2.71625728550384826220,0.00000000000000023353,24.3249401743611421977,3.00000000000000000000,0.00026923074188287118,0.17323150641093387758,0.98488109571734894220,100.000000000000000000,0.31741359160859838883,0.31741359160859838883,0.00000000000000001228,0.00000000000000000075,10023.9566500839700893,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +25 ,0 ,3.49233085059611614298,-0.0000000000000000776,24.3249407537969943859,1.00000000000000000000,0.00034615380826126648,0.17323150230091827195,0.98488107240829225741,100.000000000000000000,0.31741360158383091771,0.31741360158383091771,0.00000000000000001228,0.00000000000000000075,10023.9568879080252372,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +25 ,1 ,3.83019245977469990904,-4.6369236334113166364,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,-0.0004230769104555277,0.99999985059172302737,100.000000000000000000,0.31741360158383091771,0.31741360158383091771,0.00000000000000001228,0.00000000000000000075,11000.0016434912886325,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,2 ,3.83019245977469990904,337.662860404204252517,10941.2785420715990767,0.00000000000000000000,0.00034615380826126648,0.34162252997424841227,0.93983718121360471098,100.000000000000000000,0.31741360158383091771,0.31741360158383091771,0.00000000000000001228,0.00000000000000000075,11000.0016434912886325,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,0 ,4.26840445689962244557,-0.0000000000000002866,24.3249414780894674947,3.00000000000000000000,0.00042307687259141442,0.17323149716339880654,0.98488104327197145693,100.000000000000000000,0.31741361405287193964,0.31741361405287193964,0.00000000000000001228,0.00000000000000000075,10023.9571851881064503,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +27 ,0 ,5.04447811357241970853,0.00000000000000022878,24.3249423472432404480,1.00000000000000000000,0.00049999993441814875,0.17323149099837553688,0.98488100830838709587,100.000000000000000000,0.31741362901572067745,0.31741362901572067745,0.00000000000000001228,0.00000000000000000075,10023.9575419242228235,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +27 ,1 ,5.53250045833337900091,-4.6369239363244529883,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,-0.0004230769104554765,0.99999978550297352608,100.000000000000000000,0.31741362901572067745,0.31741362901572067745,0.00000000000000001228,0.00000000000000000075,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +27 ,2 ,5.53250045833337900091,337.662860119559013583,10941.2785421752014372,0.00000000000000000000,0.00049999993441814875,0.34162250771258501069,0.93983712005018715807,100.000000000000000000,0.31741362901572067745,0.31741362901572067745,0.00000000000000001228,0.00000000000000000075,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +28 ,0 ,-5.0422960666489791137,-0.0000000000000000696,19.8935256876367638767,3.00000000000000000000,-0.0004999999492110472,0.17330725057281240464,0.98486767989356982511,100.000000000000000000,0.31722979275823964817,0.31722979275823964817,0.00000000000000001228,0.00000000000000000075,10019.5931510672453441,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +29 ,0 ,-4.2665581096126645732,0.00000000000000025183,19.8935249771322730794,3.00000000000000000000,-0.0004230768851084824,0.17330725673783586859,0.98486771485715529639,100.000000000000000000,0.31722977780131100811,0.31722977780131100811,0.00000000000000001228,0.00000000000000000075,10019.5927946423144021,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +30 ,0 ,-3.4908202028907449054,0.00000000000000025756,19.8935243850467529114,1.00000000000000000000,-0.0003461538185025041,0.17330726187535547277,0.98486774399347698505,100.000000000000000000,0.31722976533720426139,0.31722976533720426139,0.00000000000000001228,0.00000000000000000075,10019.5924976215574133,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +30 ,1 ,-3.8301924597747007972,-3.7938465340525349134,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,-0.0003461538392409538,0.99999988017751939572,100.000000000000000000,0.31722976533720426139,0.31722976533720426139,0.00000000000000001228,0.00000000000000000075,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,2 ,-3.8301924597747007972,338.455093733225282903,10940.9901927212413283,0.00000000000000000000,-0.0003461538185025041,0.34169482413557522582,0.93981089977531739876,100.000000000000000000,0.31722976533720426139,0.31722976533720426139,0.00000000000000001228,0.00000000000000000075,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,0 ,-2.7150823373351400391,-0.0000000000000002109,19.8935239113755386597,3.00000000000000000000,-0.0002692307498482782,0.17330726598537121718,0.98486776730253444700,100.000000000000000000,0.31722975536591885292,0.31722975536591885292,0.00000000000000001228,0.00000000000000000075,10019.5922600049598258,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +32 ,0 ,-1.9393445037977838918,-0.0000000000000002785,19.8935235561248511260,3.00000000000000000000,-0.0001923076796009712,0.17330726906788301855,0.98486778478432768224,100.000000000000000000,0.31722974788745472718,0.31722974788745472718,0.00000000000000001228,0.00000000000000000075,10019.5920817925216397,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +33 ,0 ,-1.1636066931306010552,0.00000000000000026134,19.8935233192900184917,3.00000000000000000000,-0.0001153846082157488,0.17330727112289090463,0.98486779643885657975,100.000000000000000000,0.31722974290181205070,0.31722974290181205070,0.00000000000000001228,0.00000000000000000075,10019.5919629842283029,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +34 ,0 ,-0.3878688961855217276,0.00000000000000015545,19.8935232008710478623,3.00000000000000000000,-0.0000384615361477772,0.17330727215039484767,0.98486780226612091748,100.000000000000000000,0.31722974040899099001,0.31722974040899099001,0.00000000000000001228,0.00000000000000000075,10019.5919035800816345,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +35 ,0 ,0.38786889618552172764,0.00000000000000015545,19.8935232008710478623,3.00000000000000000000,0.00003846153614777726,0.17330727215039484767,0.98486780226612091748,100.000000000000000000,0.31722974040899099001,0.31722974040899099001,0.00000000000000001228,0.00000000000000000075,10019.5919035800816345,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +36 ,0 ,1.16360669313060105523,0.00000000000000026134,19.8935233192900184917,1.00000000000000000000,0.00011538460821574884,0.17330727112289090463,0.98486779643885657975,100.000000000000000000,0.31722974290181205070,0.31722974290181205070,0.00000000000000001228,0.00000000000000000075,10019.5919629842283029,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +36 ,1 ,1.27673077486345043496,-3.7938463312756374179,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,-0.0003461538392409908,0.99999993343195359152,100.000000000000000000,0.31722974290181205070,0.31722974290181205070,0.00000000000000001228,0.00000000000000000075,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,2 ,1.27673077486345043496,338.455093923773233655,10940.9901926518869004,0.00000000000000000000,0.00011538460821574884,0.34169484234966440716,0.93981094981811630351,100.000000000000000000,0.31722974290181205070,0.31722974290181205070,0.00000000000000001228,0.00000000000000000075,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,0 ,1.93934450379778455797,-0.0000000000000002785,19.8935235561248511260,3.00000000000000000000,0.00019230767960097126,0.17330726906788301855,0.98486778478432768224,100.000000000000000000,0.31722974788745472718,0.31722974788745472718,0.00000000000000001228,0.00000000000000000075,10019.5920817925216397,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +38 ,0 ,2.71508233733514003915,-0.0000000000000002109,19.8935239113755386597,3.00000000000000000000,0.00026923074984827827,0.17330726598537121718,0.98486776730253444700,100.000000000000000000,0.31722975536591885292,0.31722975536591885292,0.00000000000000001228,0.00000000000000000075,10019.5922600049598258,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +39 ,0 ,3.49082020289074490548,0.00000000000000025756,19.8935243850467529114,3.00000000000000000000,0.00034615381850250414,0.17330726187535547277,0.98486774399347698505,100.000000000000000000,0.31722976533720426139,0.31722976533720426139,0.00000000000000001228,0.00000000000000000075,10019.5924976215574133,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +40 ,0 ,4.26655810961266546144,0.00000000000000025183,19.8935249771322730794,3.00000000000000000000,0.00042307688510848247,0.17330725673783586859,0.98486771485715529639,100.000000000000000000,0.31722977780131100811,0.31722977780131100811,0.00000000000000001228,0.00000000000000000075,10019.5927946423144021,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +41 ,0 ,5.04229606664897911372,-0.0000000000000000696,19.8935256876367638767,1.00000000000000000000,0.00049999994921104721,0.17330725057281240464,0.98486767989356982511,100.000000000000000000,0.31722979275823964817,0.31722979275823964817,0.00000000000000001228,0.00000000000000000075,10019.5931510672453441,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +41 ,1 ,5.53250045833337988909,-3.7938467818900769579,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,-0.0003461538392409787,0.99999981508876789604,100.000000000000000000,0.31722979275823964817,0.31722979275823964817,0.00000000000000001228,0.00000000000000000075,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,2 ,5.53250045833337988909,338.455093500334157852,10940.9901928060062346,0.00000000000000000000,0.00049999994921104721,0.34169480187391110259,0.93981083861189795847,100.000000000000000000,0.31722979275823964817,0.31722979275823964817,0.00000000000000001228,0.00000000000000000075,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +42 ,0 ,-5.0401159266005981507,-0.0000000000000000548,15.4659816110713581593,3.00000000000000000000,-0.0004999999610453660,0.17338300912176257684,0.98485434565113316729,100.000000000000000000,0.31704603174006029675,0.31704603174006029675,0.00000000000000001227,0.00000000000000000075,10015.2326334806384693,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +43 ,0 ,-4.2647133758352211430,-0.0000000000000000101,15.4659810589374906442,1.00000000000000000000,-0.0004230768951221369,0.17338301528678617957,0.98485438061471941573,100.000000000000000000,0.31704601678905031114,0.31704601678905031114,0.00000000000000001227,0.00000000000000000075,10015.2322773664855048,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +43 ,1 ,-4.6813464315164825535,-2.9507695673736504815,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,-0.0002692307659781733,0.99999987426035952253,100.000000000000000000,0.31704601678905031114,0.31704601678905031114,0.00000000000000001227,0.00000000000000000075,11000.0013831362175551,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +43 ,2 ,-4.6813464315164825535,339.247326937568004723,10940.7018434162637277,0.00000000000000000000,-0.0004230768951221369,0.34176710615610056409,0.93978458497446359931,100.000000000000000000,0.31704601678905031114,0.31704601678905031114,0.00000000000000001227,0.00000000000000000075,11000.0013831362175551,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,0 ,-3.4893108753294130863,-0.0000000000000000849,15.4659805988277465615,3.00000000000000000000,-0.0003461538266954942,0.17338302042430592253,0.98485440975104188154,100.000000000000000000,0.31704600432987584124,0.31704600432987584124,0.00000000000000001227,0.00000000000000000075,10015.2319806047071324,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +45 ,0 ,-2.7139084159450681532,0.00000000000000007048,15.4659802307405751520,1.00000000000000000000,-0.0002692307562206040,0.17338302453432172245,0.98485443306009978758,100.000000000000000000,0.31704599436253699806,0.31704599436253699806,0.00000000000000001227,0.00000000000000000075,10015.2317431952978949,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +45 ,1 ,-2.9790385330943736086,-2.9507694096591481347,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,-0.0002692307659781985,0.99999992751479449548,100.000000000000000000,0.31704599436253699806,0.31704599436253699806,0.00000000000000001227,0.00000000000000000075,11000.0007973373194545,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,2 ,-2.9790385330943736086,339.247327085771132715,10940.7018433623215969,0.00000000000000000000,-0.0002692307562206040,0.34176712437019002299,0.93978463501726317019,100.000000000000000000,0.31704599436253699806,0.31704599436253699806,0.00000000000000001227,0.00000000000000000075,11000.0007973373194545,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,0 ,-1.9385059885440798499,-0.0000000000000000711,15.4659799546728642383,1.00000000000000000000,-0.0001923076841526324,0.17338302761683363484,0.98485445054189346691,100.000000000000000000,0.31704598688703256037,0.31704598688703256037,0.00000000000000001227,0.00000000000000000075,10015.2315651382432406,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +46 ,1 ,-2.1278846414618421967,-2.9507693570873283483,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,-0.0002692307659781904,0.99999994526627300484,100.000000000000000000,0.31704598688703256037,0.31704598688703256037,0.00000000000000001227,0.00000000000000000075,11000.0006020710297889,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,2 ,-2.1278846414618421967,339.247327135172497492,10940.7018433443408866,0.00000000000000000000,-0.0001923076841526324,0.34176713044155326848,0.93978465169819647151,100.000000000000000000,0.31704598688703256037,0.31704598688703256037,0.00000000000000001227,0.00000000000000000075,11000.0006020710297889,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +47 ,0 ,-1.1631035839883465676,0.00000000000000006109,15.4659797706277206685,1.00000000000000000000,-0.0001153846109467456,0.17338302967184154868,0.98485446219642247545,100.000000000000000000,0.31704598190336297225,0.31704598190336297225,0.00000000000000001227,0.00000000000000000075,10015.2314464335413504,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +47 ,1 ,-1.2767307748634504349,-2.9507693220393078625,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,-0.0002692307659781956,0.99999995710059186304,100.000000000000000000,0.31704598190336297225,0.31704598190336297225,0.00000000000000001227,0.00000000000000000075,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +47 ,2 ,-1.2767307748634504349,339.247327168106892258,10940.7018433323537465,0.00000000000000000000,-0.0001153846109467456,0.34176713448912870996,0.93978466281881856136,100.000000000000000000,0.31704598190336297225,0.31704598190336297225,0.00000000000000001227,0.00000000000000000075,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +48 ,0 ,-0.3877011931397649213,0.00000000000000010266,15.4659796786051515482,3.00000000000000000000,-0.0000384615370581095,0.17338303069934551947,0.98485446802368703522,100.000000000000000000,0.31704597941152795614,0.31704597941152795614,0.00000000000000001227,0.00000000000000000075,10015.2313870811922242,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +49 ,0 ,0.38770119313976492136,0.00000000000000010266,15.4659796786051515482,3.00000000000000000000,0.00003846153705810951,0.17338303069934551947,0.98485446802368703522,100.000000000000000000,0.31704597941152795614,0.31704597941152795614,0.00000000000000001227,0.00000000000000000075,10015.2313870811922242,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +50 ,0 ,1.16310358398834656767,0.00000000000000006109,15.4659797706277206685,3.00000000000000000000,0.00011538461094674560,0.17338302967184154868,0.98485446219642247545,100.000000000000000000,0.31704598190336297225,0.31704598190336297225,0.00000000000000001227,0.00000000000000000075,10015.2314464335413504,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +51 ,0 ,1.93850598854408051607,-0.0000000000000000711,15.4659799546728642383,1.00000000000000000000,0.00019230768415263250,0.17338302761683363484,0.98485445054189346691,100.000000000000000000,0.31704598688703256037,0.31704598688703256037,0.00000000000000001227,0.00000000000000000075,10015.2315651382432406,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +51 ,1 ,2.12788464146184308489,-2.9507693570873283483,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,-0.0002692307659781904,0.99999994526627300484,100.000000000000000000,0.31704598688703256037,0.31704598688703256037,0.00000000000000001227,0.00000000000000000075,11000.0006020710297889,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +51 ,2 ,2.12788464146184308489,339.247327135172497492,10940.7018433443408866,0.00000000000000000000,0.00019230768415263250,0.34176713044155326848,0.93978465169819647151,100.000000000000000000,0.31704598688703256037,0.31704598688703256037,0.00000000000000001227,0.00000000000000000075,11000.0006020710297889,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,0 ,2.71390841594506815326,0.00000000000000007048,15.4659802307405751520,3.00000000000000000000,0.00026923075622060400,0.17338302453432172245,0.98485443306009978758,100.000000000000000000,0.31704599436253699806,0.31704599436253699806,0.00000000000000001227,0.00000000000000000075,10015.2317431952978949,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +53 ,0 ,3.48931087532941308637,-0.0000000000000000849,15.4659805988277465615,3.00000000000000000000,0.00034615382669549426,0.17338302042430592253,0.98485440975104188154,100.000000000000000000,0.31704600432987584124,0.31704600432987584124,0.00000000000000001227,0.00000000000000000075,10015.2319806047071324,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +54 ,0 ,4.26471337583522203118,-0.0000000000000000101,15.4659810589374906442,3.00000000000000000000,0.00042307689512213698,0.17338301528678617957,0.98485438061471941573,100.000000000000000000,0.31704601678905031114,0.31704601678905031114,0.00000000000000001227,0.00000000000000000075,10015.2322773664855048,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +55 ,0 ,5.04011592660059815074,-0.0000000000000000548,15.4659816110713581593,3.00000000000000000000,0.00049999996104536600,0.17338300912176257684,0.98485434565113316729,100.000000000000000000,0.31704603174006029675,0.31704603174006029675,0.00000000000000001227,0.00000000000000000075,10015.2326334806384693,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +56 ,0 ,-5.0379376909028907860,-0.0000000000000000256,11.0423049908897503712,3.00000000000000000000,-0.0004999999699211052,0.17345876664477780093,0.98484100558115605927,100.000000000000000000,0.31686234593921491775,0.31686234593921491775,0.00000000000000001227,0.00000000000000000075,10010.8759840379516390,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +57 ,0 ,-4.2628702534312727934,0.00000000000000004585,11.0423045968546045259,3.00000000000000000000,-0.0004230769026323778,0.17345877280980148693,0.98484104054474297385,100.000000000000000000,0.31686233099412275393,0.31686233099412275393,0.00000000000000001227,0.00000000000000000075,10010.8756282341691985,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +58 ,0 ,-3.4878028661644737695,-0.0000000000000001336,11.0423042684883583319,3.00000000000000000000,-0.0003461538328402369,0.17345877794732134091,0.98484106968106577273,100.000000000000000000,0.31686231853987983919,0.31686231853987983919,0.00000000000000001227,0.00000000000000000075,10010.8753317310292914,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +59 ,0 ,-2.7127355199743448110,0.00000000000000004105,11.0423040057972254857,3.00000000000000000000,-0.0002692307609998483,0.17345878205733722410,0.98484109299012412286,100.000000000000000000,0.31686230857648528536,0.31686230857648528536,0.00000000000000001227,0.00000000000000000075,10010.8750945285282796,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +60 ,0 ,-1.9376682057327347941,0.00000000000000001745,11.0423038087796516748,3.00000000000000000000,-0.0001923076875663784,0.17345878513984916424,0.98484111047191813526,100.000000000000000000,0.31686230110393998060,0.31686230110393998060,0.00000000000000001227,0.00000000000000000075,10010.8749166266607062,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +61 ,0 ,-1.1626009143114934829,-0.0000000000000000497,11.0423036774340861398,3.00000000000000000000,-0.0001153846129949931,0.17345878719485713359,0.98484112212644747685,100.000000000000000000,0.31686229612224270368,0.31686229612224270368,0.00000000000000001227,0.00000000000000000075,10010.8747980254174763,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +62 ,0 ,-0.3875336365824729178,0.00000000000000002001,11.0423036117605253281,1.00000000000000000000,-0.0000384615377408587,0.17345878822236113214,0.98484112795371214765,100.000000000000000000,0.31686229363139395420,0.31686229363139395420,0.00000000000000001227,0.00000000000000000075,10010.8747387247967708,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +62 ,1 ,-0.4255769232855404760,-2.1076923353347614131,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,-0.0001923076911223118,0.99999998076923068968,100.000000000000000000,0.31686229363139395420,0.31686229363139395420,0.00000000000000001227,0.00000000000000000075,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,2 ,-0.4255769232855404760,340.039560391267571048,10940.4134940205258317,0.00000000000000000000,-0.0000384615377408587,0.34183942663009014850,0.93975837581897658790,100.000000000000000000,0.31686229363139395420,0.31686229363139395420,0.00000000000000001227,0.00000000000000000075,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +63 ,0 ,0.38753363658247291789,0.00000000000000002001,11.0423036117605253281,3.00000000000000000000,0.00003846153774085871,0.17345878822236113214,0.98484112795371214765,100.000000000000000000,0.31686229363139395420,0.31686229363139395420,0.00000000000000001227,0.00000000000000000075,10010.8747387247967708,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +64 ,0 ,1.16260091431149348295,-0.0000000000000000497,11.0423036774340861398,3.00000000000000000000,0.00011538461299499319,0.17345878719485713359,0.98484112212644747685,100.000000000000000000,0.31686229612224270368,0.31686229612224270368,0.00000000000000001227,0.00000000000000000075,10010.8747980254174763,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +65 ,0 ,1.93766820573273523820,0.00000000000000001745,11.0423038087796516748,3.00000000000000000000,0.00019230768756637849,0.17345878513984916424,0.98484111047191813526,100.000000000000000000,0.31686230110393998060,0.31686230110393998060,0.00000000000000001227,0.00000000000000000075,10010.8749166266607062,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +66 ,0 ,2.71273551997434481108,0.00000000000000004105,11.0423040057972254857,1.00000000000000000000,0.00026923076099984833,0.17345878205733722410,0.98484109299012412286,100.000000000000000000,0.31686230857648528536,0.31686230857648528536,0.00000000000000001227,0.00000000000000000075,10010.8750945285282796,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +66 ,1 ,2.97903853309437272045,-2.1076924104369907375,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,-0.0001923076911223604,0.99999994526627289381,100.000000000000000000,0.31686230857648528536,0.31686230857648528536,0.00000000000000001227,0.00000000000000000075,11000.0006020710261509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +66 ,2 ,2.97903853309437272045,340.039560320694533857,10940.4134940462136000,0.00000000000000000000,0.00026923076099984833,0.34183941448736343549,0.93975834245710909709,100.000000000000000000,0.31686230857648528536,0.31686230857648528536,0.00000000000000001227,0.00000000000000000075,11000.0006020710261509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,0 ,3.48780286616447376957,-0.0000000000000001336,11.0423042684883583319,1.00000000000000000000,0.00034615383284023691,0.17345877794732134091,0.98484106968106577273,100.000000000000000000,0.31686231853987983919,0.31686231853987983919,0.00000000000000001227,0.00000000000000000075,10010.8753317310292914,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +67 ,1 ,3.83019245977469990904,-2.1076924605050613159,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,-0.0001923076911223090,0.99999992159763473331,100.000000000000000000,0.31686231853987983919,0.31686231853987983919,0.00000000000000001227,0.00000000000000000075,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,2 ,3.83019245977469990904,340.039560273645918186,10940.4134940633375663,0.00000000000000000000,0.00034615383284023691,0.34183940639221244151,0.93975832021586447329,100.000000000000000000,0.31686231853987983919,0.31686231853987983919,0.00000000000000001227,0.00000000000000000075,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +68 ,0 ,4.26287025343127279342,0.00000000000000004585,11.0423045968546045259,3.00000000000000000000,0.00042307690263237795,0.17345877280980148693,0.98484104054474297385,100.000000000000000000,0.31686233099412275393,0.31686233099412275393,0.00000000000000001227,0.00000000000000000075,10010.8756282341691985,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +69 ,0 ,5.03793769090289078604,-0.0000000000000000256,11.0423049908897503712,1.00000000000000000000,0.00049999996992110523,0.17345876664477780093,0.98484100558115605927,100.000000000000000000,0.31686234593921491775,0.31686234593921491775,0.00000000000000001227,0.00000000000000000075,10010.8759840379516390,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +69 ,1 ,5.53250045833337811274,-2.1076925981930991760,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,-0.0001923076911223311,0.99999985650888056909,100.000000000000000000,0.31686234593921491775,0.31686234593921491775,0.00000000000000001227,0.00000000000000000075,11000.0015784025363245,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +69 ,2 ,5.53250045833337811274,340.039560144261486129,10940.4134941104293829,0.00000000000000000000,0.00049999996992110523,0.34183938413054737459,0.93975825905244247948,100.000000000000000000,0.31686234593921491775,0.31686234593921491775,0.00000000000000001227,0.00000000000000000075,11000.0015784025363245,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +70 ,0 ,-5.0357613570359269772,0.00000000000000004895,6.62249070947900797534,3.00000000000000000000,-0.0004999999758382646,0.17353452314140974110,0.98482765968371721587,100.000000000000000000,0.31667873533375634487,0.31667873533375634487,0.00000000000000001227,0.00000000000000000075,10006.5231976217819465,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +71 ,0 ,-4.2610287402685678159,-0.0000000000000000416,6.62249047326345507968,3.00000000000000000000,-0.0004230769076392051,0.17353452930643353813,0.98482769464730457453,100.000000000000000000,0.31667872039458017097,0.31667872039458017097,0.00000000000000001227,0.00000000000000000075,10006.5228421279589383,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +72 ,0 ,-3.4862961736513580213,0.00000000000000000918,6.62249027641664245180,1.00000000000000000000,-0.0003461538369367320,0.17353453444395344762,0.98482772378362781751,100.000000000000000000,0.31667870794526720157,0.31667870794526720157,0.00000000000000001227,0.00000000000000000075,10006.5225458831209834,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +72 ,1 ,-3.8301924597747003531,-1.2646154662892301612,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,-0.0001153846151285300,0.99999993343195348050,100.000000000000000000,0.31667870794526720157,0.31667870794526720157,0.00000000000000001227,0.00000000000000000075,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +72 ,2 ,-3.8301924597747003531,340.831793503864901140,10940.1251447489412385,0.00000000000000000000,-0.0003461538369367320,0.34191169448666736130,0.93973202209501005555,100.000000000000000000,0.31667870794526720157,0.31667870794526720157,0.00000000000000001227,0.00000000000000000075,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +73 ,0 ,-2.7115636480660860740,-0.0000000000000000469,6.62249011893857275623,3.00000000000000000000,-0.0002692307641860112,0.17353453855396935856,0.98482774709268638968,100.000000000000000000,0.31667869798581704809,0.31667869798581704809,0.00000000000000001227,0.00000000000000000075,10006.5223088872589869,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +74 ,0 ,-1.9368311543945435637,-0.0000000000000000117,6.62249000083079586431,3.00000000000000000000,-0.0001923076898422090,0.17353454163648135422,0.98482776457448062412,100.000000000000000000,0.31667869051622876686,0.31667869051622876686,0.00000000000000001227,0.00000000000000000075,10006.5221311403693107,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +75 ,0 ,-1.1620986835185191932,0.00000000000000000635,6.62248992209176012835,3.00000000000000000000,-0.0001153846143604915,0.17353454369148932356,0.98482777622900996572,100.000000000000000000,0.31667868553650391216,0.31667868553650391216,0.00000000000000001227,0.00000000000000000075,10006.5220126424483169,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +76 ,0 ,-0.3873662263198048294,0.00000000000000002398,6.62248988272301897239,3.00000000000000000000,-0.0000384615381960248,0.17353454471899334987,0.98482778205627485856,100.000000000000000000,0.31667868304664070766,0.31667868304664070766,0.00000000000000001227,0.00000000000000000075,10006.5219533934850915,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +77 ,0 ,0.38736622631980482944,0.00000000000000002398,6.62248988272301897239,3.00000000000000000000,0.00003846153819602484,0.17353454471899334987,0.98482778205627485856,100.000000000000000000,0.31667868304664070766,0.31667868304664070766,0.00000000000000001227,0.00000000000000000075,10006.5219533934850915,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +78 ,0 ,1.16209868351851919321,0.00000000000000000635,6.62248992209176012835,3.00000000000000000000,0.00011538461436049158,0.17353454369148932356,0.98482777622900996572,100.000000000000000000,0.31667868553650391216,0.31667868553650391216,0.00000000000000001227,0.00000000000000000075,10006.5220126424483169,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +79 ,0 ,1.93683115439454422990,-0.0000000000000000117,6.62249000083079586431,3.00000000000000000000,0.00019230768984220914,0.17353454163648135422,0.98482776457448062412,100.000000000000000000,0.31667869051622876686,0.31667869051622876686,0.00000000000000001227,0.00000000000000000075,10006.5221311403693107,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +80 ,0 ,2.71156364806608607409,-0.0000000000000000469,6.62249011893857275623,3.00000000000000000000,0.00026923076418601120,0.17353453855396935856,0.98482774709268638968,100.000000000000000000,0.31667869798581704809,0.31667869798581704809,0.00000000000000001227,0.00000000000000000075,10006.5223088872589869,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +81 ,0 ,3.48629617365135802131,0.00000000000000000918,6.62249027641664245180,1.00000000000000000000,0.00034615383693673202,0.17353453444395344762,0.98482772378362781751,100.000000000000000000,0.31667870794526720157,0.31667870794526720157,0.00000000000000001227,0.00000000000000000075,10006.5225458831209834,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +81 ,1 ,3.83019245977470035313,-1.2646154662892301612,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,-0.0001153846151285300,0.99999993343195348050,100.000000000000000000,0.31667870794526720157,0.31667870794526720157,0.00000000000000001227,0.00000000000000000075,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +81 ,2 ,3.83019245977470035313,340.831793503864901140,10940.1251447489412385,0.00000000000000000000,0.00034615383693673202,0.34191169448666736130,0.93973202209501005555,100.000000000000000000,0.31667870794526720157,0.31667870794526720157,0.00000000000000001227,0.00000000000000000075,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +82 ,0 ,4.26102874026856870415,-0.0000000000000000416,6.62249047326345507968,3.00000000000000000000,0.00042307690763920520,0.17353452930643353813,0.98482769464730457453,100.000000000000000000,0.31667872039458017097,0.31667872039458017097,0.00000000000000001227,0.00000000000000000075,10006.5228421279589383,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +83 ,0 ,5.03576135703592697723,0.00000000000000004895,6.62249070947900797534,1.00000000000000000000,0.00049999997583826468,0.17353452314140974110,0.98482765968371721587,100.000000000000000000,0.31667873533375634487,0.31667873533375634487,0.00000000000000001227,0.00000000000000000075,10006.5231976217819465,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +83 ,1 ,5.53250045833337988909,-1.2646155489019756945,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,-0.0001153846151285639,0.99999986834319853912,100.000000000000000000,0.31667873533375634487,0.31667873533375634487,0.00000000000000001227,0.00000000000000000075,11000.0014482250044238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +83 ,2 ,5.53250045833337988909,340.831793426234355592,10940.1251447771956009,0.00000000000000000000,0.00049999997583826468,0.34191167222500201683,0.93973196093158739561,100.000000000000000000,0.31667873533375634487,0.31667873533375634487,0.00000000000000001227,0.00000000000000000075,11000.0014482250044238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +84 ,0 ,-5.0335869224842193503,-0.0000000000000000170,2.20653365826042557884,3.00000000000000000000,-0.0004999999787968444,0.17361027861121022808,0.98481430795889590701,100.000000000000000000,0.31649519990175550843,0.31649519990175550843,0.00000000000000001226,0.00000000000000000075,10002.1742691237504914,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +85 ,0 ,-4.2591888342186186022,0.00000000000000001595,2.20653357959053630921,3.00000000000000000000,-0.0004230769101426188,0.17361028477623405286,0.98481434292248348771,100.000000000000000000,0.31649518496849315951,0.31649518496849315951,0.00000000000000001226,0.00000000000000000075,10002.1739139394794619,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +86 ,0 ,-3.4847907960485753342,-0.0000000000000000089,2.20653351403177833134,3.00000000000000000000,-0.0003461538389849795,0.17361028991375396235,0.98481437205880673069,100.000000000000000000,0.31649517252410874768,0.31649517252410874768,0.00000000000000001226,0.00000000000000000075,10002.1736179526014893,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +87 ,0 ,-2.7103927988658007564,0.00000000000000001925,2.20653346158415164524,3.00000000000000000000,-0.0002692307657790926,0.17361029402376992880,0.98481439536786552491,100.000000000000000000,0.31649516256860099616,0.31649516256860099616,0.00000000000000001226,0.00000000000000000075,10002.1733811631074786,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +88 ,0 ,-1.9359948335620118520,0.00000000000000000826,2.20653342224920701042,3.00000000000000000000,-0.0001923076909801243,0.17361029710628195221,0.98481441284965987037,100.000000000000000000,0.31649515510197001599,0.31649515510197001599,0.00000000000000001226,0.00000000000000000075,10002.1732035709956107,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +89 ,0 ,-1.1615968910289267146,-0.0000000000000000091,2.20653339602694487098,3.00000000000000000000,-0.0001153846150432407,0.17361029916128994932,0.98481442450418943401,100.000000000000000000,0.31649515012421619575,0.31649515012421619575,0.00000000000000001226,0.00000000000000000075,10002.1730851762586098,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +90 ,0 ,-0.3871989621582617169,-0.0000000000000000065,2.20653338291581357921,1.00000000000000000000,-0.0000384615384236079,0.17361030018879394787,0.98481443033145421583,100.000000000000000000,0.31649514763533925787,0.31649514763533925787,0.00000000000000001226,0.00000000000000000075,10002.1730259788891999,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +90 ,1 ,-0.4255769232855404760,-0.4215384620606222876,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,-0.0000384615384520350,0.99999999852070975414,100.000000000000000000,0.31649514763533925787,0.31649514763533925787,0.00000000000000001226,0.00000000000000000075,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +90 ,2 ,-0.4255769232855404760,341.624026743492834157,10939.8367954311197536,0.00000000000000000000,-0.0000384615384236079,0.34198400079585417055,0.93970577401672406026,100.000000000000000000,0.31649514763533925787,0.31649514763533925787,0.00000000000000001226,0.00000000000000000075,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,0 ,0.38719896215826171692,-0.0000000000000000065,2.20653338291581357921,1.00000000000000000000,0.00003846153842360791,0.17361030018879394787,0.98481443033145421583,100.000000000000000000,0.31649514763533925787,0.31649514763533925787,0.00000000000000001226,0.00000000000000000075,10002.1730259788891999,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +91 ,1 ,0.42557692328554047600,-0.4215384620606222876,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,-0.0000384615384520350,0.99999999852070975414,100.000000000000000000,0.31649514763533925787,0.31649514763533925787,0.00000000000000001226,0.00000000000000000075,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,2 ,0.42557692328554047600,341.624026743492834157,10939.8367954311197536,0.00000000000000000000,0.00003846153842360791,0.34198400079585417055,0.93970577401672406026,100.000000000000000000,0.31649514763533925787,0.31649514763533925787,0.00000000000000001226,0.00000000000000000075,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +92 ,0 ,1.16159689102892671463,-0.0000000000000000091,2.20653339602694487098,3.00000000000000000000,0.00011538461504324078,0.17361029916128994932,0.98481442450418943401,100.000000000000000000,0.31649515012421619575,0.31649515012421619575,0.00000000000000001226,0.00000000000000000075,10002.1730851762586098,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +93 ,0 ,1.93599483356201274020,0.00000000000000000826,2.20653342224920701042,3.00000000000000000000,0.00019230769098012445,0.17361029710628195221,0.98481441284965987037,100.000000000000000000,0.31649515510197001599,0.31649515510197001599,0.00000000000000001226,0.00000000000000000075,10002.1732035709956107,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +94 ,0 ,2.71039279886580075640,0.00000000000000001925,2.20653346158415164524,3.00000000000000000000,0.00026923076577909266,0.17361029402376992880,0.98481439536786552491,100.000000000000000000,0.31649516256860099616,0.31649516256860099616,0.00000000000000001226,0.00000000000000000075,10002.1733811631074786,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +95 ,0 ,3.48479079604857533425,-0.0000000000000000089,2.20653351403177833134,1.00000000000000000000,0.00034615383898497955,0.17361028991375396235,0.98481437205880673069,100.000000000000000000,0.31649517252410874768,0.31649517252410874768,0.00000000000000001226,0.00000000000000000075,10002.1736179526014893,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +95 ,1 ,3.83019245977470035313,-0.4215384870944208772,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,-0.0000384615384520790,0.99999993934911279858,100.000000000000000000,0.31649517252410874768,0.31649517252410874768,0.00000000000000001226,0.00000000000000000075,11000.0006671597984677,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +95 ,2 ,3.83019245977470035313,341.624026719968753695,10939.8367954396817367,0.00000000000000000000,0.00034615383898497955,0.34198398055797601946,0.93970571841361105747,100.000000000000000000,0.31649517252410874768,0.31649517252410874768,0.00000000000000001226,0.00000000000000000075,11000.0006671597984677,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +96 ,0 ,4.25918883421861949045,0.00000000000000001595,2.20653357959053630921,3.00000000000000000000,0.00042307691014261891,0.17361028477623405286,0.98481434292248348771,100.000000000000000000,0.31649518496849315951,0.31649518496849315951,0.00000000000000001226,0.00000000000000000075,10002.1739139394794619,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +97 ,0 ,5.03358692248421935033,-0.0000000000000000170,2.20653365826042557884,1.00000000000000000000,0.00049999997879684445,0.17361027861121022808,0.98481430795889590701,100.000000000000000000,0.31649519990175550843,0.31649519990175550843,0.00000000000000001226,0.00000000000000000075,10002.1742691237504914,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +97 ,1 ,5.53250045833337988909,-0.4215385146316079079,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,-0.0000384615384519990,0.99999987426035752413,100.000000000000000000,0.31649519990175550843,0.31649519990175550843,0.00000000000000001226,0.00000000000000000075,11000.0013831362375640,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +97 ,2 ,5.53250045833337988909,341.624026694092265188,10939.8367954491004638,0.00000000000000000000,0.00049999997879684445,0.34198395829631067499,0.93970565725018806446,100.000000000000000000,0.31649519990175550843,0.31649519990175550843,0.00000000000000001226,0.00000000000000000075,11000.0013831362375640,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +98 ,0 ,-5.0314143847367134299,0.00000000000000003273,-2.2055712623531373850,3.00000000000000000000,-0.0004999999787968444,0.17368603305373095380,0.98480095040677095852,100.000000000000000000,0.31631173962130021415,0.31631173962130021415,0.00000000000000001226,0.00000000000000000075,9997.82919344447873299,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +99 ,0 ,-4.2573505331566883214,0.00000000000000003848,-2.2055711837523039875,3.00000000000000000000,-0.0004230769101426188,0.17368603921875477857,0.98480098537035853922,100.000000000000000000,0.31631172469395063551,0.31631172469395063551,0.00000000000000001226,0.00000000000000000075,9997.82883856935040967,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +100 ,0 ,-3.4832867316177034133,-0.0000000000000000126,-2.2055711182508339618,3.00000000000000000000,-0.0003461538389849795,0.17368604435627468807,0.98480101450668178220,100.000000000000000000,0.31631171225449339345,0.31631171225449339345,0.00000000000000001226,0.00000000000000000075,9997.82854284009408729,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +101 ,0 ,-2.7092229710213806548,0.00000000000000001751,-2.2055710658502785115,3.00000000000000000000,-0.0002692307657790926,0.17368604846629065452,0.98480103781574057641,100.000000000000000000,0.31631170230292671163,0.31631170230292671163,0.00000000000000001226,0.00000000000000000075,9997.82830625670067092,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +102 ,0 ,-1.9351592422693506545,0.00000000000000001344,-2.2055710265490868771,1.00000000000000000000,-0.0001923076909801243,0.17368605154880267793,0.98480105529753492188,100.000000000000000000,0.31631169483925247742,0.31631169483925247742,0.00000000000000001226,0.00000000000000000075,9997.82812881915924663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +102 ,1 ,-2.1278846414618421967,0.42153846957002866213,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,0.00003846153845209435,0.99999998076923057865,100.000000000000000000,0.31631169483925247742,0.31631169483925247742,0.00000000000000001226,0.00000000000000000075,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +102 ,2 ,-2.1278846414618421967,342.416259914900990679,10939.5484461381292931,0.00000000000000000000,-0.0001923076909801243,0.34205627877222566368,0.93967944809400227867,100.000000000000000000,0.31631169483925247742,0.31631169483925247742,0.00000000000000001226,0.00000000000000000075,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +103 ,0 ,-1.1610955362632422449,-0.0000000000000000021,-2.2055710003472595026,3.00000000000000000000,-0.0001153846150432407,0.17368605360381067503,0.98480106695206448552,100.000000000000000000,0.31631168986346969163,0.31631168986346969163,0.00000000000000001226,0.00000000000000000075,9997.82801052746981440,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +104 ,0 ,-0.3870318439046855907,0.00000000000000000942,-2.2055709872478952426,3.00000000000000000000,-0.0000384615384236079,0.17368605463131467359,0.98480107277932926734,100.000000000000000000,0.31631168737557818770,0.31631168737557818770,0.00000000000000001226,0.00000000000000000075,9997.82795138162691728,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +105 ,0 ,0.38703184390468559072,0.00000000000000000942,-2.2055709872478952426,3.00000000000000000000,0.00003846153842360791,0.17368605463131467359,0.98480107277932926734,100.000000000000000000,0.31631168737557818770,0.31631168737557818770,0.00000000000000001226,0.00000000000000000075,9997.82795138162691728,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +106 ,0 ,1.16109553626324224495,-0.0000000000000000021,-2.2055710003472595026,3.00000000000000000000,0.00011538461504324078,0.17368605360381067503,0.98480106695206448552,100.000000000000000000,0.31631168986346969163,0.31631168986346969163,0.00000000000000001226,0.00000000000000000075,9997.82801052746981440,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +107 ,0 ,1.93515924226935109864,0.00000000000000001344,-2.2055710265490868771,3.00000000000000000000,0.00019230769098012445,0.17368605154880267793,0.98480105529753492188,100.000000000000000000,0.31631169483925247742,0.31631169483925247742,0.00000000000000001226,0.00000000000000000075,9997.82812881915924663,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +108 ,0 ,2.70922297102138065483,0.00000000000000001751,-2.2055710658502785115,3.00000000000000000000,0.00026923076577909266,0.17368604846629065452,0.98480103781574057641,100.000000000000000000,0.31631170230292671163,0.31631170230292671163,0.00000000000000001226,0.00000000000000000075,9997.82830625670067092,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +109 ,0 ,3.48328673161770341337,-0.0000000000000000126,-2.2055711182508339618,3.00000000000000000000,0.00034615383898497955,0.17368604435627468807,0.98480101450668178220,100.000000000000000000,0.31631171225449339345,0.31631171225449339345,0.00000000000000001226,0.00000000000000000075,9997.82854284009408729,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +110 ,0 ,4.25735053315668920959,0.00000000000000003848,-2.2055711837523039875,3.00000000000000000000,0.00042307691014261891,0.17368603921875477857,0.98480098537035853922,100.000000000000000000,0.31631172469395063551,0.31631172469395063551,0.00000000000000001226,0.00000000000000000075,9997.82883856935040967,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +111 ,0 ,5.03141438473671342990,0.00000000000000003273,-2.2055712623531373850,3.00000000000000000000,0.00049999997879684445,0.17368603305373095380,0.98480095040677095852,100.000000000000000000,0.31631173962130021415,0.31631173962130021415,0.00000000000000001226,0.00000000000000000075,9997.82919344447873299,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +112 ,0 ,-5.0292437412867769808,-0.0000000000000000205,-6.6138291429579307845,3.00000000000000000000,-0.0004999999758382646,0.17376178646852366571,0.98478758702742141828,100.000000000000000000,0.31612835447049858483,0.31612835447049858483,0.00000000000000001225,0.00000000000000000075,9993.48796549357393814,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +113 ,0 ,-4.2555138349617838144,-0.0000000000000000139,-6.6138289073561322695,3.00000000000000000000,-0.0004230769076392051,0.17376179263354743498,0.98478762199100877694,100.000000000000000000,0.31612833954905950051,0.31612833954905950051,0.00000000000000001225,0.00000000000000000075,9993.48761092718814325,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +114 ,0 ,-3.4817839786233841792,0.00000000000000003194,-6.6138287110249134315,1.00000000000000000000,-0.0003461538369367320,0.17376179777106737223,0.98478765112733201991,100.000000000000000000,0.31612832711452781841,0.31612832711452781841,0.00000000000000001225,0.00000000000000000075,9993.48731545521513908,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +114 ,1 ,-3.8301924597747003531,1.26461546628890908472,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,0.00011538461512862007,0.99999993343195348050,100.000000000000000000,0.31612832711452781841,0.31612832711452781841,0.00000000000000001225,0.00000000000000000075,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +114 ,2 ,-3.8301924597747003531,343.208493147472040618,10939.2600968228762212,0.00000000000000000000,-0.0003461538369367320,0.34212854662944441885,0.93965309436980237745,100.000000000000000000,0.31612832711452781841,0.31612832711452781841,0.00000000000000001225,0.00000000000000000075,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +115 ,0 ,-2.7080541631831032134,-0.0000000000000000734,-6.6138285539580783378,3.00000000000000000000,-0.0002692307641860112,0.17376180188108328317,0.98478767443639059209,100.000000000000000000,0.31612831716690292793,0.31612831716690292793,0.00000000000000001225,0.00000000000000000075,9993.48707907764583069,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +116 ,0 ,-1.9343243795524711625,-0.0000000000000000549,-6.6138284361571804126,3.00000000000000000000,-0.0001923076898422090,0.17376180496359527882,0.98478769191818482653,100.000000000000000000,0.31612830970618344128,0.31612830970618344128,0.00000000000000001225,0.00000000000000000075,9993.48690179447658010,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +117 ,0 ,-1.1605946186430131650,-0.0000000000000000285,-6.6138283576237633099,3.00000000000000000000,-0.0001153846143604915,0.17376180701860324817,0.98478770357271427915,100.000000000000000000,0.31612830473237080175,0.31612830473237080175,0.00000000000000001225,0.00000000000000000075,9993.48678360569829237,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +118 ,0 ,-0.3868648713662590221,0.00000000000000003122,-6.6138283183578296942,1.00000000000000000000,-0.0000384615381960248,0.17376180804610727448,0.98478770939997906097,100.000000000000000000,0.31612830224546445423,0.31612830224546445423,0.00000000000000001225,0.00000000000000000075,9993.48672451131096750,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +118 ,1 ,-0.4255769232855404760,1.26461539118613663923,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,0.00011538461512861142,0.99999999260354999197,100.000000000000000000,0.31612830224546445423,0.31612830224546445423,0.00000000000000001225,0.00000000000000000075,11000.0000813609458418,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +118 ,2 ,-0.4255769232855404760,343.208493076898548679,10939.2600968485639896,0.00000000000000000000,-0.0000384615381960248,0.34212856686732234789,0.93965314997291493614,100.000000000000000000,0.31612830224546445423,0.31612830224546445423,0.00000000000000001225,0.00000000000000000075,11000.0000813609458418,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +119 ,0 ,0.38686487136625902216,0.00000000000000003122,-6.6138283183578296942,1.00000000000000000000,0.00003846153819602484,0.17376180804610727448,0.98478770939997906097,100.000000000000000000,0.31612830224546445423,0.31612830224546445423,0.00000000000000001225,0.00000000000000000075,9993.48672451131096750,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +119 ,1 ,0.42557692328554047600,1.26461539118613663923,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,0.00011538461512861142,0.99999999260354999197,100.000000000000000000,0.31612830224546445423,0.31612830224546445423,0.00000000000000001225,0.00000000000000000075,11000.0000813609458418,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +119 ,2 ,0.42557692328554047600,343.208493076898548679,10939.2600968485639896,0.00000000000000000000,0.00003846153819602484,0.34212856686732234789,0.93965314997291493614,100.000000000000000000,0.31612830224546445423,0.31612830224546445423,0.00000000000000001225,0.00000000000000000075,11000.0000813609458418,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +120 ,0 ,1.16059461864301316502,-0.0000000000000000285,-6.6138283576237633099,1.00000000000000000000,0.00011538461436049158,0.17376180701860324817,0.98478770357271427915,100.000000000000000000,0.31612830473237080175,0.31612830473237080175,0.00000000000000001225,0.00000000000000000075,9993.48678360569829237,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +120 ,1 ,1.27673077486345021291,1.26461539869671768521,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,0.00011538461512859796,0.99999998668639034082,100.000000000000000000,0.31612830473237080175,0.31612830473237080175,0.00000000000000001225,0.00000000000000000075,11000.0001464497036067,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +120 ,2 ,1.27673077486345021291,343.208493083956170721,10939.2600968459937575,0.00000000000000000000,0.00011538461436049158,0.34212856484353454389,0.93965314441260372468,100.000000000000000000,0.31612830473237080175,0.31612830473237080175,0.00000000000000001225,0.00000000000000000075,11000.0001464497036067,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +121 ,0 ,1.93432437955247182870,-0.0000000000000000549,-6.6138284361571804126,3.00000000000000000000,0.00019230768984220914,0.17376180496359527882,0.98478769191818482653,100.000000000000000000,0.31612830970618344128,0.31612830970618344128,0.00000000000000001225,0.00000000000000000075,9993.48690179447658010,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +122 ,0 ,2.70805416318310321344,-0.0000000000000000734,-6.6138285539580783378,3.00000000000000000000,0.00026923076418601120,0.17376180188108328317,0.98478767443639059209,100.000000000000000000,0.31612831716690292793,0.31612831716690292793,0.00000000000000001225,0.00000000000000000075,9993.48707907764583069,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +123 ,0 ,3.48178397862338417922,0.00000000000000003194,-6.6138287110249134315,3.00000000000000000000,0.00034615383693673202,0.17376179777106737223,0.98478765112733201991,100.000000000000000000,0.31612832711452781841,0.31612832711452781841,0.00000000000000001225,0.00000000000000000075,9993.48731545521513908,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +124 ,0 ,4.25551383496178470267,-0.0000000000000000139,-6.6138289073561322695,3.00000000000000000000,0.00042307690763920520,0.17376179263354743498,0.98478762199100877694,100.000000000000000000,0.31612833954905950051,0.31612833954905950051,0.00000000000000001225,0.00000000000000000075,9993.48761092718814325,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +125 ,0 ,5.02924374128677698081,-0.0000000000000000205,-6.6138291429579307845,3.00000000000000000000,0.00049999997583826468,0.17376178646852366571,0.98478758702742141828,100.000000000000000000,0.31612835447049858483,0.31612835447049858483,0.00000000000000001225,0.00000000000000000075,9993.48796549357393814,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +126 ,0 ,-5.0270749896321964556,-0.0000000000000000624,-11.018245065188398967,3.00000000000000000000,-0.0004999999699211052,0.17383753885514013903,0.98477421782092655622,100.000000000000000000,0.31594504442747528560,0.31594504442747528560,0.00000000000000001225,0.00000000000000000074,9989.15058018961099151,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +127 ,0 ,-4.2536787375166422719,0.00000000000000013321,-11.018244672862604005,3.00000000000000000000,-0.0004230769026323778,0.17383754502016385279,0.98477425278451347079,100.000000000000000000,0.31594502951194597395,0.31594502951194597395,0.00000000000000001225,0.00000000000000000074,9989.15022593155845243,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +128 ,0 ,-3.4802825353333135538,-0.0000000000000001316,-11.018244345925470639,1.00000000000000000000,-0.0003461538328402369,0.17383755015768370677,0.98477428192083638069,100.000000000000000000,0.31594501708233835302,0.31594501708233835302,0.00000000000000001225,0.00000000000000000074,9989.14993071652861544,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +128 ,1 ,-3.8301924597746999090,2.10769246050431613426,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,0.00019230769112235114,0.99999992159763484433,100.000000000000000000,0.31594501708233835302,0.31594501708233835302,0.00000000000000001225,0.00000000000000000074,11000.0008624260808574,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +128 ,2 ,-3.8301924597746999090,344.000726377690625668,10938.9717475084798934,0.00000000000000000000,-0.0003461538328402369,0.34220082662874851120,0.93962677400770400204,100.000000000000000000,0.31594501708233835302,0.31594501708233835302,0.00000000000000001225,0.00000000000000000074,11000.0008624260808574,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +129 ,0 ,-2.7068863740036230858,-0.0000000000000001000,-11.018244084375455216,3.00000000000000000000,-0.0002692307609998483,0.17383755426769958996,0.98477430522989473082,100.000000000000000000,0.31594500713865264485,0.31594500713865264485,0.00000000000000001225,0.00000000000000000074,9989.14969454451784258,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +130 ,0 ,-1.9334902444489825423,0.00000000000000000400,-11.018243888212557735,3.00000000000000000000,-0.0001923076875663784,0.17383755735021153010,0.98477432271168874322,100.000000000000000000,0.31594499968088851638,0.31594499968088851638,0.00000000000000001225,0.00000000000000000074,9989.14951741551340091,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +131 ,0 ,-1.1600941375908047081,-0.0000000000000000443,-11.018243757438323626,3.00000000000000000000,-0.0001153846129949931,0.17383755940521949945,0.98477433436621797380,100.000000000000000000,0.31594499470904524596,0.31594499470904524596,0.00000000000000001225,0.00000000000000000074,9989.14939932951347145,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +132 ,0 ,-0.3866980443505038111,-0.0000000000000001141,-11.018243692051205684,3.00000000000000000000,-0.0000384615377408587,0.17383756043272349800,0.98477434019348264460,100.000000000000000000,0.31594499222312388830,0.31594499222312388830,0.00000000000000001225,0.00000000000000000074,9989.14934028651441622,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +133 ,0 ,0.38669804435050381119,-0.0000000000000001141,-11.018243692051205684,1.00000000000000000000,0.00003846153774085871,0.17383756043272349800,0.98477434019348264460,100.000000000000000000,0.31594499222312388830,0.31594499222312388830,0.00000000000000001225,0.00000000000000000074,9989.14934028651441622,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +133 ,1 ,0.42557692328554058702,2.10769233533384259260,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,0.00019230769112238627,0.99999998076923068968,100.000000000000000000,0.31594499222312388830,0.31594499222312388830,0.00000000000000001225,0.00000000000000000074,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +133 ,2 ,0.42557692328554058702,344.000726260068859119,10938.9717475512916280,0.00000000000000000000,0.00003846153774085871,0.34220084686662627371,0.93962682961081600563,100.000000000000000000,0.31594499222312388830,0.31594499222312388830,0.00000000000000001225,0.00000000000000000074,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +134 ,0 ,1.16009413759080470818,-0.0000000000000000443,-11.018243757438323626,3.00000000000000000000,0.00011538461299499319,0.17383755940521949945,0.98477433436621797380,100.000000000000000000,0.31594499470904524596,0.31594499470904524596,0.00000000000000001225,0.00000000000000000074,9989.14939932951347145,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +135 ,0 ,1.93349024444898298646,0.00000000000000000400,-11.018243888212557735,3.00000000000000000000,0.00019230768756637849,0.17383755735021153010,0.98477432271168874322,100.000000000000000000,0.31594499968088851638,0.31594499968088851638,0.00000000000000001225,0.00000000000000000074,9989.14951741551340091,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +136 ,0 ,2.70688637400362308582,-0.0000000000000001000,-11.018244084375455216,3.00000000000000000000,0.00026923076099984833,0.17383755426769958996,0.98477430522989473082,100.000000000000000000,0.31594500713865264485,0.31594500713865264485,0.00000000000000001225,0.00000000000000000074,9989.14969454451784258,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +137 ,0 ,3.48028253533331355384,-0.0000000000000001316,-11.018244345925470639,3.00000000000000000000,0.00034615383284023691,0.17383755015768370677,0.98477428192083638069,100.000000000000000000,0.31594501708233835302,0.31594501708233835302,0.00000000000000001225,0.00000000000000000074,9989.14993071652861544,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +138 ,0 ,4.25367873751664227199,0.00000000000000013321,-11.018244672862604005,1.00000000000000000000,0.00042307690263237795,0.17383754502016385279,0.98477425278451347079,100.000000000000000000,0.31594502951194597395,0.31594502951194597395,0.00000000000000001225,0.00000000000000000074,9989.15022593155845243,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +138 ,1 ,4.68134643151648255354,2.10769252308962773412,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,0.00019230769112240665,0.99999989201183714371,100.000000000000000000,0.31594502951194597395,0.31594502951194597395,0.00000000000000001225,0.00000000000000000074,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +138 ,2 ,4.68134643151648255354,344.000726436501622629,10938.9717474870758451,0.00000000000000000000,0.00042307690263237795,0.34220081650980982423,0.93962674620614827780,100.000000000000000000,0.31594502951194597395,0.31594502951194597395,0.00000000000000001225,0.00000000000000000074,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +139 ,0 ,5.02707498963219645560,-0.0000000000000000624,-11.018245065188398967,3.00000000000000000000,0.00049999996992110523,0.17383753885514013903,0.98477421782092655622,100.000000000000000000,0.31594504442747528560,0.31594504442747528560,0.00000000000000001225,0.00000000000000000074,9989.15058018961099151,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +140 ,0 ,-5.0249081272751592308,-0.0000000000000000076,-15.418824101730155717,1.00000000000000000000,-0.0004999999610453660,0.17391329021313212122,0.98476084278736519816,100.000000000000000000,0.31576180947037507662,0.31576180947037507662,0.00000000000000001225,0.00000000000000000074,9984.81703246010511065,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +140 ,1 ,-5.5325004583333790009,2.95076967251726118846,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,0.00026923076597822981,0.99999983875740361405,100.000000000000000000,0.31576180947037507662,0.31576180947037507662,0.00000000000000001225,0.00000000000000000074,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +140 ,2 ,-5.5325004583333790009,344.792959812571950806,10938.6833981195941305,0.00000000000000000000,-0.0004999999610453660,0.34227308234153103194,0.93960038692226277579,100.000000000000000000,0.31576180947037507662,0.31576180947037507662,0.00000000000000001225,0.00000000000000000074,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +141 ,0 ,-4.2518452387077312337,-0.0000000000000000467,-15.418823552952146016,3.00000000000000000000,-0.0004230768951221369,0.17391329637815572395,0.98476087775095144660,100.000000000000000000,0.31576179456075326168,0.31576179456075326168,0.00000000000000001225,0.00000000000000000074,9984.81667850998019275,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +142 ,0 ,-3.4787824000182392403,-0.0000000000000001363,-15.418823095637138820,1.00000000000000000000,-0.0003461538266954942,0.17391330151567546691,0.98476090688727380140,100.000000000000000000,0.31576178213606942435,0.31576178213606942435,0.00000000000000001225,0.00000000000000000074,9984.81638355156246689,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +142 ,1 ,-3.8301924597747003531,2.95076947975392611667,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,0.00026923076597829860,0.99999990384615666805,100.000000000000000000,0.31576178213606942435,0.31576178213606942435,0.00000000000000001225,0.00000000000000000074,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +142 ,2 ,-3.8301924597747003531,344.792959631433689082,10938.6833981855215824,0.00000000000000000000,-0.0003461538266954942,0.34227310460319571028,0.93960044808568365937,100.000000000000000000,0.31576178213606942435,0.31576178213606942435,0.00000000000000001225,0.00000000000000000074,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +143 ,0 ,-2.7057196021379636974,0.00000000000000003289,-15.418822729785135905,1.00000000000000000000,-0.0002692307562206040,0.17391330562569129458,0.98476093019633181846,100.000000000000000000,0.31576177219632134418,0.31576177219632134418,0.00000000000000001225,0.00000000000000000074,9984.81614758483556215,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +143 ,1 ,-2.9790385330943731645,2.95076940965867295929,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,0.00026923076597825008,0.99999992751479449548,100.000000000000000000,0.31576177219632134418,0.31576177219632134418,0.00000000000000001225,0.00000000000000000074,11000.0007973373176355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +143 ,2 ,-2.9790385330943731645,344.792959565565695356,10938.6833982094958628,0.00000000000000000000,-0.0002692307562206040,0.34227311269834659324,0.93960047032692806112,100.000000000000000000,0.31576177219632134418,0.31576177219632134418,0.00000000000000001225,0.00000000000000000074,11000.0007973373176355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +144 ,0 ,-1.9326568359981890488,-0.0000000000000000397,-15.418822455396131942,1.00000000000000000000,-0.0001923076841526324,0.17391330870820317922,0.98476094767812549779,100.000000000000000000,0.31576176474151129713,0.31576176474151129713,0.00000000000000001225,0.00000000000000000074,9984.81597060979584057,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +144 ,1 ,-2.1278846414618421967,2.95076935708699483740,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,0.00026923076597820276,0.99999994526627300484,100.000000000000000000,0.31576176474151129713,0.31576176474151129713,0.00000000000000001225,0.00000000000000000074,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +144 ,2 ,-2.1278846414618421967,344.792959516164444266,10938.6833982274765730,0.00000000000000000000,-0.0001923076841526324,0.34227311876970978321,0.93960048700786136244,100.000000000000000000,0.31576176474151129713,0.31576176474151129713,0.00000000000000001225,0.00000000000000000074,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +145 ,0 ,-1.1595940925301999602,-0.0000000000000000431,-15.418822272470128709,1.00000000000000000000,-0.0001153846109467456,0.17391331076321109305,0.98476095933265450632,100.000000000000000000,0.31576175977163767338,0.31576175977163767338,0.00000000000000001225,0.00000000000000000074,9984.81585262644148315,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +145 ,1 ,-1.2767307748634504349,2.95076932203944375388,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,0.00026923076597825301,0.99999995710059186304,100.000000000000000000,0.31576175977163767338,0.31576175977163767338,0.00000000000000001225,0.00000000000000000074,11000.0004718935069831,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +145 ,2 ,-1.2767307748634504349,344.792959483230561090,10938.6833982394637132,0.00000000000000000000,-0.0001153846109467456,0.34227312281728522469,0.93960049812848345229,100.000000000000000000,0.31576175977163767338,0.31576175977163767338,0.00000000000000001225,0.00000000000000000074,11000.0004718935069831,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +146 ,0 ,-0.3865313626652807088,-0.0000000000000001096,-15.418822181007127980,3.00000000000000000000,-0.0000384615370581095,0.17391331179071506385,0.98476096515991906610,100.000000000000000000,0.31576175728670080600,0.31576175728670080600,0.00000000000000001225,0.00000000000000000074,9984.81579363476339494,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +147 ,0 ,0.38653136266528070885,-0.0000000000000001096,-15.418822181007127980,1.00000000000000000000,0.00003846153705810951,0.17391331179071506385,0.98476096515991906610,100.000000000000000000,0.31576175728670080600,0.31576175728670080600,0.00000000000000001225,0.00000000000000000074,9984.81579363476339494,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +147 ,1 ,0.42557692328554053151,2.95076930451499475083,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,0.00026923076597828689,0.99999996301775140317,100.000000000000000000,0.31576175728670080600,0.31576175728670080600,0.00000000000000001225,0.00000000000000000074,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +147 ,2 ,0.42557692328554053151,344.792959466762965803,10938.6833982454572833,0.00000000000000000000,0.00003846153705810951,0.34227312484107302870,0.93960050368879466375,100.000000000000000000,0.31576175728670080600,0.31576175728670080600,0.00000000000000001225,0.00000000000000000074,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +148 ,0 ,1.15959409253019996022,-0.0000000000000000431,-15.418822272470128709,3.00000000000000000000,0.00011538461094674560,0.17391331076321109305,0.98476095933265450632,100.000000000000000000,0.31576175977163767338,0.31576175977163767338,0.00000000000000001225,0.00000000000000000074,9984.81585262644148315,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +149 ,0 ,1.93265683599818971494,-0.0000000000000000397,-15.418822455396131942,3.00000000000000000000,0.00019230768415263250,0.17391330870820317922,0.98476094767812549779,100.000000000000000000,0.31576176474151129713,0.31576176474151129713,0.00000000000000001225,0.00000000000000000074,9984.81597060979584057,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +150 ,0 ,2.70571960213796369743,0.00000000000000003289,-15.418822729785135905,1.00000000000000000000,0.00026923075622060400,0.17391330562569129458,0.98476093019633181846,100.000000000000000000,0.31576177219632134418,0.31576177219632134418,0.00000000000000001225,0.00000000000000000074,9984.81614758483556215,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +150 ,1 ,2.97903853309437316454,2.95076940965867295929,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,0.00026923076597825008,0.99999992751479449548,100.000000000000000000,0.31576177219632134418,0.31576177219632134418,0.00000000000000001225,0.00000000000000000074,11000.0007973373176355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +150 ,2 ,2.97903853309437316454,344.792959565565695356,10938.6833982094958628,0.00000000000000000000,0.00026923075622060400,0.34227311269834659324,0.93960047032692806112,100.000000000000000000,0.31576177219632134418,0.31576177219632134418,0.00000000000000001225,0.00000000000000000074,11000.0007973373176355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +151 ,0 ,3.47878240001823924032,-0.0000000000000001363,-15.418823095637138820,3.00000000000000000000,0.00034615382669549426,0.17391330151567546691,0.98476090688727380140,100.000000000000000000,0.31576178213606942435,0.31576178213606942435,0.00000000000000001225,0.00000000000000000074,9984.81638355156246689,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +152 ,0 ,4.25184523870773212195,-0.0000000000000000467,-15.418823552952146016,3.00000000000000000000,0.00042307689512213698,0.17391329637815572395,0.98476087775095144660,100.000000000000000000,0.31576179456075326168,0.31576179456075326168,0.00000000000000001225,0.00000000000000000074,9984.81667850998019275,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +153 ,0 ,5.02490812727515923086,-0.0000000000000000076,-15.418824101730155717,1.00000000000000000000,0.00049999996104536600,0.17391329021313212122,0.98476084278736519816,100.000000000000000000,0.31576180947037507662,0.31576180947037507662,0.00000000000000001225,0.00000000000000000074,9984.81703246010511065,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +153 ,1 ,5.53250045833337900091,2.95076967251726118846,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,0.00026923076597822981,0.99999983875740361405,100.000000000000000000,0.31576180947037507662,0.31576180947037507662,0.00000000000000001225,0.00000000000000000074,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +153 ,2 ,5.53250045833337900091,344.792959812571950806,10938.6833981195941305,0.00000000000000000000,0.00049999996104536600,0.34227308234153103194,0.93960038692226277579,100.000000000000000000,0.31576180947037507662,0.31576180947037507662,0.00000000000000001225,0.00000000000000000074,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +154 ,0 ,-5.0227431517222500545,-0.0000000000000001285,-19.815571316346940022,3.00000000000000000000,-0.0004999999492110472,0.17398904054205135971,0.98474746192681661405,100.000000000000000000,0.31557864957736009303,0.31557864957736009303,0.00000000000000001224,0.00000000000000000074,9980.48731724149911315,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +155 ,0 ,-4.2500133364252388190,0.00000000000000003078,-19.815570611389521360,3.00000000000000000000,-0.0004230768851084824,0.17398904670707482367,0.98474749689040208533,100.000000000000000000,0.31557863467364505316,0.31557863467364505316,0.00000000000000001224,0.00000000000000000074,9980.48696359889981977,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +156 ,0 ,-3.4772835709519474001,-0.0000000000000000411,-19.815570023924230724,1.00000000000000000000,-0.0003461538185025041,0.17398905184459445560,0.98474752602672377399,100.000000000000000000,0.31557862225388211285,0.31557862225388211285,0.00000000000000001224,0.00000000000000000074,9980.48666889675041602,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +156 ,1 ,-3.8301924597746999090,3.79384653405155880534,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,0.00034615383924104181,0.99999988017751950675,100.000000000000000000,0.31557862225388211285,0.31557862225388211285,0.00000000000000001224,0.00000000000000000074,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +156 ,2 ,-3.8301924597746999090,345.585192918111090421,10938.3950488505761313,0.00000000000000000000,-0.0003461538185025041,0.34234538055235824716,0.93957411660389766883,100.000000000000000000,0.31557862225388211285,0.31557862225388211285,0.00000000000000001224,0.00000000000000000074,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +157 ,0 ,-2.7045538462435154691,-0.0000000000000001242,-19.815569553952617098,1.00000000000000000000,-0.0002692307498482782,0.17398905595461020001,0.98474754933578123594,100.000000000000000000,0.31557861231807193824,0.31557861231807193824,0.00000000000000001224,0.00000000000000000074,9980.48643313504180696,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +157 ,1 ,-2.9790385330943727204,3.79384644392903425114,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,0.00034615383924101661,0.99999990384615666805,100.000000000000000000,0.31557861231807193824,0.31557861231807193824,0.00000000000000001224,0.00000000000000000074,11000.0010576923777989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +157 ,2 ,-2.9790385330943727204,345.585192833423604952,10938.3950488814007258,0.00000000000000000000,-0.0002692307498482782,0.34234538864750885256,0.93957413884514129343,100.000000000000000000,0.31557861231807193824,0.31557861231807193824,0.00000000000000001224,0.00000000000000000074,11000.0010576923777989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +158 ,0 ,-1.9318241532410842520,0.00000000000000017566,-19.815569201473135052,3.00000000000000000000,-0.0001923076796009712,0.17398905903712200138,0.98474756681757447118,100.000000000000000000,0.31557860486621469586,0.31557860486621469586,0.00000000000000001224,0.00000000000000000074,9980.48625631376489764,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +159 ,0 ,-1.1590944828857943083,-0.0000000000000001738,-19.815568966487326463,1.00000000000000000000,-0.0001153846082157488,0.17398906109212988746,0.98474757847210325767,100.000000000000000000,0.31557859989830988611,0.31557859989830988611,0.00000000000000001224,0.00000000000000000074,9980.48613843291786906,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +159 ,1 ,-1.2767307748634502129,3.79384633127559656173,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,0.00034615383924104284,0.99999993343195348050,100.000000000000000000,0.31557859989830988611,0.31557859989830988611,0.00000000000000001224,0.00000000000000000074,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +159 ,2 ,-1.2767307748634502129,345.585192727563992320,10938.3950489199305593,0.00000000000000000000,-0.0001153846082157488,0.34234539876644737299,0.93957416664669624051,100.000000000000000000,0.31557859989830988611,0.31557859989830988611,0.00000000000000001224,0.00000000000000000074,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +160 ,0 ,-0.3863648261187884180,0.00000000000000003597,-19.815568848993653006,3.00000000000000000000,-0.0000384615361477772,0.17398906211963383050,0.98474758429936770642,100.000000000000000000,0.31557859741435700939,0.31557859741435700939,0.00000000000000001224,0.00000000000000000074,9980.48607949249526427,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +161 ,0 ,0.38636482611878841808,0.00000000000000003597,-19.815568848993653006,3.00000000000000000000,0.00003846153614777726,0.17398906211963383050,0.98474758429936770642,100.000000000000000000,0.31557859741435700939,0.31557859741435700939,0.00000000000000001224,0.00000000000000000074,9980.48607949249526427,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +162 ,0 ,1.15909448288579430830,-0.0000000000000001738,-19.815568966487326463,3.00000000000000000000,0.00011538460821574884,0.17398906109212988746,0.98474757847210325767,100.000000000000000000,0.31557859989830988611,0.31557859989830988611,0.00000000000000001224,0.00000000000000000074,9980.48613843291786906,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +163 ,0 ,1.93182415324108469611,0.00000000000000017566,-19.815569201473135052,3.00000000000000000000,0.00019230767960097126,0.17398905903712200138,0.98474756681757447118,100.000000000000000000,0.31557860486621469586,0.31557860486621469586,0.00000000000000001224,0.00000000000000000074,9980.48625631376489764,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +164 ,0 ,2.70455384624351546918,-0.0000000000000001242,-19.815569553952617098,1.00000000000000000000,0.00026923074984827827,0.17398905595461020001,0.98474754933578123594,100.000000000000000000,0.31557861231807193824,0.31557861231807193824,0.00000000000000001224,0.00000000000000000074,9980.48643313504180696,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +164 ,1 ,2.97903853309437272045,3.79384644392903425114,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,0.00034615383924101661,0.99999990384615666805,100.000000000000000000,0.31557861231807193824,0.31557861231807193824,0.00000000000000001224,0.00000000000000000074,11000.0010576923777989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +164 ,2 ,2.97903853309437272045,345.585192833423604952,10938.3950488814007258,0.00000000000000000000,0.00026923074984827827,0.34234538864750885256,0.93957413884514129343,100.000000000000000000,0.31557861231807193824,0.31557861231807193824,0.00000000000000001224,0.00000000000000000074,11000.0010576923777989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +165 ,0 ,3.47728357095194740011,-0.0000000000000000411,-19.815570023924230724,3.00000000000000000000,0.00034615381850250414,0.17398905184459445560,0.98474752602672377399,100.000000000000000000,0.31557862225388211285,0.31557862225388211285,0.00000000000000001224,0.00000000000000000074,9980.48666889675041602,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +166 ,0 ,4.25001333642523881906,0.00000000000000003078,-19.815570611389521360,3.00000000000000000000,0.00042307688510848247,0.17398904670707482367,0.98474749689040208533,100.000000000000000000,0.31557863467364505316,0.31557863467364505316,0.00000000000000001224,0.00000000000000000074,9980.48696359889981977,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +167 ,0 ,5.02274315172225005454,-0.0000000000000001285,-19.815571316346940022,3.00000000000000000000,0.00049999994921104721,0.17398904054205135971,0.98474746192681661405,100.000000000000000000,0.31557864957736009303,0.31557864957736009303,0.00000000000000001224,0.00000000000000000074,9980.48731724149911315,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +168 ,0 ,-5.0205800604844332823,0.00000000000000027742,-24.208491763904323335,3.00000000000000000000,-0.0004999999344181487,0.17406478984144968524,0.98473407523935996277,100.000000000000000000,0.31539556472661134378,0.31539556472661134378,0.00000000000000001224,0.00000000000000000074,9976.16142947913613170,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +169 ,0 ,-4.2481830285630577392,-0.0000000000000000111,-24.208490903036668839,1.00000000000000000000,-0.0004230768725914143,0.17406479600647295491,0.98473411020294443485,100.000000000000000000,0.31539554982880046996,0.31539554982880046996,0.00000000000000001224,0.00000000000000000074,9976.16107614365864719,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +169 ,1 ,-4.6813464315164816653,4.63692377109870079721,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,0.00042307691045559263,0.99999982100592765821,100.000000000000000000,0.31539554982880046996,0.31539554982880046996,0.00000000000000001224,0.00000000000000000074,11000.0019689351447595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +169 ,2 ,-4.6813464315164816653,346.377426376516837080,10938.1066994531265663,0.00000000000000000000,-0.0004230768725914143,0.34241764435687038758,0.93954775176094762478,100.000000000000000000,0.31539554982880046996,0.31539554982880046996,0.00000000000000001224,0.00000000000000000074,11000.0019689351447595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +170 ,0 ,-3.4757860464112644294,0.00000000000000016487,-24.208490185646699188,3.00000000000000000000,-0.0003461538082612664,0.17406480114399242031,0.98473413933926512431,100.000000000000000000,0.31539553741395764951,0.31539553741395764951,0.00000000000000001224,0.00000000000000000074,9976.16078169744469050,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +171 ,0 ,-2.7033891049800318207,0.00000000000000019433,-24.208489611735959812,1.00000000000000000000,-0.0002692307418828711,0.17406480525400802594,0.98473416264832192013,100.000000000000000000,0.31539552748208415922,0.31539552748208415922,0.00000000000000001224,0.00000000000000000074,9976.16054614048516668,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +171 ,1 ,-2.9790385330943722763,4.63692352326095935666,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,0.00042307691045557306,0.99999987426035963355,100.000000000000000000,0.31539552748208415922,0.31539552748208415922,0.00000000000000001224,0.00000000000000000074,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +171 ,2 ,-2.9790385330943722763,346.377426143625541499,10938.1066995378932915,0.00000000000000000000,-0.0002692307418828711,0.34241766257095884729,0.93954780180374430909,100.000000000000000000,0.31539552748208415922,0.31539552748208415922,0.00000000000000001224,0.00000000000000000074,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +172 ,0 ,-1.9309921952203488171,-0.0000000000000001684,-24.208489181299817971,3.00000000000000000000,-0.0001923076739113946,0.17406480833651974404,0.98473418013011471128,100.000000000000000000,0.31539552003317888884,0.31539552003317888884,0.00000000000000001224,0.00000000000000000074,9976.16036947277279978,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +173 ,0 ,-1.1585953080831967731,-0.0000000000000001448,-24.208488894344448283,3.00000000000000000000,-0.0001153846048020029,0.17406481039152754686,0.98473419178464305367,100.000000000000000000,0.31539551506724267104,0.31539551506724267104,0.00000000000000001224,0.00000000000000000074,9976.16025169429849484,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +174 ,0 ,-0.3861984345195630385,0.00000000000000031220,-24.208488750866763439,3.00000000000000000000,-0.0000384615350098619,0.17406481141903148990,0.98473419761190750243,100.000000000000000000,0.31539551258427384050,0.31539551258427384050,0.00000000000000001224,0.00000000000000000074,9976.16019280506225186,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +175 ,0 ,0.38619843451956303859,0.00000000000000031220,-24.208488750866763439,3.00000000000000000000,0.00003846153500986195,0.17406481141903148990,0.98473419761190750243,100.000000000000000000,0.31539551258427384050,0.31539551258427384050,0.00000000000000001224,0.00000000000000000074,9976.16019280506225186,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +176 ,0 ,1.15859530808319677319,-0.0000000000000001448,-24.208488894344448283,1.00000000000000000000,0.00011538460480200291,0.17406481039152754686,0.98473419178464305367,100.000000000000000000,0.31539551506724267104,0.31539551506724267104,0.00000000000000001224,0.00000000000000000074,9976.16025169429849484,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +176 ,1 ,1.27673077486345065700,4.63692338557311956037,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,0.00042307691045560797,0.99999990384615544680,100.000000000000000000,0.31539551506724267104,0.31539551506724267104,0.00000000000000001224,0.00000000000000000074,11000.0010576923887128,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +176 ,2 ,1.27673077486345065700,346.377426014241336815,10938.1066995849851082,0.00000000000000000000,0.00011538460480200291,0.34241767268989697914,0.93954782960529836799,100.000000000000000000,0.31539551506724267104,0.31539551506724267104,0.00000000000000001224,0.00000000000000000074,11000.0010576923887128,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +177 ,0 ,1.93099219522034948326,-0.0000000000000001684,-24.208489181299817971,1.00000000000000000000,0.00019230767391139474,0.17406480833651974404,0.98473418013011471128,100.000000000000000000,0.31539552003317888884,0.31539552003317888884,0.00000000000000001224,0.00000000000000000074,9976.16036947277279978,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +177 ,1 ,2.12788464146184308489,4.63692344064775685552,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,0.00042307691045555197,0.99999989201183725473,100.000000000000000000,0.31539552003317888884,0.31539552003317888884,0.00000000000000001224,0.00000000000000000074,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +177 ,2 ,2.12788464146184308489,346.377426065994541204,10938.1066995661476539,0.00000000000000000000,0.00019230767391139474,0.34241766864232175970,0.93954781848467683325,100.000000000000000000,0.31539552003317888884,0.31539552003317888884,0.00000000000000001224,0.00000000000000000074,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +178 ,0 ,2.70338910498003182070,0.00000000000000019433,-24.208489611735959812,3.00000000000000000000,0.00026923074188287118,0.17406480525400802594,0.98473416264832192013,100.000000000000000000,0.31539552748208415922,0.31539552748208415922,0.00000000000000001224,0.00000000000000000074,9976.16054614048516668,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +179 ,0 ,3.47578604641126442942,0.00000000000000016487,-24.208490185646699188,3.00000000000000000000,0.00034615380826126648,0.17406480114399242031,0.98473413933926512431,100.000000000000000000,0.31539553741395764951,0.31539553741395764951,0.00000000000000001224,0.00000000000000000074,9976.16078169744469050,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +180 ,0 ,4.24818302856305862746,-0.0000000000000000111,-24.208490903036668839,3.00000000000000000000,0.00042307687259141442,0.17406479600647295491,0.98473411020294443485,100.000000000000000000,0.31539554982880046996,0.31539554982880046996,0.00000000000000001224,0.00000000000000000074,9976.16107614365864719,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +181 ,0 ,5.02058006048443328239,0.00000000000000027742,-24.208491763904323335,3.00000000000000000000,0.00049999993441814875,0.17406478984144968524,0.98473407523935996277,100.000000000000000000,0.31539556472661134378,0.31539556472661134378,0.00000000000000001224,0.00000000000000000074,9976.16142947913613170,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +182 ,0 ,-5.0184188510770555424,0.00000000000000019325,-28.597590490362946979,3.00000000000000000000,-0.0004999999166666708,0.17414053811087881751,0.98472068272507462527,100.000000000000000000,0.31521255489632721280,0.31521255489632721280,0.00000000000000001224,0.00000000000000000074,9971.83936412725597620,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +183 ,0 ,-4.2463543130187906271,-0.0000000000000001587,-28.597589473858338493,3.00000000000000000000,-0.0004230768575709328,0.17414054427590189288,0.98472071768865776508,100.000000000000000000,0.31521254000441933929,0.31521254000441933929,0.00000000000000001224,0.00000000000000000074,9971.83901109849830390,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +184 ,0 ,-3.4742898246760436364,0.00000000000000012246,-28.597588626770399145,3.00000000000000000000,-0.0003461537959717815,0.17414054941342116400,0.98472074682497745534,100.000000000000000000,0.31521252759449613911,0.31521252759449613911,0.00000000000000001224,0.00000000000000000074,9971.83871690788328123,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +185 ,0 ,-2.7022253770096229530,0.00000000000000018906,-28.597587949100656601,3.00000000000000000000,-0.0002692307323243828,0.17414055352343663085,0.98472077013403336298,100.000000000000000000,0.31521251766655811188,0.31521251766655811188,0.00000000000000001224,0.00000000000000000074,9971.83848155540363222,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +186 ,0 ,-1.9301609609803449529,-0.0000000000000000272,-28.597587440847583195,3.00000000000000000000,-0.0001923076670839029,0.17414055660594823793,0.98472078761582548800,100.000000000000000000,0.31521251022060436941,0.31521251022060436941,0.00000000000000001224,0.00000000000000000074,9971.83830504104844294,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +187 ,0 ,-1.1580965675490244581,-0.0000000000000001114,-28.597587102012713700,3.00000000000000000000,-0.0001153846007055078,0.17414055866095598523,0.98472079927035349733,100.000000000000000000,0.31521250525663524477,0.31521250525663524477,0.00000000000000001224,0.00000000000000000074,9971.83818736481407540,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +188 ,0 ,-0.3860321876764772897,-0.0000000000000002342,-28.597586932594509789,3.00000000000000000000,-0.0000384615336443635,0.17414055968845987276,0.98472080509761772404,100.000000000000000000,0.31521250277465029387,0.31521250277465029387,0.00000000000000001224,0.00000000000000000074,9971.83812852669871062,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +189 ,0 ,0.38603218767647728970,-0.0000000000000002342,-28.597586932594509789,3.00000000000000000000,0.00003846153364436359,0.17414055968845987276,0.98472080509761772404,100.000000000000000000,0.31521250277465029387,0.31521250277465029387,0.00000000000000001224,0.00000000000000000074,9971.83812852669871062,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +190 ,0 ,1.15809656754902445818,-0.0000000000000001114,-28.597587102012713700,1.00000000000000000000,0.00011538460070550785,0.17414055866095598523,0.98472079927035349733,100.000000000000000000,0.31521250525663524477,0.31521250525663524477,0.00000000000000001224,0.00000000000000000074,9971.83818736481407540,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +190 ,1 ,1.27673077486345043496,5.48000049494600904864,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,0.00049999997916671179,0.99999986834319842810,100.000000000000000000,0.31521250525663524477,0.31521250525663524477,0.00000000000000001224,0.00000000000000000074,11000.0014482250044238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +190 ,2 ,1.27673077486345043496,347.169659352672510976,10937.8183502312022028,0.00000000000000000000,0.00011538460070550785,0.34248994458720660727,0.93952148700444593210,100.000000000000000000,0.31521250525663524477,0.31521250525663524477,0.00000000000000001224,0.00000000000000000074,11000.0014482250044238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +191 ,0 ,1.93016096098034561912,-0.0000000000000000272,-28.597587440847583195,3.00000000000000000000,0.00019230766708390299,0.17414055660594823793,0.98472078761582548800,100.000000000000000000,0.31521251022060436941,0.31521251022060436941,0.00000000000000001224,0.00000000000000000074,9971.83830504104844294,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +192 ,0 ,2.70222537700962295303,0.00000000000000018906,-28.597587949100656601,3.00000000000000000000,0.00026923073232438285,0.17414055352343663085,0.98472077013403336298,100.000000000000000000,0.31521251766655811188,0.31521251766655811188,0.00000000000000001224,0.00000000000000000074,9971.83848155540363222,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +193 ,0 ,3.47428982467604363648,0.00000000000000012246,-28.597588626770399145,3.00000000000000000000,0.00034615379597178157,0.17414054941342116400,0.98472074682497745534,100.000000000000000000,0.31521252759449613911,0.31521252759449613911,0.00000000000000001224,0.00000000000000000074,9971.83871690788328123,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +194 ,0 ,4.24635431301879151533,-0.0000000000000001587,-28.597589473858338493,3.00000000000000000000,0.00042307685757093292,0.17414054427590189288,0.98472071768865776508,100.000000000000000000,0.31521254000441933929,0.31521254000441933929,0.00000000000000001224,0.00000000000000000074,9971.83901109849830390,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +195 ,0 ,5.01841885107705554247,0.00000000000000019325,-28.597590490362946979,3.00000000000000000000,0.00049999991666667084,0.17414053811087881751,0.98472068272507462527,100.000000000000000000,0.31521255489632721280,0.31521255489632721280,0.00000000000000001224,0.00000000000000000074,9971.83936412725597620,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +196 ,0 ,-5.0466620698997646243,-0.0000000000000002789,28.7602367255999062933,3.00000000000000000000,-0.0004999999166666708,0.17315573039890028161,0.98489433089550615374,100.000000000000000000,0.31759754053448807642,0.31759754053448807642,0.00000000000000001228,0.00000000000000000075,10028.3258111870818538,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +197 ,0 ,-4.2702524198358817741,0.00000000000000009323,28.7602356975238713232,3.00000000000000000000,-0.0004230768575709328,0.17315573656392332924,0.98489436585908940458,100.000000000000000000,0.31759752556571668735,0.31759752556571668735,0.00000000000000001228,0.00000000000000000075,10028.3254541393689578,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 +198 ,0 ,-3.4938428201962699048,0.00000000000000002199,28.7602348407912487004,1.00000000000000000000,-0.0003461537959717815,0.17315574170144260035,0.98489439499540898381,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,10028.3251565996197314,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +198 ,1 ,-3.8301924597747007972,-5.4800007878450722742,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,-0.0004999999791666261,0.99999981508876789604,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,11000.0020340239261713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +198 ,2 ,-3.8301924597747007972,336.870627023429676683,10941.5668914407924603,0.00000000000000000000,-0.0003461537959717815,0.34155023379148657936,0.93986345709072538490,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,11000.0020340239261713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +199 ,0 ,-2.7174332618128755889,0.00000000000000005224,28.7602341554067066908,3.00000000000000000000,-0.0002692307323243828,0.17315574581145806720,0.98489441830446500247,100.000000000000000000,0.31759750311255929844,0.31759750311255929844,0.00000000000000001228,0.00000000000000000075,10028.3249185678359935,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 diff --git a/Intern/RayCore/tests/output/PointSource_seeded.rayx.csv b/Intern/RayCore/tests/output/PointSource_seeded.rayx.csv new file mode 100644 index 000000000..33b5ecc03 --- /dev/null +++ b/Intern/RayCore/tests/output/PointSource_seeded.rayx.csv @@ -0,0 +1,401 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-1.7903320893902066046,0.83611441621380255817,0.00000000000000000000,1.00000000000000000000,-0.0018170116945435889,0.00083114033415540903,0.99999800383513115509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.770001767253575053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +0 ,1 ,-1.7903320893902066046,0.83611441621380255817,1000.00000000000000000,0.00000000000000000000,-0.0018170116945435889,0.00083114033415540903,0.99999800383513115509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.770001767253575053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +1 ,0 ,-0.3830814019361608036,-0.7210972937484624312,0.00000000000000000000,1.00000000000000000000,-0.0004846383878598668,-0.0006290090472399334,0.99999968473657607770,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.634138999235915434,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +1 ,1 ,-0.3830814019361608036,-0.7210972937484624312,1000.00000000000000000,0.00000000000000000000,-0.0004846383878598668,-0.0006290090472399334,0.99999968473657607770,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.634138999235915434,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +2 ,0 ,2.01352449880240058632,-1.7615669936310247578,0.00000000000000000000,1.00000000000000000000,0.00184424753055840605,-0.0017604158580713192,0.99999674983824460294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.670806455260617440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +2 ,1 ,2.01352449880240058632,-1.7615669936310247578,1000.00000000000000000,0.00000000000000000000,0.00184424753055840605,-0.0017604158580713192,0.99999674983824460294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.670806455260617440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +3 ,0 ,-1.6402858072429191693,-1.3292548960560022219,0.00000000000000000000,1.00000000000000000000,-0.0015517666731649575,-0.0012821489412684855,0.99999797405508994430,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.977269462267940980,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +3 ,1 ,-1.6402858072429191693,-1.3292548960560022219,1000.00000000000000000,0.00000000000000000000,-0.0015517666731649575,-0.0012821489412684855,0.99999797405508994430,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.977269462267940980,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +4 ,0 ,1.00357544087991645831,-0.0771343848143010851,0.00000000000000000000,1.00000000000000000000,0.00105544701572107303,-0.0001531064967828895,0.99999943129483714887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.20842417606024810,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +4 ,1 ,1.00357544087991645831,-0.0771343848143010851,1000.00000000000000000,0.00000000000000000000,0.00105544701572107303,-0.0001531064967828895,0.99999943129483714887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.20842417606024810,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +5 ,0 ,1.54531010138667990183,0.94793746464542649743,0.00000000000000000000,1.00000000000000000000,0.00157859591959139274,0.00100104488861495156,0.99999825297050071171,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.987512571353363455,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +5 ,1 ,1.54531010138667990183,0.94793746464542649743,1000.00000000000000000,0.00000000000000000000,0.00157859591959139274,0.00100104488861495156,0.99999825297050071171,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.987512571353363455,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +6 ,0 ,-0.2714569659798616863,-0.3745661476704158499,0.00000000000000000000,1.00000000000000000000,-0.0002438350236688280,-0.0003028084339632207,0.99999992442576390860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.43502401281409674,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +6 ,1 ,-0.2714569659798616863,-0.3745661476704158499,1000.00000000000000000,0.00000000000000000000,-0.0002438350236688280,-0.0003028084339632207,0.99999992442576390860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.43502401281409674,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +7 ,0 ,-0.5536757354308237122,0.01224841014304983710,0.00000000000000000000,1.00000000000000000000,-0.0005215916611252036,-0.0000490972964520432,0.99999986276578778365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.40246517247874180,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +7 ,1 ,-0.5536757354308237122,0.01224841014304983710,1000.00000000000000000,0.00000000000000000000,-0.0005215916611252036,-0.0000490972964520432,0.99999986276578778365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.40246517247874180,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +8 ,0 ,0.57670663071799399546,0.36163962509956976143,0.00000000000000000000,1.00000000000000000000,0.00067911592935621448,0.00033780569231646619,0.99999971234439299916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.46589926653450675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +8 ,1 ,0.57670663071799399546,0.36163962509956976143,1000.00000000000000000,0.00000000000000000000,0.00067911592935621448,0.00033780569231646619,0.99999971234439299916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.46589926653450675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +9 ,0 ,1.80399368221311506843,0.94654532698218507569,0.00000000000000000000,1.00000000000000000000,0.00180203948281240796,0.00100100875754007175,0.99999787531532768891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.982056625634527335,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +9 ,1 ,1.80399368221311506843,0.94654532698218507569,1000.00000000000000000,0.00000000000000000000,0.00180203948281240796,0.00100100875754007175,0.99999787531532768891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.982056625634527335,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +10 ,0 ,-0.1354297711550078164,-0.4492112234203732290,0.00000000000000000000,1.00000000000000000000,-0.0001443446548242443,-0.0004222576897879662,0.99999990043152697793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.560600585650831817,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +10 ,1 ,-0.1354297711550078164,-0.4492112234203732290,1000.00000000000000000,0.00000000000000000000,-0.0001443446548242443,-0.0004222576897879662,0.99999990043152697793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.560600585650831817,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +11 ,0 ,0.82683613978170367175,-2.4950482565762244213,0.00000000000000000000,1.00000000000000000000,0.00083870667843186118,-0.0024147068646381644,0.99999673287559565082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.30728526463701655,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +11 ,1 ,0.82683613978170367175,-2.4950482565762244213,1000.00000000000000000,0.00000000000000000000,0.00083870667843186118,-0.0024147068646381644,0.99999673287559565082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.30728526463701655,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +12 ,0 ,-1.2476277961299011565,-1.4638361817216087867,0.00000000000000000000,1.00000000000000000000,-0.0012465307828809888,-0.0014016873872770528,0.99999824071519016754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.673021199931099545,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +12 ,1 ,-1.2476277961299011565,-1.4638361817216087867,1000.00000000000000000,0.00000000000000000000,-0.0012465307828809888,-0.0014016873872770528,0.99999824071519016754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.673021199931099545,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +13 ,0 ,-0.1556663252481808590,-2.2897474866541163152,0.00000000000000000000,1.00000000000000000000,-0.0001440217948228577,-0.0022677268461958502,0.99999741833300426208,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.700383910517530239,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +13 ,1 ,-0.1556663252481808590,-2.2897474866541163152,1000.00000000000000000,0.00000000000000000000,-0.0001440217948228577,-0.0022677268461958502,0.99999741833300426208,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.700383910517530239,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +14 ,0 ,-0.2373469274248577176,-0.2213027829556896974,0.00000000000000000000,1.00000000000000000000,-0.0002003432061171753,-0.0002017980246750739,0.99999995957007770108,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.49451832754061797,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +14 ,1 ,-0.2373469274248577176,-0.2213027829556896974,1000.00000000000000000,0.00000000000000000000,-0.0002003432061171753,-0.0002017980246750739,0.99999995957007770108,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.49451832754061797,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +15 ,0 ,1.80047163078523708712,0.81178219094069581363,0.00000000000000000000,1.00000000000000000000,0.00178679960427859823,0.00083409740871731141,0.99999805581245349017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.42790037368399680,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +15 ,1 ,1.80047163078523708712,0.81178219094069581363,1000.00000000000000000,0.00000000000000000000,0.00178679960427859823,0.00083409740871731141,0.99999805581245349017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.42790037368399680,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +16 ,0 ,-0.7254368893133745777,1.57920030017431933799,0.00000000000000000000,1.00000000000000000000,-0.0007460480046487706,0.00161587310664486403,0.99999841618198470616,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.17068606389921114,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +16 ,1 ,-0.7254368893133745777,1.57920030017431933799,1000.00000000000000000,0.00000000000000000000,-0.0007460480046487706,0.00161587310664486403,0.99999841618198470616,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.17068606389921114,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +17 ,0 ,-0.9572452276555470929,0.42670914588741781781,0.00000000000000000000,1.00000000000000000000,-0.0009082610451504131,0.00045344885496587187,0.99999948472287214507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.862957735426448380,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +17 ,1 ,-0.9572452276555470929,0.42670914588741781781,1000.00000000000000000,0.00000000000000000000,-0.0009082610451504131,0.00045344885496587187,0.99999948472287214507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.862957735426448380,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +18 ,0 ,0.10436128514304782166,-0.0753476891996055220,0.00000000000000000000,1.00000000000000000000,-0.0000274938995140157,-0.0000945192389796586,0.99999999515509951919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.739219800220439537,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +18 ,1 ,0.10436128514304782166,-0.0753476891996055220,1000.00000000000000000,0.00000000000000000000,-0.0000274938995140157,-0.0000945192389796586,0.99999999515509951919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.739219800220439537,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +19 ,0 ,0.70517857792753046997,2.50462461091878996199,0.00000000000000000000,1.00000000000000000000,0.00063039141656364826,0.00251558049831528346,0.99999663722505505170,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.07582200902572822,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +19 ,1 ,0.70517857792753046997,2.50462461091878996199,1000.00000000000000000,0.00000000000000000000,0.00063039141656364826,0.00251558049831528346,0.99999663722505505170,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.07582200902572822,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +20 ,0 ,0.41782372823360391933,0.35286249232938704523,0.00000000000000000000,1.00000000000000000000,0.00028216243403025658,0.00039036337680465498,0.99999988400039063751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.18576003978080279,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +20 ,1 ,0.41782372823360391933,0.35286249232938704523,1000.00000000000000000,0.00000000000000000000,0.00028216243403025658,0.00039036337680465498,0.99999988400039063751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.18576003978080279,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +21 ,0 ,-1.9269250036527882929,-1.6592921244966489791,0.00000000000000000000,1.00000000000000000000,-0.0018415400574254634,-0.0016079756692825868,0.99999701156776654720,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.747436537930411759,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +21 ,1 ,-1.9269250036527882929,-1.6592921244966489791,1000.00000000000000000,0.00000000000000000000,-0.0018415400574254634,-0.0016079756692825868,0.99999701156776654720,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.747436537930411759,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +22 ,0 ,0.71819057674736930252,0.24038868057686563206,0.00000000000000000000,1.00000000000000000000,0.00075330027603372098,0.00018460705761746973,0.99999969922941900346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.570602993290890481,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +22 ,1 ,0.71819057674736930252,0.24038868057686563206,1000.00000000000000000,0.00000000000000000000,0.00075330027603372098,0.00018460705761746973,0.99999969922941900346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.570602993290890481,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +23 ,0 ,-0.5333944448865763909,-0.3491162148992120739,0.00000000000000000000,1.00000000000000000000,-0.0005004043916503004,-0.0003542149766876076,0.99999981206357990703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31361793697305984,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +23 ,1 ,-0.5333944448865763909,-0.3491162148992120739,1000.00000000000000000,0.00000000000000000000,-0.0005004043916503004,-0.0003542149766876076,0.99999981206357990703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31361793697305984,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +24 ,0 ,-1.0004845293630568736,0.27965548998261069435,0.00000000000000000000,1.00000000000000000000,-0.0010309023807825096,0.00029120681483637569,0.99999942621927151442,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.18257041579749966,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +24 ,1 ,-1.0004845293630568736,0.27965548998261069435,1000.00000000000000000,0.00000000000000000000,-0.0010309023807825096,0.00029120681483637569,0.99999942621927151442,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.18257041579749966,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +25 ,0 ,-1.0475245727238207127,-1.6252015690166470296,0.00000000000000000000,1.00000000000000000000,-0.0011327159901788927,-0.0016105479018686105,0.99999806154309189842,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.641207178354989082,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +25 ,1 ,-1.0475245727238207127,-1.6252015690166470296,1000.00000000000000000,0.00000000000000000000,-0.0011327159901788927,-0.0016105479018686105,0.99999806154309189842,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.641207178354989082,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +26 ,0 ,0.08293425913302394925,-0.0789550597434337947,0.00000000000000000000,1.00000000000000000000,0.00016840245556516079,-0.0000543813850827478,0.99999998434163883676,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.38015029476855488,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +26 ,1 ,0.08293425913302394925,-0.0789550597434337947,1000.00000000000000000,0.00000000000000000000,0.00016840245556516079,-0.0000543813850827478,0.99999998434163883676,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.38015029476855488,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +27 ,0 ,0.01316612190347112368,-1.3483435538680108578,0.00000000000000000000,1.00000000000000000000,-0.0000058856042086105,-0.0013058015290100481,0.99999914742349982343,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.797833446225013176,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +27 ,1 ,0.01316612190347112368,-1.3483435538680108578,1000.00000000000000000,0.00000000000000000000,-0.0000058856042086105,-0.0013058015290100481,0.99999914742349982343,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.797833446225013176,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +28 ,0 ,1.58501814641925853344,-0.9479911811010655053,0.00000000000000000000,1.00000000000000000000,0.00158465814080821975,-0.0009259965140188350,0.99999831569309793888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00443581343927235,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +28 ,1 ,1.58501814641925853344,-0.9479911811010655053,1000.00000000000000000,0.00000000000000000000,0.00158465814080821975,-0.0009259965140188350,0.99999831569309793888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00443581343927235,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +29 ,0 ,-0.9167279291628699366,-2.3441055475799839058,0.00000000000000000000,1.00000000000000000000,-0.0008991533767250880,-0.0023834752788065701,0.99999675527913600703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00056570218316664,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +29 ,1 ,-0.9167279291628699366,-2.3441055475799839058,1000.00000000000000000,0.00000000000000000000,-0.0008991533767250880,-0.0023834752788065701,0.99999675527913600703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00056570218316664,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +30 ,0 ,-0.1797181128960924634,1.10350129359520043870,0.00000000000000000000,1.00000000000000000000,-0.0001607173333056111,0.00113161890575448165,0.99999934680408208986,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.35575855989600313,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +30 ,1 ,-0.1797181128960924634,1.10350129359520043870,1000.00000000000000000,0.00000000000000000000,-0.0001607173333056111,0.00113161890575448165,0.99999934680408208986,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.35575855989600313,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +31 ,0 ,0.16950431700712983995,-0.0523025034678316694,0.00000000000000000000,1.00000000000000000000,0.00026100702396103373,-0.0000834773157025421,0.99999996245343492073,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.738417921663199194,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +31 ,1 ,0.16950431700712983995,-0.0523025034678316694,1000.00000000000000000,0.00000000000000000000,0.00026100702396103373,-0.0000834773157025421,0.99999996245343492073,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.738417921663199194,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +32 ,0 ,0.56553865649371493073,-0.4147385932787036044,0.00000000000000000000,1.00000000000000000000,0.00065596589530285322,-0.0004528904915224072,0.99999968229942304276,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.866787949154513626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +32 ,1 ,0.56553865649371493073,-0.4147385932787036044,1000.00000000000000000,0.00000000000000000000,0.00065596589530285322,-0.0004528904915224072,0.99999968229942304276,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.866787949154513626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +33 ,0 ,-0.4485652701366859007,-1.6530440751237360785,0.00000000000000000000,1.00000000000000000000,-0.0004711956062625525,-0.0015923036003770889,0.99999862127102201458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31486065666217655,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +33 ,1 ,-0.4485652701366859007,-1.6530440751237360785,1000.00000000000000000,0.00000000000000000000,-0.0004711956062625525,-0.0015923036003770889,0.99999862127102201458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31486065666217655,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +34 ,0 ,0.78105532412396039276,0.97356690375945098558,0.00000000000000000000,1.00000000000000000000,0.00077040280388320653,0.00100125865035467363,0.99999920197999903059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.988704958134462685,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +34 ,1 ,0.78105532412396039276,0.97356690375945098558,1000.00000000000000000,0.00000000000000000000,0.00077040280388320653,0.00100125865035467363,0.99999920197999903059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.988704958134462685,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +35 ,0 ,-0.7836334710378285439,-0.2168541122606920945,0.00000000000000000000,1.00000000000000000000,-0.0008966323682086169,-0.0001893176076927331,0.99999958010453171564,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.11368459345305836,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +35 ,1 ,-0.7836334710378285439,-0.2168541122606920945,1000.00000000000000000,0.00000000000000000000,-0.0008966323682086169,-0.0001893176076927331,0.99999958010453171564,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.11368459345305836,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +36 ,0 ,0.21225987736993512378,0.19207157739838517929,0.00000000000000000000,1.00000000000000000000,0.00022119708182556045,0.00017092002168079842,0.99999996092909781975,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.575345434728433247,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +36 ,1 ,0.21225987736993512378,0.19207157739838517929,1000.00000000000000000,0.00000000000000000000,0.00022119708182556045,0.00017092002168079842,0.99999996092909781975,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.575345434728433247,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +37 ,0 ,1.71124919276443021587,0.10190353922986197798,0.00000000000000000000,1.00000000000000000000,0.00168442302812935929,0.00007665241349480921,0.99999857842072448210,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.946220689356664479,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +37 ,1 ,1.71124919276443021587,0.10190353922986197798,1000.00000000000000000,0.00000000000000000000,0.00168442302812935929,0.00007665241349480921,0.99999857842072448210,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.946220689356664479,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +38 ,0 ,-0.1269411358338376760,-0.3764478417177709590,0.00000000000000000000,1.00000000000000000000,-0.0002653531611246259,-0.0003591975689766601,0.99999990028239815753,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.599681625954985975,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +38 ,1 ,-0.1269411358338376760,-0.3764478417177709590,1000.00000000000000000,0.00000000000000000000,-0.0002653531611246259,-0.0003591975689766601,0.99999990028239815753,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.599681625954985975,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +39 ,0 ,0.50783166221466424783,0.42212588908461795567,0.00000000000000000000,1.00000000000000000000,0.00053697948549918331,0.00040401671790679649,0.99999977421173635860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.603115444404693334,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +39 ,1 ,0.50783166221466424783,0.42212588908461795567,1000.00000000000000000,0.00000000000000000000,0.00053697948549918331,0.00040401671790679649,0.99999977421173635860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.603115444404693334,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +40 ,0 ,-0.8384072931463998346,0.30729520301197282838,0.00000000000000000000,1.00000000000000000000,-0.0008743664504504158,0.00022539894884708019,0.99999959233922897094,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.33877908896727149,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +40 ,1 ,-0.8384072931463998346,0.30729520301197282838,1000.00000000000000000,0.00000000000000000000,-0.0008743664504504158,0.00022539894884708019,0.99999959233922897094,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.33877908896727149,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +41 ,0 ,-0.7899393467840394311,0.76723135621776172854,0.00000000000000000000,1.00000000000000000000,-0.0006517192778375967,0.00068775993822289924,0.99999955112402438839,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.836947040311315504,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +41 ,1 ,-0.7899393467840394311,0.76723135621776172854,1000.00000000000000000,0.00000000000000000000,-0.0006517192778375967,0.00068775993822289924,0.99999955112402438839,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.836947040311315504,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +42 ,0 ,0.74757061350202702598,-0.8084556387039879554,0.00000000000000000000,1.00000000000000000000,0.00081861611342077329,-0.0007760288684307970,0.99999936382322474059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.848674824768181679,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +42 ,1 ,0.74757061350202702598,-0.8084556387039879554,1000.00000000000000000,0.00000000000000000000,0.00081861611342077329,-0.0007760288684307970,0.99999936382322474059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.848674824768181679,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +43 ,0 ,-0.2139615585003428743,0.05992546375144839482,0.00000000000000000000,1.00000000000000000000,-0.0001038115510734464,0.00003401273033540993,0.99999999403314809853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.753514558396091160,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +43 ,1 ,-0.2139615585003428743,0.05992546375144839482,1000.00000000000000000,0.00000000000000000000,-0.0001038115510734464,0.00003401273033540993,0.99999999403314809853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.753514558396091160,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +44 ,0 ,-0.0259617457223818223,0.88588997594541118996,0.00000000000000000000,1.00000000000000000000,-0.0000047276659541162,0.00092652710465491506,0.99999957076249468279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.40675464547962292,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +44 ,1 ,-0.0259617457223818223,0.88588997594541118996,1000.00000000000000000,0.00000000000000000000,-0.0000047276659541162,0.00092652710465491506,0.99999957076249468279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.40675464547962292,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +45 ,0 ,-0.9713664266712692674,-0.3879490312881589408,0.00000000000000000000,1.00000000000000000000,-0.0008790426328031954,-0.0003971812050399908,0.99999953476546177277,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10736756056360263,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +45 ,1 ,-0.9713664266712692674,-0.3879490312881589408,1000.00000000000000000,0.00000000000000000000,-0.0008790426328031954,-0.0003971812050399908,0.99999953476546177277,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10736756056360263,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +46 ,0 ,0.19852324774040031041,-0.8110501106401933890,0.00000000000000000000,1.00000000000000000000,0.00022445089431004437,-0.0007823781246552961,0.99999966875307821911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.923427335494125145,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +46 ,1 ,0.19852324774040031041,-0.8110501106401933890,1000.00000000000000000,0.00000000000000000000,0.00022445089431004437,-0.0007823781246552961,0.99999966875307821911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.923427335494125145,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +47 ,0 ,1.80801825985799857754,-0.9585792106883930241,0.00000000000000000000,1.00000000000000000000,0.00185954213099227242,-0.0009008081146911684,0.99999786532162326935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47781973719145298,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +47 ,1 ,1.80801825985799857754,-0.9585792106883930241,1000.00000000000000000,0.00000000000000000000,0.00185954213099227242,-0.0009008081146911684,0.99999786532162326935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47781973719145298,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +48 ,0 ,2.73967015752784304183,0.01792996819285708545,0.00000000000000000000,1.00000000000000000000,0.00276317660115505585,0.00002020699536371607,0.99999618221608632673,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.588951826112975140,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +48 ,1 ,2.73967015752784304183,0.01792996819285708545,1000.00000000000000000,0.00000000000000000000,0.00276317660115505585,0.00002020699536371607,0.99999618221608632673,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.588951826112975140,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +49 ,0 ,0.48945419975328074979,-0.3193027228559736641,0.00000000000000000000,1.00000000000000000000,0.00050186940267031056,-0.0002701673572949503,0.99999983756833754622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.533507536227716627,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +49 ,1 ,0.48945419975328074979,-0.3193027228559736641,1000.00000000000000000,0.00000000000000000000,0.00050186940267031056,-0.0002701673572949503,0.99999983756833754622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.533507536227716627,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +50 ,0 ,-1.3471564098272750253,1.52902220345004002943,0.00000000000000000000,1.00000000000000000000,-0.0013127657516968141,0.00150950123607214176,0.99999799902404773455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.650863602501658533,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +50 ,1 ,-1.3471564098272750253,1.52902220345004002943,1000.00000000000000000,0.00000000000000000000,-0.0013127657516968141,0.00150950123607214176,0.99999799902404773455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.650863602501658533,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +51 ,0 ,0.49558075392898193189,-0.9498188443236809108,0.00000000000000000000,1.00000000000000000000,0.00055118516153753534,-0.0009581135850559639,0.99999938910645136402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.804580978439958016,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +51 ,1 ,0.49558075392898193189,-0.9498188443236809108,1000.00000000000000000,0.00000000000000000000,0.00055118516153753534,-0.0009581135850559639,0.99999938910645136402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.804580978439958016,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +52 ,0 ,-0.2557343463800159089,0.31839950798907895590,0.00000000000000000000,1.00000000000000000000,-0.0002251812763279580,0.00032185154431477777,0.99999992285248517909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.35999316167908546,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +52 ,1 ,-0.2557343463800159089,0.31839950798907895590,1000.00000000000000000,0.00000000000000000000,-0.0002251812763279580,0.00032185154431477777,0.99999992285248517909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.35999316167908546,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +53 ,0 ,-0.4216889763453134376,1.37431653696732136715,0.00000000000000000000,1.00000000000000000000,-0.0004510359085725458,0.00135237467899688513,0.99999898382415208786,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.798531889923651760,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +53 ,1 ,-0.4216889763453134376,1.37431653696732136715,1000.00000000000000000,0.00000000000000000000,-0.0004510359085725458,0.00135237467899688513,0.99999898382415208786,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.798531889923651760,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +54 ,0 ,1.12014432126193441696,-0.3721451184583185467,0.00000000000000000000,1.00000000000000000000,0.00115758704346757813,-0.0003712690067350706,0.99999926107550762832,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.633666333985615892,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +54 ,1 ,1.12014432126193441696,-0.3721451184583185467,1000.00000000000000000,0.00000000000000000000,0.00115758704346757813,-0.0003712690067350706,0.99999926107550762832,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.633666333985615892,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +55 ,0 ,0.58869468921998990840,0.67958205016432982059,0.00000000000000000000,1.00000000000000000000,0.00064179749339880103,0.00067047227829122163,0.99999956928135802503,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.850466723834642834,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +55 ,1 ,0.58869468921998990840,0.67958205016432982059,1000.00000000000000000,0.00000000000000000000,0.00064179749339880103,0.00067047227829122163,0.99999956928135802503,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.850466723834642834,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +56 ,0 ,-0.4688057571369460552,2.07249872204422835864,0.00000000000000000000,1.00000000000000000000,-0.0004924910138135828,0.00201421236181962290,0.99999785019827058807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12656711912268292,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +56 ,1 ,-0.4688057571369460552,2.07249872204422835864,1000.00000000000000000,0.00000000000000000000,-0.0004924910138135828,0.00201421236181962290,0.99999785019827058807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12656711912268292,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +57 ,0 ,0.57685328936845792213,-0.8103843964160919455,0.00000000000000000000,1.00000000000000000000,0.00065593180329993742,-0.0008382090037037597,0.99999943357940734856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.957921762255068642,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +57 ,1 ,0.57685328936845792213,-0.8103843964160919455,1000.00000000000000000,0.00000000000000000000,0.00065593180329993742,-0.0008382090037037597,0.99999943357940734856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.957921762255068642,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +58 ,0 ,-0.9408871378345998737,1.48953737914822759158,0.00000000000000000000,1.00000000000000000000,-0.0009409181307578014,0.00139045561530202056,0.99999859065213336783,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.678808335439839538,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +58 ,1 ,-0.9408871378345998737,1.48953737914822759158,1000.00000000000000000,0.00000000000000000000,-0.0009409181307578014,0.00139045561530202056,0.99999859065213336783,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.678808335439839538,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +59 ,0 ,1.24764877075773461534,0.93451929437038616654,0.00000000000000000000,1.00000000000000000000,0.00121248222199622735,0.00093815426768459190,0.99999882487602531622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.28535443638509150,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +59 ,1 ,1.24764877075773461534,0.93451929437038616654,1000.00000000000000000,0.00000000000000000000,0.00121248222199622735,0.00093815426768459190,0.99999882487602531622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.28535443638509150,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +60 ,0 ,0.59171738784053651283,-0.6506155605881595027,0.00000000000000000000,1.00000000000000000000,0.00053756356162720818,-0.0006124564436113300,0.99999966796120576262,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.959696905628220520,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +60 ,1 ,0.59171738784053651283,-0.6506155605881595027,1000.00000000000000000,0.00000000000000000000,0.00053756356162720818,-0.0006124564436113300,0.99999966796120576262,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.959696905628220520,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +61 ,0 ,-1.4635139042672069553,0.53470839520275903478,0.00000000000000000000,1.00000000000000000000,-0.0014773600400536099,0.00054475863018046814,0.99999876032190504471,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.17828341964661831,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +61 ,1 ,-1.4635139042672069553,0.53470839520275903478,1000.00000000000000000,0.00000000000000000000,-0.0014773600400536099,0.00054475863018046814,0.99999876032190504471,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.17828341964661831,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +62 ,0 ,-0.5422612966631934483,-0.2416637075114057842,0.00000000000000000000,1.00000000000000000000,-0.0005388840563157253,-0.0002410612880775294,0.99999982574669943335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47482359306093258,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +62 ,1 ,-0.5422612966631934483,-0.2416637075114057842,1000.00000000000000000,0.00000000000000000000,-0.0005388840563157253,-0.0002410612880775294,0.99999982574669943335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47482359306093258,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +63 ,0 ,0.08591421232759309523,1.85175436147774408190,0.00000000000000000000,1.00000000000000000000,0.00010673566705110033,0.00180120791867362283,0.99999837212744058234,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32833408793237595,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +63 ,1 ,0.08591421232759309523,1.85175436147774408190,1000.00000000000000000,0.00000000000000000000,0.00010673566705110033,0.00180120791867362283,0.99999837212744058234,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32833408793237595,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +64 ,0 ,-0.2430691772559476493,1.04372760174422318790,0.00000000000000000000,1.00000000000000000000,-0.0003022533785151572,0.00103046643067751238,0.99999942339074887609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.840379145674432947,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +64 ,1 ,-0.2430691772559476493,1.04372760174422318790,1000.00000000000000000,0.00000000000000000000,-0.0003022533785151572,0.00103046643067751238,0.99999942339074887609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.840379145674432947,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +65 ,0 ,-1.5565802006859368322,-1.2989388232442971027,0.00000000000000000000,1.00000000000000000000,-0.0015288205757833291,-0.0012591285889789931,0.99999803864949821097,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.890240389397604303,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +65 ,1 ,-1.5565802006859368322,-1.2989388232442971027,1000.00000000000000000,0.00000000000000000000,-0.0015288205757833291,-0.0012591285889789931,0.99999803864949821097,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.890240389397604303,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +66 ,0 ,2.11153608544163917670,-1.7187514664914442796,0.00000000000000000000,1.00000000000000000000,0.00205980031063825999,-0.0017395932412820887,0.99999636551241277704,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.48924277406024430,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +66 ,1 ,2.11153608544163917670,-1.7187514664914442796,1000.00000000000000000,0.00000000000000000000,0.00205980031063825999,-0.0017395932412820887,0.99999636551241277704,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.48924277406024430,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +67 ,0 ,0.11890747152019708055,-1.1921153847567595995,0.00000000000000000000,1.00000000000000000000,0.00018084119877233612,-0.0012145278895877474,0.99999924610894896925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.797095875421973687,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +67 ,1 ,0.11890747152019708055,-1.1921153847567595995,1000.00000000000000000,0.00000000000000000000,0.00018084119877233612,-0.0012145278895877474,0.99999924610894896925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.797095875421973687,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +68 ,0 ,1.32265381648594892993,0.73352131742713910789,0.00000000000000000000,1.00000000000000000000,0.00129511654073349554,0.00076109576389209979,0.99999887170255563617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32792680095519699,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +68 ,1 ,1.32265381648594892993,0.73352131742713910789,1000.00000000000000000,0.00000000000000000000,0.00129511654073349554,0.00076109576389209979,0.99999887170255563617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32792680095519699,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +69 ,0 ,0.94584093436695526602,-1.3666366437469541494,0.00000000000000000000,1.00000000000000000000,0.00088467575533312864,-0.0013948554369992089,0.99999863586262849324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.45606075142950430,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +69 ,1 ,0.94584093436695526602,-1.3666366437469541494,1000.00000000000000000,0.00000000000000000000,0.00088467575533312864,-0.0013948554369992089,0.99999863586262849324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.45606075142950430,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +70 ,0 ,2.08453918437952667730,1.40035435615291636857,0.00000000000000000000,1.00000000000000000000,0.00216105894451558595,0.00142216208391018699,0.99999665363402368001,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.844652218518149311,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +70 ,1 ,2.08453918437952667730,1.40035435615291636857,1000.00000000000000000,0.00000000000000000000,0.00216105894451558595,0.00142216208391018699,0.99999665363402368001,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.844652218518149311,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +71 ,0 ,-0.4069753088334398527,-0.0380850055988729910,0.00000000000000000000,1.00000000000000000000,-0.0004644513129295223,-0.0001104810191282935,0.99999988603945466625,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.914338366897368359,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +71 ,1 ,-0.4069753088334398527,-0.0380850055988729910,1000.00000000000000000,0.00000000000000000000,-0.0004644513129295223,-0.0001104810191282935,0.99999988603945466625,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.914338366897368359,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +72 ,0 ,-0.3242418849809126646,-0.4467221357914749613,0.00000000000000000000,1.00000000000000000000,-0.0002441435275330030,-0.0004726796610111265,0.99999985848392802800,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.04188863744548143,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +72 ,1 ,-0.3242418849809126646,-0.4467221357914749613,1000.00000000000000000,0.00000000000000000000,-0.0002441435275330030,-0.0004726796610111265,0.99999985848392802800,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.04188863744548143,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +73 ,0 ,0.54795736024740759884,0.26422237465476122730,0.00000000000000000000,1.00000000000000000000,0.00050976502655702613,0.00027086213819938235,0.99999983338664599763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.594815903122594136,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +73 ,1 ,0.54795736024740759884,0.26422237465476122730,1000.00000000000000000,0.00000000000000000000,0.00050976502655702613,0.00027086213819938235,0.99999983338664599763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.594815903122594136,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +74 ,0 ,-1.3838907911750455426,0.56183783660451214192,0.00000000000000000000,1.00000000000000000000,-0.0012835147329476723,0.00045182009547032854,0.99999907422383726984,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.40648319211277339,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +74 ,1 ,-1.3838907911750455426,0.56183783660451214192,1000.00000000000000000,0.00000000000000000000,-0.0012835147329476723,0.00045182009547032854,0.99999907422383726984,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.40648319211277339,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +75 ,0 ,-1.6655895380302467856,0.03336220469314755965,0.00000000000000000000,1.00000000000000000000,-0.0015909603563935301,0.00004301689647944952,0.99999873349654355703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47799516981490342,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +75 ,1 ,-1.6655895380302467856,0.03336220469314755965,1000.00000000000000000,0.00000000000000000000,-0.0015909603563935301,0.00004301689647944952,0.99999873349654355703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47799516981490342,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +76 ,0 ,-0.7296919625333230241,-0.5155082677398084012,0.00000000000000000000,1.00000000000000000000,-0.0006826033172506007,-0.0004958732562483936,0.99999964408114916381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.871413030342637284,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +76 ,1 ,-0.7296919625333230241,-0.5155082677398084012,1000.00000000000000000,0.00000000000000000000,-0.0006826033172506007,-0.0004958732562483936,0.99999964408114916381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.871413030342637284,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +77 ,0 ,-0.5401182505938457723,0.62777631819664181378,0.00000000000000000000,1.00000000000000000000,-0.0005820398418553848,0.00068832697304810276,0.99999959371771773852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32296687073653629,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +77 ,1 ,-0.5401182505938457723,0.62777631819664181378,1000.00000000000000000,0.00000000000000000000,-0.0005820398418553848,0.00068832697304810276,0.99999959371771773852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32296687073653629,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +78 ,0 ,0.98397114436807853188,0.65933452354979948939,0.00000000000000000000,1.00000000000000000000,0.00098487746168404786,0.00062226109014273587,0.99999932140353031684,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12866059580369437,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +78 ,1 ,0.98397114436807853188,0.65933452354979948939,1000.00000000000000000,0.00000000000000000000,0.00098487746168404786,0.00062226109014273587,0.99999932140353031684,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12866059580369437,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +79 ,0 ,0.03264102177293599915,0.04955095577989235278,0.00000000000000000000,1.00000000000000000000,0.00005542406252287200,0.00004796526416486207,0.99999999731375333045,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.07100866030236829,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +79 ,1 ,0.03264102177293599915,0.04955095577989235278,1000.00000000000000000,0.00000000000000000000,0.00005542406252287200,0.00004796526416486207,0.99999999731375333045,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.07100866030236829,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +80 ,0 ,-0.5447107265508674966,0.45709242085101681185,0.00000000000000000000,1.00000000000000000000,-0.0004450758993624834,0.00047478836824383296,0.99999978824170221436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.994959381612602555,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +80 ,1 ,-0.5447107265508674966,0.45709242085101681185,1000.00000000000000000,0.00000000000000000000,-0.0004450758993624834,0.00047478836824383296,0.99999978824170221436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.994959381612602555,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +81 ,0 ,-1.3159830892265409474,-0.2038041873885136912,0.00000000000000000000,1.00000000000000000000,-0.0013400320074743615,-0.0002555568776573170,0.99999906950201766786,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.49009330711078291,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +81 ,1 ,-1.3159830892265409474,-0.2038041873885136912,1000.00000000000000000,0.00000000000000000000,-0.0013400320074743615,-0.0002555568776573170,0.99999906950201766786,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.49009330711078291,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +82 ,0 ,0.92426414986894955827,1.04744241302273821681,0.00000000000000000000,1.00000000000000000000,0.00083001729408805973,0.00105360167614902818,0.99999910049699525238,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.550291947709524720,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +82 ,1 ,0.92426414986894955827,1.04744241302273821681,1000.00000000000000000,0.00000000000000000000,0.00083001729408805973,0.00105360167614902818,0.99999910049699525238,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.550291947709524720,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +83 ,0 ,0.78080121015752335100,-0.2568587679963587055,0.00000000000000000000,1.00000000000000000000,0.00071165003959696880,-0.0002067030863929171,0.99999972541398995939,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.17161008622281315,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +83 ,1 ,0.78080121015752335100,-0.2568587679963587055,1000.00000000000000000,0.00000000000000000000,0.00071165003959696880,-0.0002067030863929171,0.99999972541398995939,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.17161008622281315,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +84 ,0 ,2.39842212411325306220,-1.1510856808509866144,0.00000000000000000000,1.00000000000000000000,0.00238875458607482700,-0.0011713998243742561,0.99999646083072657454,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.41233452966719141,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +84 ,1 ,2.39842212411325306220,-1.1510856808509866144,1000.00000000000000000,0.00000000000000000000,0.00238875458607482700,-0.0011713998243742561,0.99999646083072657454,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.41233452966719141,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +85 ,0 ,2.09719206044459616222,0.39217859604741583945,0.00000000000000000000,1.00000000000000000000,0.00203118663636463192,0.00039649320596414730,0.99999785853469991270,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.614436455609165932,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +85 ,1 ,2.09719206044459616222,0.39217859604741583945,1000.00000000000000000,0.00000000000000000000,0.00203118663636463192,0.00039649320596414730,0.99999785853469991270,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.614436455609165932,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +86 ,0 ,-2.0379453778828944265,-1.1142956025783143925,0.00000000000000000000,1.00000000000000000000,-0.0019895104228308596,-0.0011297691256858671,0.99999738273157490198,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.884398906303204057,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +86 ,1 ,-2.0379453778828944265,-1.1142956025783143925,1000.00000000000000000,0.00000000000000000000,-0.0019895104228308596,-0.0011297691256858671,0.99999738273157490198,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.884398906303204057,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +87 ,0 ,-2.2221363543113361593,-0.5772824515812883250,0.00000000000000000000,1.00000000000000000000,-0.0022322434790677000,-0.0005045075194250165,0.99999738127717763269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.680757830020866094,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +87 ,1 ,-2.2221363543113361593,-0.5772824515812883250,1000.00000000000000000,0.00000000000000000000,-0.0022322434790677000,-0.0005045075194250165,0.99999738127717763269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.680757830020866094,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +88 ,0 ,0.06899502188641938593,-1.0350850553824955113,0.00000000000000000000,1.00000000000000000000,0.00005380118861179269,-0.0010292321202283365,0.99999946889319635268,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12626038095640979,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +88 ,1 ,0.06899502188641938593,-1.0350850553824955113,1000.00000000000000000,0.00000000000000000000,0.00005380118861179269,-0.0010292321202283365,0.99999946889319635268,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12626038095640979,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +89 ,0 ,-2.1951824614942032631,0.35745149730564490520,0.00000000000000000000,1.00000000000000000000,-0.0022136378953403314,0.00036317053236873645,0.99999748395405108070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.749137231243025780,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +89 ,1 ,-2.1951824614942032631,0.35745149730564490520,1000.00000000000000000,0.00000000000000000000,-0.0022136378953403314,0.00036317053236873645,0.99999748395405108070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.749137231243025780,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +90 ,0 ,-1.9540578361717375610,0.20224266990360870166,0.00000000000000000000,1.00000000000000000000,-0.0019206639383721631,0.00021425101281859413,0.99999813257152603274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.07764555992525856,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +90 ,1 ,-1.9540578361717375610,0.20224266990360870166,1000.00000000000000000,0.00000000000000000000,-0.0019206639383721631,0.00021425101281859413,0.99999813257152603274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.07764555992525856,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +91 ,0 ,0.22078146898190109670,0.03687690546975989913,0.00000000000000000000,1.00000000000000000000,0.00022256382620524053,0.00013596715162152224,0.99999996598913787337,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.03137336779730048,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +91 ,1 ,0.22078146898190109670,0.03687690546975989913,1000.00000000000000000,0.00000000000000000000,0.00022256382620524053,0.00013596715162152224,0.99999996598913787337,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.03137336779730048,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +92 ,0 ,-0.1654499813753515791,-0.0827465214174573776,0.00000000000000000000,1.00000000000000000000,-0.0002249006518194522,-0.0000814146187858942,0.99999997139567797788,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.753983722919997489,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +92 ,1 ,-0.1654499813753515791,-0.0827465214174573776,1000.00000000000000000,0.00000000000000000000,-0.0002249006518194522,-0.0000814146187858942,0.99999997139567797788,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.753983722919997489,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +93 ,0 ,-0.0021580378342530830,1.64854046404500431677,0.00000000000000000000,1.00000000000000000000,0.00008803766096529720,0.00159420542139942860,0.99999872537840994723,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.632675023579508888,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +93 ,1 ,-0.0021580378342530830,1.64854046404500431677,1000.00000000000000000,0.00000000000000000000,0.00008803766096529720,0.00159420542139942860,0.99999872537840994723,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.632675023579508888,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +94 ,0 ,1.19793906877164912927,-0.4718622440529978145,0.00000000000000000000,1.00000000000000000000,0.00100629528758512860,-0.0004623640534316621,0.99999938679445010691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.45745356998736497,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +94 ,1 ,1.19793906877164912927,-0.4718622440529978145,1000.00000000000000000,0.00000000000000000000,0.00100629528758512860,-0.0004623640534316621,0.99999938679445010691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.45745356998736497,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +95 ,0 ,0.57871398906186477528,-0.2238900879201877469,0.00000000000000000000,1.00000000000000000000,0.00057199701723625027,-0.0002221862834076512,0.99999981172631613457,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.946333983765384800,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +95 ,1 ,0.57871398906186477528,-0.2238900879201877469,1000.00000000000000000,0.00000000000000000000,0.00057199701723625027,-0.0002221862834076512,0.99999981172631613457,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.946333983765384800,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +96 ,0 ,-0.7612365363911161031,0.30659328003550390118,0.00000000000000000000,1.00000000000000000000,-0.0007741508019879976,0.00031598031540485419,0.99999965042342686682,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.04580852814774516,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +96 ,1 ,-0.7612365363911161031,0.30659328003550390118,1000.00000000000000000,0.00000000000000000000,-0.0007741508019879976,0.00031598031540485419,0.99999965042342686682,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.04580852814774516,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +97 ,0 ,-0.3825729369826243453,-0.2124654565857720389,0.00000000000000000000,1.00000000000000000000,-0.0003800887565084805,-0.0002980886823312195,0.99999988333783051963,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.21915350266044697,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +97 ,1 ,-0.3825729369826243453,-0.2124654565857720389,1000.00000000000000000,0.00000000000000000000,-0.0003800887565084805,-0.0002980886823312195,0.99999988333783051963,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.21915350266044697,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +98 ,0 ,-0.8829789714450672066,1.08370584632762767540,0.00000000000000000000,1.00000000000000000000,-0.0009466077942127096,0.00110350338890192155,0.99999894310641879169,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22367594657157496,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +98 ,1 ,-0.8829789714450672066,1.08370584632762767540,1000.00000000000000000,0.00000000000000000000,-0.0009466077942127096,0.00110350338890192155,0.99999894310641879169,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22367594657157496,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +99 ,0 ,-0.1474668622954377894,0.01008611097185791762,0.00000000000000000000,1.00000000000000000000,-0.0001595040788485187,0.00001422993553839629,0.99999998717797877745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.42227818685103102,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +99 ,1 ,-0.1474668622954377894,0.01008611097185791762,1000.00000000000000000,0.00000000000000000000,-0.0001595040788485187,0.00001422993553839629,0.99999998717797877745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.42227818685103102,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +100 ,0 ,-0.0603262639038006226,0.50446361388396288027,0.00000000000000000000,1.00000000000000000000,-0.0001142735496553844,0.00051267018153745326,0.99999986205541091521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.19061035758807065,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +100 ,1 ,-0.0603262639038006226,0.50446361388396288027,1000.00000000000000000,0.00000000000000000000,-0.0001142735496553844,0.00051267018153745326,0.99999986205541091521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.19061035758807065,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +101 ,0 ,-0.6156483108968968664,0.29316741609214913566,0.00000000000000000000,1.00000000000000000000,-0.0006988564399292118,0.00027792160833836051,0.99999971717958802130,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.677745486645449091,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +101 ,1 ,-0.6156483108968968664,0.29316741609214913566,1000.00000000000000000,0.00000000000000000000,-0.0006988564399292118,0.00027792160833836051,0.99999971717958802130,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.677745486645449091,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +102 ,0 ,1.32456890192451814947,0.55396745248067802425,0.00000000000000000000,1.00000000000000000000,0.00126896438936705056,0.00050835114686429512,0.99999906565380858314,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.568205460351236979,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +102 ,1 ,1.32456890192451814947,0.55396745248067802425,1000.00000000000000000,0.00000000000000000000,0.00126896438936705056,0.00050835114686429512,0.99999906565380858314,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.568205460351236979,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +103 ,0 ,-1.5396019109354142084,-0.1496533342816879219,0.00000000000000000000,1.00000000000000000000,-0.0013913073566147135,-0.0001593510202706875,0.99999901943506508406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.690426933986827862,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +103 ,1 ,-1.5396019109354142084,-0.1496533342816879219,1000.00000000000000000,0.00000000000000000000,-0.0013913073566147135,-0.0001593510202706875,0.99999901943506508406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.690426933986827862,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +104 ,0 ,0.54678213455293844802,0.48814011557159348031,0.00000000000000000000,1.00000000000000000000,0.00054721486465063133,0.00053187034154602620,0.99999970883487354633,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.530376631636499951,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +104 ,1 ,0.54678213455293844802,0.48814011557159348031,1000.00000000000000000,0.00000000000000000000,0.00054721486465063133,0.00053187034154602620,0.99999970883487354633,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.530376631636499951,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +105 ,0 ,-0.1152209066197300568,-2.0994739425787463105,0.00000000000000000000,1.00000000000000000000,-0.0001930662768033853,-0.0021343629824942780,0.99999770360739914654,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22888984632936626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +105 ,1 ,-0.1152209066197300568,-2.0994739425787463105,1000.00000000000000000,0.00000000000000000000,-0.0001930662768033853,-0.0021343629824942780,0.99999770360739914654,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22888984632936626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +106 ,0 ,-0.1491554478290753327,0.93244407003061557936,0.00000000000000000000,1.00000000000000000000,-0.0001083420673039859,0.00093290750811767626,0.99999955897269154903,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.503803976805897946,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +106 ,1 ,-0.1491554478290753327,0.93244407003061557936,1000.00000000000000000,0.00000000000000000000,-0.0001083420673039859,0.00093290750811767626,0.99999955897269154903,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.503803976805897946,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +107 ,0 ,-0.0173663832416336497,-0.3684789010119428054,0.00000000000000000000,1.00000000000000000000,-0.0000183363254805070,-0.0003519573512776842,0.99999993789489916018,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25271401706584128,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +107 ,1 ,-0.0173663832416336497,-0.3684789010119428054,1000.00000000000000000,0.00000000000000000000,-0.0000183363254805070,-0.0003519573512776842,0.99999993789489916018,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25271401706584128,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +108 ,0 ,0.93577121833889109758,-0.0286036256160615703,0.00000000000000000000,1.00000000000000000000,0.00093860170741715432,-0.0000392201299542482,0.99999955874421075918,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.27179856995644513,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +108 ,1 ,0.93577121833889109758,-0.0286036256160615703,1000.00000000000000000,0.00000000000000000000,0.00093860170741715432,-0.0000392201299542482,0.99999955874421075918,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.27179856995644513,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +109 ,0 ,0.34075089129921343200,1.21278330064369566088,0.00000000000000000000,1.00000000000000000000,0.00035171408412968600,0.00113035054813297500,0.99999929930217523743,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.829127380236513999,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +109 ,1 ,0.34075089129921343200,1.21278330064369566088,1000.00000000000000000,0.00000000000000000000,0.00035171408412968600,0.00113035054813297500,0.99999929930217523743,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.829127380236513999,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +110 ,0 ,0.10687739901674066234,-0.9044179142900956591,0.00000000000000000000,1.00000000000000000000,0.00013327452176803520,-0.0009136305780599550,0.99999957375844339413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.948519383032930818,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +110 ,1 ,0.10687739901674066234,-0.9044179142900956591,1000.00000000000000000,0.00000000000000000000,0.00013327452176803520,-0.0009136305780599550,0.99999957375844339413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.948519383032930818,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +111 ,0 ,-0.7002075067655183504,-0.2416104847479868533,0.00000000000000000000,1.00000000000000000000,-0.0006259573049297531,-0.0001619677993512259,0.99999979097192037702,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47142645017459017,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +111 ,1 ,-0.7002075067655183504,-0.2416104847479868533,1000.00000000000000000,0.00000000000000000000,-0.0006259573049297531,-0.0001619677993512259,0.99999979097192037702,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47142645017459017,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +112 ,0 ,-1.1085517044286259391,-2.8302387579938095285,0.00000000000000000000,1.00000000000000000000,-0.0011265952731726901,-0.0028868975308952811,0.99999519829134009274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.36843200557927957,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +112 ,1 ,-1.1085517044286259391,-2.8302387579938095285,1000.00000000000000000,0.00000000000000000000,-0.0011265952731726901,-0.0028868975308952811,0.99999519829134009274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.36843200557927957,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +113 ,0 ,-1.4321251743169440828,0.01482061266824478799,0.00000000000000000000,1.00000000000000000000,-0.0013883939739688824,0.00006632721506343647,0.99999903398097023110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.06349115286241158,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +113 ,1 ,-1.4321251743169440828,0.01482061266824478799,1000.00000000000000000,0.00000000000000000000,-0.0013883939739688824,0.00006632721506343647,0.99999903398097023110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.06349115286241158,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +114 ,0 ,-0.2472896183592099561,0.98737930139752494440,0.00000000000000000000,1.00000000000000000000,-0.0001758175652766191,0.00096365224998128465,0.99999952023114735411,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10393703223826378,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +114 ,1 ,-0.2472896183592099561,0.98737930139752494440,1000.00000000000000000,0.00000000000000000000,-0.0001758175652766191,0.00096365224998128465,0.99999952023114735411,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10393703223826378,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +115 ,0 ,1.51043377551021396065,-0.2169311989335328816,0.00000000000000000000,1.00000000000000000000,0.00150505175241432884,-0.0001412135882759790,0.99999885743831984363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.574554451124072329,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +115 ,1 ,1.51043377551021396065,-0.2169311989335328816,1000.00000000000000000,0.00000000000000000000,0.00150505175241432884,-0.0001412135882759790,0.99999885743831984363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.574554451124072329,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +116 ,0 ,-0.7607180071865433657,-0.3846649619431722344,0.00000000000000000000,1.00000000000000000000,-0.0008384697626784454,-0.0003788335151369918,0.99999957672672279418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00780518040505739,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +116 ,1 ,-0.7607180071865433657,-0.3846649619431722344,1000.00000000000000000,0.00000000000000000000,-0.0008384697626784454,-0.0003788335151369918,0.99999957672672279418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00780518040505739,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +117 ,0 ,-1.6330979464376105259,1.65895347479569199578,0.00000000000000000000,1.00000000000000000000,-0.0015727734524358632,0.00174666367128369689,0.99999723777102833555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.37388353762310089,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +117 ,1 ,-1.6330979464376105259,1.65895347479569199578,1000.00000000000000000,0.00000000000000000000,-0.0015727734524358632,0.00174666367128369689,0.99999723777102833555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.37388353762310089,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +118 ,0 ,0.28702839616850639448,1.25521152545001446476,0.00000000000000000000,1.00000000000000000000,0.00032863511558845875,0.00123876511087269857,0.99999917872964327880,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31894145141211538,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +118 ,1 ,0.28702839616850639448,1.25521152545001446476,1000.00000000000000000,0.00000000000000000000,0.00032863511558845875,0.00123876511087269857,0.99999917872964327880,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31894145141211538,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +119 ,0 ,1.02367781838379978687,-0.2616809369357491754,0.00000000000000000000,1.00000000000000000000,0.00110238149033753721,-0.0002970326596745579,0.99999934826311198676,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32833208015904347,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +119 ,1 ,1.02367781838379978687,-0.2616809369357491754,1000.00000000000000000,0.00000000000000000000,0.00110238149033753721,-0.0002970326596745579,0.99999934826311198676,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32833208015904347,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +120 ,0 ,-2.0783712518146324477,2.06268688814147260757,0.00000000000000000000,1.00000000000000000000,-0.0020087605156341244,0.00209881107487270906,0.99999577992772692436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32721096252669212,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +120 ,1 ,-2.0783712518146324477,2.06268688814147260757,1000.00000000000000000,0.00000000000000000000,-0.0020087605156341244,0.00209881107487270906,0.99999577992772692436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32721096252669212,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +121 ,0 ,-0.4242820676737372176,0.62108500633306584770,0.00000000000000000000,1.00000000000000000000,-0.0003742399542581290,0.00056506960190200498,0.99999977032037457025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.13595985044628378,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +121 ,1 ,-0.4242820676737372176,0.62108500633306584770,1000.00000000000000000,0.00000000000000000000,-0.0003742399542581290,0.00056506960190200498,0.99999977032037457025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.13595985044628378,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +122 ,0 ,0.42516837882992075670,2.20498683036771003784,0.00000000000000000000,1.00000000000000000000,0.00028687047624722535,0.00223184502898915665,0.99999746828334334924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.874631009157155858,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +122 ,1 ,0.42516837882992075670,2.20498683036771003784,1000.00000000000000000,0.00000000000000000000,0.00028687047624722535,0.00223184502898915665,0.99999746828334334924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.874631009157155858,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +123 ,0 ,-0.6427675255254926556,-0.4715472174206579158,0.00000000000000000000,1.00000000000000000000,-0.0006236996913295527,-0.0005659911019849165,0.99999964532632090730,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22347710537758302,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +123 ,1 ,-0.6427675255254926556,-0.4715472174206579158,1000.00000000000000000,0.00000000000000000000,-0.0006236996913295527,-0.0005659911019849165,0.99999964532632090730,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22347710537758302,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +124 ,0 ,0.18036590550494269180,-0.1737701892963341709,0.00000000000000000000,1.00000000000000000000,0.00006130244453754971,-0.0001048789176421406,0.99999999262121141985,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12953527676654630,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +124 ,1 ,0.18036590550494269180,-0.1737701892963341709,1000.00000000000000000,0.00000000000000000000,0.00006130244453754971,-0.0001048789176421406,0.99999999262121141985,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12953527676654630,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +125 ,0 ,1.02164219992728022567,-1.5494571188910311043,0.00000000000000000000,1.00000000000000000000,0.00111194454540221462,-0.0015406862648384648,0.99999819493095154498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.754333684966582040,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +125 ,1 ,1.02164219992728022567,-1.5494571188910311043,1000.00000000000000000,0.00000000000000000000,0.00111194454540221462,-0.0015406862648384648,0.99999819493095154498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.754333684966582040,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +126 ,0 ,1.39900747398519786912,-1.0922357013441630346,0.00000000000000000000,1.00000000000000000000,0.00141957046160898063,-0.0011027711683089522,0.99999838435642218748,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.989938187644952449,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +126 ,1 ,1.39900747398519786912,-1.0922357013441630346,1000.00000000000000000,0.00000000000000000000,0.00141957046160898063,-0.0011027711683089522,0.99999838435642218748,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.989938187644952449,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +127 ,0 ,0.52627552313479031287,0.09224830652260497532,0.00000000000000000000,1.00000000000000000000,0.00057630421925416270,0.00012806267406872135,0.99999982573668388941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25770380205483434,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +127 ,1 ,0.52627552313479031287,0.09224830652260497532,1000.00000000000000000,0.00000000000000000000,0.00057630421925416270,0.00012806267406872135,0.99999982573668388941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25770380205483434,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +128 ,0 ,0.04966782196664952520,1.49040844754269263816,0.00000000000000000000,1.00000000000000000000,0.00021685630376955947,0.00145749671723349001,0.99999891433774201754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.28963796892878690,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +128 ,1 ,0.04966782196664952520,1.49040844754269263816,1000.00000000000000000,0.00000000000000000000,0.00021685630376955947,0.00145749671723349001,0.99999891433774201754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.28963796892878690,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +129 ,0 ,-1.1874054217342067119,0.36820714322833242304,0.00000000000000000000,1.00000000000000000000,-0.0011703594787441187,0.00040858821713569173,0.99999923165688453519,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.821665888738380090,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +129 ,1 ,-1.1874054217342067119,0.36820714322833242304,1000.00000000000000000,0.00000000000000000000,-0.0011703594787441187,0.00040858821713569173,0.99999923165688453519,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.821665888738380090,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +130 ,0 ,-1.3153011062132182740,0.65224169109521834553,0.00000000000000000000,1.00000000000000000000,-0.0011913735163205996,0.00065598641242377352,0.99999907515505803701,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.914083651247779016,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +130 ,1 ,-1.3153011062132182740,0.65224169109521834553,1000.00000000000000000,0.00000000000000000000,-0.0011913735163205996,0.00065598641242377352,0.99999907515505803701,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.914083651247779016,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +131 ,0 ,-0.0578833854356642710,0.69642178075324812080,0.00000000000000000000,1.00000000000000000000,0.00003756605077242365,0.00072947559678418873,0.99999973322703716860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.13718451861541325,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +131 ,1 ,-0.0578833854356642710,0.69642178075324812080,1000.00000000000000000,0.00000000000000000000,0.00003756605077242365,0.00072947559678418873,0.99999973322703716860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.13718451861541325,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +132 ,0 ,0.23655954399227599460,-1.6974229447520072788,0.00000000000000000000,1.00000000000000000000,0.00032999638911670694,-0.0016944116407554288,0.99999851003467743471,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.895714996468768731,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +132 ,1 ,0.23655954399227599460,-1.6974229447520072788,1000.00000000000000000,0.00000000000000000000,0.00032999638911670694,-0.0016944116407554288,0.99999851003467743471,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.895714996468768731,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +133 ,0 ,0.46140041453821339922,-1.6274262969414239332,0.00000000000000000000,1.00000000000000000000,0.00054473895926402369,-0.0015600963940617651,0.99999863467842164954,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.34068441906561020,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +133 ,1 ,0.46140041453821339922,-1.6274262969414239332,1000.00000000000000000,0.00000000000000000000,0.00054473895926402369,-0.0015600963940617651,0.99999863467842164954,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.34068441906561020,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +134 ,0 ,-0.3224463755724100155,-1.1188216529804293486,0.00000000000000000000,1.00000000000000000000,-0.0004365826953249883,-0.0011285806606543147,0.99999926785035320175,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.42049870709684000,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +134 ,1 ,-0.3224463755724100155,-1.1188216529804293486,1000.00000000000000000,0.00000000000000000000,-0.0004365826953249883,-0.0011285806606543147,0.99999926785035320175,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.42049870709684000,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +135 ,0 ,0.54948684184325191637,-0.1496011492484608795,0.00000000000000000000,1.00000000000000000000,0.00053717693976299441,-0.0002162250248606715,0.99999983234382294750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10231207825052024,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +135 ,1 ,0.54948684184325191637,-0.1496011492484608795,1000.00000000000000000,0.00000000000000000000,0.00053717693976299441,-0.0002162250248606715,0.99999983234382294750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10231207825052024,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +136 ,0 ,-0.0345708724237000011,-0.4522761606790504096,0.00000000000000000000,1.00000000000000000000,-0.0000753576101162860,-0.0003864076782100584,0.99999992250516533953,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32918993294606480,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +136 ,1 ,-0.0345708724237000011,-0.4522761606790504096,1000.00000000000000000,0.00000000000000000000,-0.0000753576101162860,-0.0003864076782100584,0.99999992250516533953,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32918993294606480,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +137 ,0 ,1.72592087793923498750,-0.2435202456849825114,0.00000000000000000000,1.00000000000000000000,0.00179417075950594564,-0.0002016259117035014,0.99999837014781056687,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22165112177958690,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +137 ,1 ,1.72592087793923498750,-0.2435202456849825114,1000.00000000000000000,0.00000000000000000000,0.00179417075950594564,-0.0002016259117035014,0.99999837014781056687,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22165112177958690,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +138 ,0 ,-0.5760998064593531031,1.67032349258729517771,0.00000000000000000000,1.00000000000000000000,-0.0005523899245112957,0.00165401927701125427,0.99999847954164544638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.993910075778103418,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +138 ,1 ,-0.5760998064593531031,1.67032349258729517771,1000.00000000000000000,0.00000000000000000000,-0.0005523899245112957,0.00165401927701125427,0.99999847954164544638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.993910075778103418,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +139 ,0 ,-0.5122060777761603400,-1.7054535968306800963,0.00000000000000000000,1.00000000000000000000,-0.0005194447268289061,-0.0017594029672487699,0.99999831733777166942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.920444309644494751,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +139 ,1 ,-0.5122060777761603400,-1.7054535968306800963,1000.00000000000000000,0.00000000000000000000,-0.0005194447268289061,-0.0017594029672487699,0.99999831733777166942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.920444309644494751,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +140 ,0 ,-2.2998120460417958987,1.84475737879524737117,0.00000000000000000000,1.00000000000000000000,-0.0022388042909037716,0.00191071509547904232,0.99999566845220433375,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.16772799547175054,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +140 ,1 ,-2.2998120460417958987,1.84475737879524737117,1000.00000000000000000,0.00000000000000000000,-0.0022388042909037716,0.00191071509547904232,0.99999566845220433375,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.16772799547175054,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +141 ,0 ,0.87809365492342905668,-1.0874219316685163061,0.00000000000000000000,1.00000000000000000000,0.00087560637382764680,-0.0010636979090274795,0.99999905092966778763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.691074331518620965,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +141 ,1 ,0.87809365492342905668,-1.0874219316685163061,1000.00000000000000000,0.00000000000000000000,0.00087560637382764680,-0.0010636979090274795,0.99999905092966778763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.691074331518620965,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +142 ,0 ,1.17294337967185335891,-0.4060547722081594423,0.00000000000000000000,1.00000000000000000000,0.00113714893279738007,-0.0003659030960984761,0.99999928650336000757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.02913732793012968,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +142 ,1 ,1.17294337967185335891,-0.4060547722081594423,1000.00000000000000000,0.00000000000000000000,0.00113714893279738007,-0.0003659030960984761,0.99999928650336000757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.02913732793012968,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +143 ,0 ,0.80490734205957281677,-1.8632321568375183051,0.00000000000000000000,1.00000000000000000000,0.00079057540889227741,-0.0018634786037395746,0.99999795121690926436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.537020924138232658,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +143 ,1 ,0.80490734205957281677,-1.8632321568375183051,1000.00000000000000000,0.00000000000000000000,0.00079057540889227741,-0.0018634786037395746,0.99999795121690926436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.537020924138232658,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +144 ,0 ,1.01209888758879862358,0.08382509522847159111,0.00000000000000000000,1.00000000000000000000,0.00100519304958020618,0.00013741150855588654,0.99999948535237281888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.43401861004849706,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +144 ,1 ,1.01209888758879862358,0.08382509522847159111,1000.00000000000000000,0.00000000000000000000,0.00100519304958020618,0.00013741150855588654,0.99999948535237281888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.43401861004849706,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +145 ,0 ,0.87243440763819013472,-0.5105776814637036364,0.00000000000000000000,1.00000000000000000000,0.00086518587207238975,-0.0005480645946984032,0.99999947553916579412,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.705256997936999141,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +145 ,1 ,0.87243440763819013472,-0.5105776814637036364,1000.00000000000000000,0.00000000000000000000,0.00086518587207238975,-0.0005480645946984032,0.99999947553916579412,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.705256997936999141,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +146 ,0 ,-0.5303079211674113224,-0.9505139623341494203,0.00000000000000000000,1.00000000000000000000,-0.0005784653185793286,-0.0009529707974413657,0.99999937861207410794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.835424063477489653,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +146 ,1 ,-0.5303079211674113224,-0.9505139623341494203,1000.00000000000000000,0.00000000000000000000,-0.0005784653185793286,-0.0009529707974413657,0.99999937861207410794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.835424063477489653,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +147 ,0 ,1.09975504878559982024,0.26697717018781080833,0.00000000000000000000,1.00000000000000000000,0.00112839324811603064,0.00028943128983041329,0.99999932147887282685,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.684078868843812415,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +147 ,1 ,1.09975504878559982024,0.26697717018781080833,1000.00000000000000000,0.00000000000000000000,0.00112839324811603064,0.00028943128983041329,0.99999932147887282685,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.684078868843812415,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +148 ,0 ,-1.1075701713126491210,0.97623855959239458357,0.00000000000000000000,1.00000000000000000000,-0.0010504439730581712,0.00103652087768188981,0.99999891109537197841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.753479253986824915,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +148 ,1 ,-1.1075701713126491210,0.97623855959239458357,1000.00000000000000000,0.00000000000000000000,-0.0010504439730581712,0.00103652087768188981,0.99999891109537197841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.753479253986824915,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +149 ,0 ,-0.9590031313109312893,-0.1124766118144637089,0.00000000000000000000,1.00000000000000000000,-0.0009358249929737988,-0.0000582338713146863,0.99999956042010273993,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.956886697174581968,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +149 ,1 ,-0.9590031313109312893,-0.1124766118144637089,1000.00000000000000000,0.00000000000000000000,-0.0009358249929737988,-0.0000582338713146863,0.99999956042010273993,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.956886697174581968,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +150 ,0 ,0.86958353310342051400,0.50516188875780876355,0.00000000000000000000,1.00000000000000000000,0.00099211273074085743,0.00051223305761451034,0.99999937666461791163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.872915206994207437,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +150 ,1 ,0.86958353310342051400,0.50516188875780876355,1000.00000000000000000,0.00000000000000000000,0.00099211273074085743,0.00051223305761451034,0.99999937666461791163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.872915206994207437,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +151 ,0 ,0.72102636353709592675,0.38538567169104409604,0.00000000000000000000,1.00000000000000000000,0.00068912931584655520,0.00042449033566020169,0.99999967245431686801,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.966866443830326716,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +151 ,1 ,0.72102636353709592675,0.38538567169104409604,1000.00000000000000000,0.00000000000000000000,0.00068912931584655520,0.00042449033566020169,0.99999967245431686801,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.966866443830326716,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +152 ,0 ,0.73625883515161882897,-0.4949540857609284194,0.00000000000000000000,1.00000000000000000000,0.00073416782473513303,-0.0004785254966934466,0.99999961600540332451,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25189495632014313,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +152 ,1 ,0.73625883515161882897,-0.4949540857609284194,1000.00000000000000000,0.00000000000000000000,0.00073416782473513303,-0.0004785254966934466,0.99999961600540332451,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25189495632014313,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +153 ,0 ,-0.6263524085509929451,-1.1980117384462851681,0.00000000000000000000,1.00000000000000000000,-0.0006111498823232647,-0.0011690127246862180,0.99999912995215689548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.624104083398606235,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +153 ,1 ,-0.6263524085509929451,-1.1980117384462851681,1000.00000000000000000,0.00000000000000000000,-0.0006111498823232647,-0.0011690127246862180,0.99999912995215689548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.624104083398606235,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +154 ,0 ,-0.7510724184302915995,1.33685438994740724005,0.00000000000000000000,1.00000000000000000000,-0.0006520965043689225,0.00135860532607777494,0.99999886448021368945,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.37364728085310616,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +154 ,1 ,-0.7510724184302915995,1.33685438994740724005,1000.00000000000000000,0.00000000000000000000,-0.0006520965043689225,0.00135860532607777494,0.99999886448021368945,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.37364728085310616,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +155 ,0 ,-0.8941736353637003142,-0.8656612108649162085,0.00000000000000000000,1.00000000000000000000,-0.0007681781898507246,-0.0008081164258645607,0.99999937842486230632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.778368872006012679,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +155 ,1 ,-0.8941736353637003142,-0.8656612108649162085,1000.00000000000000000,0.00000000000000000000,-0.0007681781898507246,-0.0008081164258645607,0.99999937842486230632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.778368872006012679,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +156 ,0 ,1.73592983449858406785,-0.6858358870394097861,0.00000000000000000000,1.00000000000000000000,0.00178640585047315329,-0.0006763397859771539,0.99999817565765158899,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25002574165023361,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +156 ,1 ,1.73592983449858406785,-0.6858358870394097861,1000.00000000000000000,0.00000000000000000000,0.00178640585047315329,-0.0006763397859771539,0.99999817565765158899,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25002574165023361,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +157 ,0 ,-0.2626041840059392673,0.29928702777356902542,0.00000000000000000000,1.00000000000000000000,-0.0002469378147658386,0.00029336826224570796,0.99999992647838642501,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.09922211357786636,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +157 ,1 ,-0.2626041840059392673,0.29928702777356902542,1000.00000000000000000,0.00000000000000000000,-0.0002469378147658386,0.00029336826224570796,0.99999992647838642501,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.09922211357786636,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +158 ,0 ,-0.3167609494714722084,0.06400787546781348813,0.00000000000000000000,1.00000000000000000000,-0.0004238190662400125,0.00003748094959009653,0.99999990948628469933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.994201828187101455,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +158 ,1 ,-0.3167609494714722084,0.06400787546781348813,1000.00000000000000000,0.00000000000000000000,-0.0004238190662400125,0.00003748094959009653,0.99999990948628469933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.994201828187101455,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +159 ,0 ,0.36908190689264908090,-0.1998650961692860772,0.00000000000000000000,1.00000000000000000000,0.00039747276604974192,-0.0002118889387020046,0.99999989855923376858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.934968256595425373,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +159 ,1 ,0.36908190689264908090,-0.1998650961692860772,1000.00000000000000000,0.00000000000000000000,0.00039747276604974192,-0.0002118889387020046,0.99999989855923376858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.934968256595425373,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +160 ,0 ,1.12668363282676353698,-0.8970225128427931071,0.00000000000000000000,1.00000000000000000000,0.00115819362913016556,-0.0009074153397321589,0.99999891759187353734,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.924793962925264168,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +160 ,1 ,1.12668363282676353698,-0.8970225128427931071,1000.00000000000000000,0.00000000000000000000,0.00115819362913016556,-0.0009074153397321589,0.99999891759187353734,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.924793962925264168,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +161 ,0 ,0.22483569004246750644,-0.8964250664117614508,0.00000000000000000000,1.00000000000000000000,0.00018459310523905755,-0.0009047415515184491,0.99999957368396441559,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.574857623563957531,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +161 ,1 ,0.22483569004246750644,-0.8964250664117614508,1000.00000000000000000,0.00000000000000000000,0.00018459310523905755,-0.0009047415515184491,0.99999957368396441559,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.574857623563957531,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +162 ,0 ,-0.1931323151243086733,0.20974211374092835424,0.00000000000000000000,1.00000000000000000000,-0.0001988089006670074,0.00020043168407771737,0.99999996015107972535,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.37537718399676123,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +162 ,1 ,-0.1931323151243086733,0.20974211374092835424,1000.00000000000000000,0.00000000000000000000,-0.0001988089006670074,0.00020043168407771737,0.99999996015107972535,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.37537718399676123,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +163 ,0 ,0.41790482346332769036,0.05513614526546858213,0.00000000000000000000,1.00000000000000000000,0.00040732352448121688,0.00008706625596953004,0.99999991325350301440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10108404947220606,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +163 ,1 ,0.41790482346332769036,0.05513614526546858213,1000.00000000000000000,0.00000000000000000000,0.00040732352448121688,0.00008706625596953004,0.99999991325350301440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10108404947220606,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +164 ,0 ,0.73944978209545086933,1.06189627253040486110,0.00000000000000000000,1.00000000000000000000,0.00072919568824619199,0.00116596892517173054,0.99999905439460978762,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.16744659094854341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +164 ,1 ,0.73944978209545086933,1.06189627253040486110,1000.00000000000000000,0.00000000000000000000,0.00072919568824619199,0.00116596892517173054,0.99999905439460978762,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.16744659094854341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +165 ,0 ,-1.0526156847951111394,-0.7371665148604780171,0.00000000000000000000,1.00000000000000000000,-0.0010759665801535641,-0.0006801597715372904,0.99999918983897351232,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.15385708332269132,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +165 ,1 ,-1.0526156847951111394,-0.7371665148604780171,1000.00000000000000000,0.00000000000000000000,-0.0010759665801535641,-0.0006801597715372904,0.99999918983897351232,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.15385708332269132,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +166 ,0 ,0.70764957455189481105,1.68917335263883572338,0.00000000000000000000,1.00000000000000000000,0.00059748215510562277,0.00164558447850564424,0.99999846753222509931,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.36067599774537484,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +166 ,1 ,0.70764957455189481105,1.68917335263883572338,1000.00000000000000000,0.00000000000000000000,0.00059748215510562277,0.00164558447850564424,0.99999846753222509931,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.36067599774537484,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +167 ,0 ,0.26268498720822108793,0.17351716657381893726,0.00000000000000000000,1.00000000000000000000,0.00017885175482876348,0.00017984984618626666,0.99999996783304079261,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.13763827427555952,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +167 ,1 ,0.26268498720822108793,0.17351716657381893726,1000.00000000000000000,0.00000000000000000000,0.00017885175482876348,0.00017984984618626666,0.99999996783304079261,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.13763827427555952,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +168 ,0 ,-1.7833910721284178535,0.23652686230887556839,0.00000000000000000000,1.00000000000000000000,-0.0018272706020346287,0.00027250318638620649,0.99999829341062396181,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32367118070987999,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +168 ,1 ,-1.7833910721284178535,0.23652686230887556839,1000.00000000000000000,0.00000000000000000000,-0.0018272706020346287,0.00027250318638620649,0.99999829341062396181,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32367118070987999,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +169 ,0 ,-0.3190867513532913979,0.27307757631366497141,0.00000000000000000000,1.00000000000000000000,-0.0003745147221899521,0.00035985293913503972,0.99999986512228344892,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.503260553494442319,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +169 ,1 ,-0.3190867513532913979,0.27307757631366497141,1000.00000000000000000,0.00000000000000000000,-0.0003745147221899521,0.00035985293913503972,0.99999986512228344892,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.503260553494442319,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +170 ,0 ,-1.8658197946872974171,0.24401852596303333364,0.00000000000000000000,1.00000000000000000000,-0.0017445823091439059,0.00027112917851608076,0.99999844145955307794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.29165340176143672,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +170 ,1 ,-1.8658197946872974171,0.24401852596303333364,1000.00000000000000000,0.00000000000000000000,-0.0017445823091439059,0.00027112917851608076,0.99999844145955307794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.29165340176143672,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +171 ,0 ,-0.7212577688069411463,0.83752651953835688392,0.00000000000000000000,1.00000000000000000000,-0.0006375530281022329,0.00091149957211580879,0.99999938134714172477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.02855172478268741,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +171 ,1 ,-0.7212577688069411463,0.83752651953835688392,1000.00000000000000000,0.00000000000000000000,-0.0006375530281022329,0.00091149957211580879,0.99999938134714172477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.02855172478268741,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +172 ,0 ,-1.3624272544388282835,1.22142138540378675237,0.00000000000000000000,1.00000000000000000000,-0.0013520803212153666,0.00127101108527204469,0.99999827820333075933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.977331491938116414,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +172 ,1 ,-1.3624272544388282835,1.22142138540378675237,1000.00000000000000000,0.00000000000000000000,-0.0013520803212153666,0.00127101108527204469,0.99999827820333075933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.977331491938116414,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +173 ,0 ,0.01353739544861685614,-0.4237527656726442493,0.00000000000000000000,1.00000000000000000000,0.00000678829595763770,-0.0004851990063404724,0.99999988226791469703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31818964149999828,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +173 ,1 ,0.01353739544861685614,-0.4237527656726442493,1000.00000000000000000,0.00000000000000000000,0.00000678829595763770,-0.0004851990063404724,0.99999988226791469703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31818964149999828,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +174 ,0 ,2.67371116717622214764,-0.3676033882395243201,0.00000000000000000000,1.00000000000000000000,0.00268683260780566875,-0.0004193537040725902,0.99999630252966864585,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.859697409074328788,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +174 ,1 ,2.67371116717622214764,-0.3676033882395243201,1000.00000000000000000,0.00000000000000000000,0.00268683260780566875,-0.0004193537040725902,0.99999630252966864585,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.859697409074328788,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +175 ,0 ,0.02459844599824614549,2.56731284750729882304,0.00000000000000000000,1.00000000000000000000,-0.0000423874168204936,0.00254578000255407553,0.99999675859848935477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.844316951336168131,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +175 ,1 ,0.02459844599824614549,2.56731284750729882304,1000.00000000000000000,0.00000000000000000000,-0.0000423874168204936,0.00254578000255407553,0.99999675859848935477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.844316951336168131,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +176 ,0 ,-0.5689354848898595662,1.09642598622943454600,0.00000000000000000000,1.00000000000000000000,-0.0006055999232185845,0.00113153236326868291,0.99999917644128277771,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.48111341509763860,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +176 ,1 ,-0.5689354848898595662,1.09642598622943454600,1000.00000000000000000,0.00000000000000000000,-0.0006055999232185845,0.00113153236326868291,0.99999917644128277771,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.48111341509763860,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +177 ,0 ,1.76961319770709568643,-0.7666202034943432330,0.00000000000000000000,1.00000000000000000000,0.00167744068256197339,-0.0007318029083495808,0.99999832532722765510,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.26349233504436142,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +177 ,1 ,1.76961319770709568643,-0.7666202034943432330,1000.00000000000000000,0.00000000000000000000,0.00167744068256197339,-0.0007318029083495808,0.99999832532722765510,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.26349233504436142,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +178 ,0 ,0.52580761212979276741,-1.2686540527361578334,0.00000000000000000000,1.00000000000000000000,0.00056778664841427033,-0.0012768826469575216,0.99999902359403725071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.670756224571050552,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +178 ,1 ,0.52580761212979276741,-1.2686540527361578334,1000.00000000000000000,0.00000000000000000000,0.00056778664841427033,-0.0012768826469575216,0.99999902359403725071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.670756224571050552,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +179 ,0 ,-0.2923529042405514921,1.94438582133221005143,0.00000000000000000000,1.00000000000000000000,-0.0001961528976255865,0.00197325755463025661,0.99999803388739905152,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.605629515649525274,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +179 ,1 ,-0.2923529042405514921,1.94438582133221005143,1000.00000000000000000,0.00000000000000000000,-0.0001961528976255865,0.00197325755463025661,0.99999803388739905152,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.605629515649525274,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +180 ,0 ,-0.3086215062055968072,0.72476563901371571230,0.00000000000000000000,1.00000000000000000000,-0.0003751187601797995,0.00064729839471593022,0.99999972014531290920,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31884450879590531,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +180 ,1 ,-0.3086215062055968072,0.72476563901371571230,1000.00000000000000000,0.00000000000000000000,-0.0003751187601797995,0.00064729839471593022,0.99999972014531290920,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31884450879590531,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +181 ,0 ,-0.8814667034052865446,-0.7648785614257626042,0.00000000000000000000,1.00000000000000000000,-0.0009075395184941109,-0.0007467742297933565,0.99999930934989755826,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.15887340612960088,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +181 ,1 ,-0.8814667034052865446,-0.7648785614257626042,1000.00000000000000000,0.00000000000000000000,-0.0009075395184941109,-0.0007467742297933565,0.99999930934989755826,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.15887340612960088,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +182 ,0 ,-0.6439925250011047097,-0.1678659957010294467,0.00000000000000000000,1.00000000000000000000,-0.0007092832525992439,-0.0001993934485842573,0.99999972857972330153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.876122480299954986,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +182 ,1 ,-0.6439925250011047097,-0.1678659957010294467,1000.00000000000000000,0.00000000000000000000,-0.0007092832525992439,-0.0001993934485842573,0.99999972857972330153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.876122480299954986,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +183 ,0 ,1.54655297447042761049,-0.1245570105420309159,0.00000000000000000000,1.00000000000000000000,0.00149341283062951434,-0.0001365273799193438,0.99999887553856381394,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.552670654085886781,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +183 ,1 ,1.54655297447042761049,-0.1245570105420309159,1000.00000000000000000,0.00000000000000000000,0.00149341283062951434,-0.0001365273799193438,0.99999887553856381394,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.552670654085886781,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +184 ,0 ,-1.3329193804921237731,-0.2286652937479626834,0.00000000000000000000,1.00000000000000000000,-0.0013018178875449034,-0.0002765251364048309,0.99999911440162614351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.606333023123511338,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +184 ,1 ,-1.3329193804921237731,-0.2286652937479626834,1000.00000000000000000,0.00000000000000000000,-0.0013018178875449034,-0.0002765251364048309,0.99999911440162614351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.606333023123511338,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +185 ,0 ,0.15000362360782232284,0.77853052941398059871,0.00000000000000000000,1.00000000000000000000,0.00032855782265182767,0.00078194856397054233,0.99999964030303556405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.958725470908234456,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +185 ,1 ,0.15000362360782232284,0.77853052941398059871,1000.00000000000000000,0.00000000000000000000,0.00032855782265182767,0.00078194856397054233,0.99999964030303556405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.958725470908234456,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +186 ,0 ,-0.7563893916945209072,-0.9405955851449694371,0.00000000000000000000,1.00000000000000000000,-0.0006776593335579426,-0.0009198627224375874,0.99999934731498674178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.516250188631374840,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +186 ,1 ,-0.7563893916945209072,-0.9405955851449694371,1000.00000000000000000,0.00000000000000000000,-0.0006776593335579426,-0.0009198627224375874,0.99999934731498674178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.516250188631374840,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +187 ,0 ,-1.0917483323401608874,-0.7719766219255630446,0.00000000000000000000,1.00000000000000000000,-0.0010494489394910616,-0.0008221179929434755,0.99999911138906971697,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.586589436784038298,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +187 ,1 ,-1.0917483323401608874,-0.7719766219255630446,1000.00000000000000000,0.00000000000000000000,-0.0010494489394910616,-0.0008221179929434755,0.99999911138906971697,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.586589436784038298,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +188 ,0 ,1.48797525363940508214,0.07771899093101182487,0.00000000000000000000,1.00000000000000000000,0.00139277864426614900,0.00011371991506157912,0.99999902361723780330,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.849555845486065663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +188 ,1 ,1.48797525363940508214,0.07771899093101182487,1000.00000000000000000,0.00000000000000000000,0.00139277864426614900,0.00011371991506157912,0.99999902361723780330,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.849555845486065663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +189 ,0 ,0.11976349854686918483,0.05112685162775231634,0.00000000000000000000,1.00000000000000000000,-0.0000046598493032417,0.00005800022031752912,0.99999999830713015569,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.599983046532656771,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +189 ,1 ,0.11976349854686918483,0.05112685162775231634,1000.00000000000000000,0.00000000000000000000,-0.0000046598493032417,0.00005800022031752912,0.99999999830713015569,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.599983046532656771,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +190 ,0 ,-1.1327254351856947955,-0.2585808753439884921,0.00000000000000000000,1.00000000000000000000,-0.0010883746343630003,-0.0002224026824093203,0.99999938298866075658,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32524593622986230,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +190 ,1 ,-1.1327254351856947955,-0.2585808753439884921,1000.00000000000000000,0.00000000000000000000,-0.0010883746343630003,-0.0002224026824093203,0.99999938298866075658,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32524593622986230,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +191 ,0 ,0.32431671587864413508,-1.8718525438505440039,0.00000000000000000000,1.00000000000000000000,0.00031237875729571358,-0.0018305909119021180,0.99999827567672594508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.45475913605855566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +191 ,1 ,0.32431671587864413508,-1.8718525438505440039,1000.00000000000000000,0.00000000000000000000,0.00031237875729571358,-0.0018305909119021180,0.99999827567672594508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.45475913605855566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +192 ,0 ,-1.3331937119878281006,-0.7095084348704514543,0.00000000000000000000,1.00000000000000000000,-0.0014551620659826831,-0.0007146138818031683,0.99999868591431750886,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25596530699226605,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +192 ,1 ,-1.3331937119878281006,-0.7095084348704514543,1000.00000000000000000,0.00000000000000000000,-0.0014551620659826831,-0.0007146138818031683,0.99999868591431750886,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25596530699226605,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +193 ,0 ,-0.8899978158793553362,-1.0186073360776866092,0.00000000000000000000,1.00000000000000000000,-0.0009703997640205161,-0.0010126209311497776,0.99999901646109012887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.20386202687438981,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +193 ,1 ,-0.8899978158793553362,-1.0186073360776866092,1000.00000000000000000,0.00000000000000000000,-0.0009703997640205161,-0.0010126209311497776,0.99999901646109012887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.20386202687438981,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +194 ,0 ,-2.4944757955006613414,0.22830832438270431961,0.00000000000000000000,1.00000000000000000000,-0.0025514864183554890,0.00021880240996159563,0.99999672101590530992,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.770706137536080859,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +194 ,1 ,-2.4944757955006613414,0.22830832438270431961,1000.00000000000000000,0.00000000000000000000,-0.0025514864183554890,0.00021880240996159563,0.99999672101590530992,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.770706137536080859,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +195 ,0 ,0.62889122764706373303,-1.1154250979477629002,0.00000000000000000000,1.00000000000000000000,0.00057279140119570969,-0.0011370816524773541,0.99999918947733468232,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.44938507738379485,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +195 ,1 ,0.62889122764706373303,-1.1154250979477629002,1000.00000000000000000,0.00000000000000000000,0.00057279140119570969,-0.0011370816524773541,0.99999918947733468232,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.44938507738379485,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +196 ,0 ,-0.7489040295563595961,1.32717851469182979151,0.00000000000000000000,1.00000000000000000000,-0.0006798817059735764,0.00135512108206687644,0.99999885070319882718,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.39455149500838615,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +196 ,1 ,-0.7489040295563595961,1.32717851469182979151,1000.00000000000000000,0.00000000000000000000,-0.0006798817059735764,0.00135512108206687644,0.99999885070319882718,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.39455149500838615,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +197 ,0 ,0.53632557043256889883,-1.5151579779707222694,0.00000000000000000000,1.00000000000000000000,0.00055781382481424077,-0.0014868773894378586,0.99999873901888780558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.06643372750829712,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +197 ,1 ,0.53632557043256889883,-1.5151579779707222694,1000.00000000000000000,0.00000000000000000000,0.00055781382481424077,-0.0014868773894378586,0.99999873901888780558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.06643372750829712,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +198 ,0 ,-0.5202647065843338802,-0.7856201136795475381,0.00000000000000000000,1.00000000000000000000,-0.0005636253851618358,-0.0008188746940756027,0.99999950588520825078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22834908361619454,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +198 ,1 ,-0.5202647065843338802,-0.7856201136795475381,1000.00000000000000000,0.00000000000000000000,-0.0005636253851618358,-0.0008188746940756027,0.99999950588520825078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22834908361619454,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +199 ,0 ,-1.2096803958756046082,0.13276527669827406508,0.00000000000000000000,1.00000000000000000000,-0.0012594018072288333,0.00011657322022616087,0.99999920015856635924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.36398150097727466,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 +199 ,1 ,-1.2096803958756046082,0.13276527669827406508,1000.00000000000000000,0.00000000000000000000,-0.0012594018072288333,0.00011657322022616087,0.99999920015856635924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.36398150097727466,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateAzim200.rayui.csv b/Intern/RayCore/tests/output/ReflectionZonePlateAzim200.rayui.csv new file mode 100644 index 000000000..a9ca42020 --- /dev/null +++ b/Intern/RayCore/tests/output/ReflectionZonePlateAzim200.rayui.csv @@ -0,0 +1,15 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-8.9599739734591192785,1.67771261492637990819,0.00000000000000000000,-1.0000000000000000000,-0.0118803690051839001,0.00342799379183963016,0.99992354992312504347,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06925866044866779702,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-12.707840597712799279,-5.0703658170219103595,0.00000000000000000000,-1.0000000000000000000,-0.0166979216646072001,-0.0043076242986307298,0.99985130083677198342,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.13576744601857598793,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,15.1969586268777003823,-2.2594488076645498075,0.00000000000000000000,-1.0000000000000000000,0.01914019386066699926,-0.0002579998403834959,0.99981677642208999223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.16671164143724601092,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,10.1099302239370008038,2.78723745986969984045,0.00000000000000000000,-1.0000000000000000000,0.01261664227877950031,0.00496456415300861996,0.99990808249577600719,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.08438340017892190236,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,5.18794859621119996972,5.12884931083820028163,0.00000000000000000000,-1.0000000000000000000,0.00638257850664135026,0.00716893638899606007,0.99995393346026595349,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.04265636190609709693,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,0.25166980579117098626,5.49535823099255971158,0.00000000000000000000,-1.0000000000000000000,0.00023865038706325601,0.00721495441984985018,0.99997394339988299183,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02432945090492920001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,-4.7223706356930401639,3.68422490456313989071,0.00000000000000000000,-1.0000000000000000000,-0.0058421785719250003,0.00494063492160288966,0.99997072910966000591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02754993411633679945,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,-9.6035146720404895859,-1.4449857992817600749,0.00000000000000000000,-1.0000000000000000000,-0.0117230804334901000,-0.0008014553671677600,0.99993096114404000918,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06547859907811930113,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,15.8335388551438995818,-6.8796493359152002255,0.00000000000000000000,-1.0000000000000000000,0.01827492356920720067,-0.0061028375469746902,0.99981437404270900870,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.17823470122164100648,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,8.81512369891106040142,1.22398514405746006161,0.00000000000000000000,-1.0000000000000000000,0.01011464537746139917,0.00205185301076854986,0.99994674050576803914,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.05156413784197869804,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,2.22214327007654999235,3.24207058182740004426,0.00000000000000000000,-1.0000000000000000000,0.00251978213580882981,0.00383353321889997981,0.99998947730515996834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.01026899582916489944,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,-4.3741676737565695631,0.84197729580890301459,0.00000000000000000000,-1.0000000000000000000,-0.0049579926831593403,0.00108932904638898010,0.99998711575238896642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.01266997130528580046,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-10.302892349891099144,-10.752116048837899953,0.00000000000000000000,-1.0000000000000000000,-0.0116422156069831000,-0.0108977462030554004,0.99987284088700700834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.12596867829938698801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,7.35820292099250039541,-7.6626238402778197311,0.00000000000000000000,-1.0000000000000000000,0.00771486257576458039,-0.0077518752715507602,0.99994019287415902841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06088592635808250108,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateAzim200.rayx.csv b/Intern/RayCore/tests/output/ReflectionZonePlateAzim200.rayx.csv new file mode 100644 index 000000000..9debd568e --- /dev/null +++ b/Intern/RayCore/tests/output/ReflectionZonePlateAzim200.rayx.csv @@ -0,0 +1,15 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-8.9599739734605137186,1.67771261493484491467,0.00000000000000000000,1.00000000000000000000,-0.0118803690051855013,0.00342799379184913948,0.99992354992312482142,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0692586604491225,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-12.707840597712770858,-5.0703658170216776568,0.00000000000000000000,1.00000000000000000000,-0.0166979216646072417,-0.0043076242986304106,0.99985130083677176138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1357674460159614,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,15.1969586268775262993,-2.2594488076637673223,0.00000000000000000000,1.00000000000000000000,0.01914019386066685354,-0.0002579998403825820,0.99981677642208954814,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1667116414373595,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,10.1099302239380328671,2.78723745986376325589,0.00000000000000000000,1.00000000000000000000,0.01261664227878065043,0.00496456415300216852,0.99990808249577634025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0843834001789218,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,5.18794859621193005239,5.12884931083400896767,0.00000000000000000000,1.00000000000000000000,0.00638257850664214736,0.00716893638899159576,0.99995393346026562042,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0426563619039370,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,0.25166980579060010958,5.49535823099566833604,0.00000000000000000000,1.00000000000000000000,0.00023865038706264078,0.00721495441985327886,0.99997394339988299183,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0243294509036786,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,-4.7223706356938386363,3.68422490456765761024,0.00000000000000000000,1.00000000000000000000,-0.0058421785719258590,0.00494063492160775469,0.99997072910966011694,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0275499341150862,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,-9.6035146720433797185,-1.4449857992653591942,0.00000000000000000000,1.00000000000000000000,-0.0117230804334931913,-0.0008014553671504243,0.99993096114404045327,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0654785990791424,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,15.8335388551413274171,-6.8796493359010604251,0.00000000000000000000,1.00000000000000000000,0.01827492356920461594,-0.0061028375469599060,0.99981437404270967483,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1782347012194804,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,8.81512369891018110479,1.22398514406204284021,0.00000000000000000000,1.00000000000000000000,0.01011464537746048497,0.00205185301077335331,0.99994674050576848323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0515641378406144,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,2.22214327007824330451,3.24207058181801421881,0.00000000000000000000,1.00000000000000000000,0.00251978213581058232,0.00383353321889031610,0.99998947730516041243,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0102689958257542,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,-4.3741676737563066623,0.84197729580774882673,0.00000000000000000000,1.00000000000000000000,-0.0049579926831590966,0.00108932904638789807,0.99998711575238941051,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0126699713055131,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,-10.302892349891331846,-10.752116048835061334,0.00000000000000000000,1.00000000000000000000,-0.0116422156069833880,-0.0108977462030524687,0.99987284088700734141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1259686782977951,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,7.35820292099287165399,-7.6626238402800517235,0.00000000000000000000,1.00000000000000000000,0.00771486257576496550,-0.0077518752715529165,0.99994019287415958352,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0608859263556951,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateDefault.rayui.csv b/Intern/RayCore/tests/output/ReflectionZonePlateDefault.rayui.csv new file mode 100644 index 000000000..ebf8856c8 --- /dev/null +++ b/Intern/RayCore/tests/output/ReflectionZonePlateDefault.rayui.csv @@ -0,0 +1,3 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,9.75569707296813959374,2.11970938699472988275,0.00000000000000000000,-1.0000000000000000000,0.01266417136081150057,0.00419850753241713010,0.99991099168788200035,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.08074950591174000213,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-9.7556970729681395937,2.11970938699472988275,0.00000000000000000000,-1.0000000000000000000,-0.0126641713608115005,0.00419850753241713010,0.99991099168788200035,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.08074950591174000213,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateDefault.rayx.csv b/Intern/RayCore/tests/output/ReflectionZonePlateDefault.rayx.csv new file mode 100644 index 000000000..a44bf9e31 --- /dev/null +++ b/Intern/RayCore/tests/output/ReflectionZonePlateDefault.rayx.csv @@ -0,0 +1,3 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,9.75569707296806498675,2.11970938699392918991,0.00000000000000000000,1.00000000000000000000,0.01266417136081148149,0.00419850753241636336,0.99991099168788244444,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0807495059107168,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-9.7556970729680578813,2.11970938699392918991,0.00000000000000000000,1.00000000000000000000,-0.0126641713608114728,0.00419850753241636336,0.99991099168788244444,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0807495059107168,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateDefault200.rayui.csv b/Intern/RayCore/tests/output/ReflectionZonePlateDefault200.rayui.csv new file mode 100644 index 000000000..c3f64de8e --- /dev/null +++ b/Intern/RayCore/tests/output/ReflectionZonePlateDefault200.rayui.csv @@ -0,0 +1,13 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,13.0080819586263007892,-3.5503919801268302158,0.00000000000000000000,-1.0000000000000000000,0.01601593322748499914,-0.0025630730077266699,0.99986845161731596753,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.12309898994396900606,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,7.80445985461448987763,2.59017501256695981126,0.00000000000000000000,-1.0000000000000000000,0.00960988610078064922,0.00401280898007983985,0.99994577225628600292,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.05077042844129660281,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,2.60145640654500986954,5.04038185693976004131,0.00000000000000000000,-1.0000000000000000000,0.00320334973277054983,0.00663697382099598040,0.99997284419577603387,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02543112852811189872,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,-2.6014564065450098695,5.04038185693976004131,0.00000000000000000000,-1.0000000000000000000,-0.0032033497327705498,0.00663697382099598040,0.99997284419577603387,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02543112852811189872,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-7.8044598546144898776,2.59017501256695981126,0.00000000000000000000,-1.0000000000000000000,-0.0096098861007806492,0.00401280898007983985,0.99994577225628600292,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.05077042844129660281,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-13.008081958626300789,-3.5503919801268302158,0.00000000000000000000,-1.0000000000000000000,-0.0160159332274849991,-0.0025630730077266699,0.99986845161731596753,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.12309898994396900606,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,10.4355735762951002953,-3.4096204136531600425,0.00000000000000000000,-1.0000000000000000000,0.01185943375028319923,-0.0030935118344583702,0.99992488918700894728,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.07353840126222620232,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,3.47840647835211003169,2.27303879243129003384,0.00000000000000000000,-1.0000000000000000000,0.00395327534486990001,0.00271668438306806991,0.99998849555382895992,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.01126636159415280065,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-3.4784064783521100316,2.27303879243129003384,0.00000000000000000000,-1.0000000000000000000,-0.0039532753448699000,0.00271668438306806991,0.99998849555382895992,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.01126636159415280065,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-10.435573576295100295,-3.4096204136531600425,0.00000000000000000000,-1.0000000000000000000,-0.0118594337502831992,-0.0030935118344583702,0.99992488918700894728,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.07353840126222620232,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,5.38521177718623000885,-11.823373455207999427,0.00000000000000000000,-1.0000000000000000000,0.00564731516336466031,-0.0119430123866902000,0.99991273233546595911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.08920121381493119339,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,-5.3852117771862300088,-11.823373455207999427,0.00000000000000000000,-1.0000000000000000000,-0.0056473151633646603,-0.0119430123866902000,0.99991273233546595911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.08920121381493119339,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateDefault200.rayx.csv b/Intern/RayCore/tests/output/ReflectionZonePlateDefault200.rayx.csv new file mode 100644 index 000000000..3f58d509c --- /dev/null +++ b/Intern/RayCore/tests/output/ReflectionZonePlateDefault200.rayx.csv @@ -0,0 +1,13 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,13.0080819586261267062,-3.5503919801114514065,0.00000000000000000000,1.00000000000000000000,0.01601593322748488118,-0.0025630730077101241,0.99986845161731663367,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1230989899377163,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,7.80445985461447211406,2.59017501257744298115,0.00000000000000000000,1.00000000000000000000,0.00960988610078065789,0.00401280898009115979,0.99994577225628578087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0507704284391365,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,2.60145640654496901333,5.04038185694019524873,0.00000000000000000000,1.00000000000000000000,0.00320334973277052554,0.00663697382099662138,0.99997284419577570080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0254311285279982,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,-2.6014564065449650165,5.04038185694019524873,0.00000000000000000000,1.00000000000000000000,-0.0032033497327705212,0.00663697382099662138,0.99997284419577570080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0254311285279982,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-7.8044598546144667849,2.59017501257744298115,0.00000000000000000000,1.00000000000000000000,-0.0096098861007806526,0.00401280898009115979,0.99994577225628578087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0507704284391365,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-13.008081958626124929,-3.5503919801114451892,0.00000000000000000000,1.00000000000000000000,-0.0160159332274848811,-0.0025630730077101171,0.99986845161731663367,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1230989899377163,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,10.4355735762951109535,-3.4096204136546734986,0.00000000000000000000,1.00000000000000000000,0.01185943375028315413,-0.0030935118344598637,0.99992488918700939137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0735384012587019,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,3.47840647835212601890,2.27303879243029971490,0.00000000000000000000,1.00000000000000000000,0.00395327534486992430,0.00271668438306714270,0.99998849555382929299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0112663615909696,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-3.4784064783521220221,2.27303879243029971490,0.00000000000000000000,1.00000000000000000000,-0.0039532753448699199,0.00271668438306714270,0.99998849555382929299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0112663615909696,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,-10.435573576295105624,-3.4096204136546734986,0.00000000000000000000,1.00000000000000000000,-0.0118594337502831489,-0.0030935118344598637,0.99992488918700939137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0735384012587019,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,5.38521177718620247532,-11.823373455206832360,0.00000000000000000000,1.00000000000000000000,0.00564731516336463863,-0.0119430123866890378,0.99991273233546595911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0892012138119753,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,-5.3852117771862006989,-11.823373455206832360,0.00000000000000000000,1.00000000000000000000,-0.0056473151633646368,-0.0119430123866890378,0.99991273233546595911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0892012138119753,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv b/Intern/RayCore/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv new file mode 100644 index 000000000..95842d2ce --- /dev/null +++ b/Intern/RayCore/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv @@ -0,0 +1,111 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,340.062081529643990052,641.905974507241012361,0.00000000000000000000,-1.0000000000000000000,0.28136383983097801309,0.52292271489269703810,0.80460314682756395310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,238.690210924663006153,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,301.010109141200985050,700.585894649469992145,0.00000000000000000000,-1.0000000000000000000,0.24467644943960800696,0.56120044852155803738,0.79068798629347403217,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,260.203724153947007380,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,255.633568603312994582,751.212145862446050159,0.00000000000000000000,-1.0000000000000000000,0.20462015552100198956,0.59297738222383600259,0.77878650227487100643,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,279.206367310794973946,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,204.816435082061985895,792.939516606975985268,0.00000000000000000000,-1.0000000000000000000,0.16187235004146299788,0.61832696888045601824,0.76907028407497401989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,295.150935751003999030,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,149.582742046203009067,824.997982701635010016,0.00000000000000000000,-1.0000000000000000000,0.11706873047590900249,0.63730010065545195097,0.76167151321899195792,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,307.562396391503000359,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,91.0866379008823940921,846.751390671625017603,0.00000000000000000000,-1.0000000000000000000,0.07081579668367379842,0.64993117278117096269,0.75668658874553096360,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,316.060070888085022033,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,30.5874090036708992101,857.746109070220995818,0.00000000000000000000,-1.0000000000000000000,0.02370066317814059977,0.65624157111315994939,0.75417854577536702631,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,320.377523719652003819,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,-30.587409003670899210,857.746109070220995818,0.00000000000000000000,-1.0000000000000000000,-0.0237006631781405997,0.65624157111315994939,0.75417854577536702631,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,320.377523719652003819,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-91.086637900882394092,846.751390671625017603,0.00000000000000000000,-1.0000000000000000000,-0.0708157966836737984,0.64993117278117096269,0.75668658874553096360,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,316.060070888085022033,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-149.58274204620300906,824.997982701635010016,0.00000000000000000000,-1.0000000000000000000,-0.1170687304759090024,0.63730010065545195097,0.76167151321899195792,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,307.562396391503000359,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,-204.81643508206198589,792.939516606975985268,0.00000000000000000000,-1.0000000000000000000,-0.1618723500414629978,0.61832696888045601824,0.76907028407497401989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,295.150935751003999030,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,-255.63356860331299458,751.212145862446050159,0.00000000000000000000,-1.0000000000000000000,-0.2046201555210019895,0.59297738222383600259,0.77878650227487100643,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,279.206367310794973946,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-301.01010914120098505,700.585894649469992145,0.00000000000000000000,-1.0000000000000000000,-0.2446764494396080069,0.56120044852155803738,0.79068798629347403217,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,260.203724153947007380,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-340.06208152964399005,641.905974507241012361,0.00000000000000000000,-1.0000000000000000000,-0.2813638398309780130,0.52292271489269703810,0.80460314682756395310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,238.690210924663006153,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,299.305310576971976388,530.445561181835046227,0.00000000000000000000,-1.0000000000000000000,0.26185916625822902581,0.45613950692848598267,0.85050956917931397338,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,172.948815639711000358,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,265.051233508937002625,584.263004966324047018,0.00000000000000000000,-1.0000000000000000000,0.22842377262557600481,0.49541588047279000450,0.83808453360915202701,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,190.129529273482006601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,225.114174166443007152,630.370426716134943490,0.00000000000000000000,-1.0000000000000000000,0.19148099704098200946,0.52796830824703200324,0.82739621298321097686,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,205.314469226912990507,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,180.344677332318013895,668.160025808909949773,0.00000000000000000000,-1.0000000000000000000,0.15174596149996399940,0.55390638728382701749,0.81863354273730504218,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,218.054693406210986950,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,131.687152325104989358,697.067453851801019482,0.00000000000000000000,-1.0000000000000000000,0.10988329038682199956,0.57330438313001497174,0.81194072861119503947,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,227.967969440307996364,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,80.1763473601431968518,716.622228908277975278,0.00000000000000000000,-1.0000000000000000000,0.06652305805536469496,0.58621151410564698025,0.80742228324274500916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,234.752216930981006726,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +20 ,0 ,26.9211410184916992704,726.487428602462955495,0.00000000000000000000,-1.0000000000000000000,0.02227278564359510062,0.59265791234922404751,0.80514627363574997609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,238.197987341561002949,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +21 ,0 ,-26.921141018491699270,726.487428602462955495,0.00000000000000000000,-1.0000000000000000000,-0.0222727856435951006,0.59265791234922404751,0.80514627363574997609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,238.197987341561002949,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +22 ,0 ,-80.176347360143196851,716.622228908277975278,0.00000000000000000000,-1.0000000000000000000,-0.0665230580553646949,0.58621151410564698025,0.80742228324274500916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,234.752216930981006726,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +23 ,0 ,-131.68715232510498935,697.067453851801019482,0.00000000000000000000,-1.0000000000000000000,-0.1098832903868219995,0.57330438313001497174,0.81194072861119503947,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,227.967969440307996364,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +24 ,0 ,-180.34467733231801389,668.160025808909949773,0.00000000000000000000,-1.0000000000000000000,-0.1517459614999639994,0.55390638728382701749,0.81863354273730504218,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,218.054693406210986950,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +25 ,0 ,-225.11417416644300715,630.370426716134943490,0.00000000000000000000,-1.0000000000000000000,-0.1914809970409820094,0.52796830824703200324,0.82739621298321097686,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,205.314469226912990507,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +26 ,0 ,-265.05123350893700262,584.263004966324047018,0.00000000000000000000,-1.0000000000000000000,-0.2284237726255760048,0.49541588047279000450,0.83808453360915202701,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,190.129529273482006601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +27 ,0 ,-299.30531057697197638,530.445561181835046227,0.00000000000000000000,-1.0000000000000000000,-0.2618591662582290258,0.45613950692848598267,0.85050956917931397338,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,172.948815639711000358,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +28 ,0 ,261.488571438839983329,421.017155857004013341,0.00000000000000000000,-1.0000000000000000000,0.24043204854906599643,0.37967684517475297489,0.89332968341404994649,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,117.616618181703003642,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +29 ,0 ,231.980604126351011018,471.422090622955010985,0.00000000000000000000,-1.0000000000000000000,0.21063866064935199418,0.42034572408663301024,0.88257624423158598236,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,131.093559521745987694,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +30 ,0 ,197.243708224097986203,514.259479652023969720,0.00000000000000000000,-1.0000000000000000000,0.17714328835382900373,0.45395538021186099264,0.87323809363076698719,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,143.059091611403005117,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +31 ,0 ,158.120300114683004721,549.155516341344991815,0.00000000000000000000,-1.0000000000000000000,0.14071834423612999964,0.48068606227924398632,0.86552831099041305229,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,153.128128859838994912,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +32 ,0 ,115.501327437667995923,575.724981691031985064,0.00000000000000000000,-1.0000000000000000000,0.10206936871307199787,0.50064980637304801192,0.85961131643850796635,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,160.975614800932987691,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +33 ,0 ,70.3350613567096019096,593.639406186420046651,0.00000000000000000000,-1.0000000000000000000,0.06185898161873319700,0.51392160161689004471,0.85560391173990302249,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,166.350868522526013748,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +34 ,0 ,23.6185426387862982267,602.659502305665000676,0.00000000000000000000,-1.0000000000000000000,0.02072205433419689948,0.52054679561784300556,0.85358164813693504502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,169.082174834446988143,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +35 ,0 ,-23.618542638786298226,602.659502305665000676,0.00000000000000000000,-1.0000000000000000000,-0.0207220543341968994,0.52054679561784300556,0.85358164813693504502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,169.082174834446988143,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +36 ,0 ,-70.335061356709601909,593.639406186420046651,0.00000000000000000000,-1.0000000000000000000,-0.0618589816187331970,0.51392160161689004471,0.85560391173990302249,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,166.350868522526013748,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +37 ,0 ,-115.50132743766799592,575.724981691031985064,0.00000000000000000000,-1.0000000000000000000,-0.1020693687130719978,0.50064980637304801192,0.85961131643850796635,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,160.975614800932987691,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +38 ,0 ,-158.12030011468300472,549.155516341344991815,0.00000000000000000000,-1.0000000000000000000,-0.1407183442361299996,0.48068606227924398632,0.86552831099041305229,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,153.128128859838994912,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +39 ,0 ,-197.24370822409798620,514.259479652023969720,0.00000000000000000000,-1.0000000000000000000,-0.1771432883538290037,0.45395538021186099264,0.87323809363076698719,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,143.059091611403005117,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +40 ,0 ,-231.98060412635101101,471.422090622955010985,0.00000000000000000000,-1.0000000000000000000,-0.2106386606493519941,0.42034572408663301024,0.88257624423158598236,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,131.093559521745987694,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +41 ,0 ,-261.48857143883998332,421.017155857004013341,0.00000000000000000000,-1.0000000000000000000,-0.2404320485490659964,0.37967684517475297489,0.89332968341404994649,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,117.616618181703003642,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +42 ,0 ,225.467321965357001545,309.840185742436005966,0.00000000000000000000,-1.0000000000000000000,0.21648363175465298868,0.29095316789562397641,0.93192332907477803960,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,72.0060259197801002528,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +43 ,0 ,200.815353385434008259,358.396733024937987011,0.00000000000000000000,-1.0000000000000000000,0.19088155417259300428,0.33370827050230500443,0.92314842927614604306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,82.1175399782136992143,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +44 ,0 ,171.197535118959990541,399.249576374846014914,0.00000000000000000000,-1.0000000000000000000,0.16128651345771899405,0.36887519992600997786,0.91537847224861002004,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,91.2258827734977018053,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +45 ,0 ,137.481247692358010681,432.271622774958018453,0.00000000000000000000,-1.0000000000000000000,0.12856055770323898679,0.39674791892309402285,0.90888022964152204163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,98.9585139328158049920,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +46 ,0 ,100.538650145980000161,457.273248593435994280,0.00000000000000000000,-1.0000000000000000000,0.09347321292365179390,0.41751651156080099580,0.90384883749431699229,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,105.019403809240003511,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +47 ,0 ,61.2645669154697003477,474.065556853169994155,0.00000000000000000000,-1.0000000000000000000,0.05673494510757300102,0.43130254915332399967,0.90042171069865095667,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,109.185310092408002446,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +48 ,0 ,20.5790932319645989423,482.501538610824979969,0.00000000000000000000,-1.0000000000000000000,0.01901950756339669881,0.43817857889492101142,0.89868670365688196888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,111.306072698879006566,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +49 ,0 ,-20.579093231964598942,482.501538610824979969,0.00000000000000000000,-1.0000000000000000000,-0.0190195075633966988,0.43817857889492101142,0.89868670365688196888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,111.306072698879006566,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +50 ,0 ,-61.264566915469700347,474.065556853169994155,0.00000000000000000000,-1.0000000000000000000,-0.0567349451075730010,0.43130254915332399967,0.90042171069865095667,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,109.185310092408002446,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +51 ,0 ,-100.53865014598000016,457.273248593435994280,0.00000000000000000000,-1.0000000000000000000,-0.0934732129236517939,0.41751651156080099580,0.90384883749431699229,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,105.019403809240003511,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +52 ,0 ,-137.48124769235801068,432.271622774958018453,0.00000000000000000000,-1.0000000000000000000,-0.1285605577032389867,0.39674791892309402285,0.90888022964152204163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,98.9585139328158049920,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +53 ,0 ,-171.19753511895999054,399.249576374846014914,0.00000000000000000000,-1.0000000000000000000,-0.1612865134577189940,0.36887519992600997786,0.91537847224861002004,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,91.2258827734977018053,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +54 ,0 ,-200.81535338543400825,358.396733024937987011,0.00000000000000000000,-1.0000000000000000000,-0.1908815541725930042,0.33370827050230500443,0.92314842927614604306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,82.1175399782136992143,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +55 ,0 ,-225.46732196535700154,309.840185742436005966,0.00000000000000000000,-1.0000000000000000000,-0.2164836317546529886,0.29095316789562397641,0.93192332907477803960,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,72.0060259197801002528,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +56 ,0 ,189.829501918221012601,191.314931797112990352,0.00000000000000000000,-1.0000000000000000000,0.18893666105558198919,0.18543104330935600287,0.96432269821174099178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,36.4485672634318973450,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +57 ,0 ,170.442777546207992145,240.197805611137994219,0.00000000000000000000,-1.0000000000000000000,0.16839252441664701032,0.23165282096157899238,0.95811321265345894548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,43.1438669143423965124,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +58 ,0 ,146.092845294433004710,280.685167757046997394,0.00000000000000000000,-1.0000000000000000000,0.14336796993660799737,0.26931583399851799498,0.95232064282674200317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,49.4603382310568022717,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +59 ,0 ,117.749215929932006474,313.048107608268026069,0.00000000000000000000,-1.0000000000000000000,0.11489190094252800522,0.29897904297463301359,0.94731799463526800142,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,54.9726421940576983615,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +60 ,0 ,86.3153801579562980350,337.358209748146975925,0.00000000000000000000,-1.0000000000000000000,0.08384223931010009733,0.32098816972805899183,0.94336476179794803709,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,59.3671679863153016754,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +61 ,0 ,52.6739581813190014258,353.600155890305984485,0.00000000000000000000,-1.0000000000000000000,0.05100644694201399848,0.33555780575311600077,0.94063770994390094593,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,62.4188572657230977824,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +62 ,0 ,17.7056218900038011554,361.734897698170016155,0.00000000000000000000,-1.0000000000000000000,0.01711809069229930022,0.34281353760219701598,0.93924749103083404744,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,63.9810053745749982567,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +63 ,0 ,-17.705621890003801155,361.734897698170016155,0.00000000000000000000,-1.0000000000000000000,-0.0171180906922993002,0.34281353760219701598,0.93924749103083404744,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,63.9810053745749982567,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +64 ,0 ,-52.673958181319001425,353.600155890305984485,0.00000000000000000000,-1.0000000000000000000,-0.0510064469420139984,0.33555780575311600077,0.94063770994390094593,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,62.4188572657230977824,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +65 ,0 ,-86.315380157956298035,337.358209748146975925,0.00000000000000000000,-1.0000000000000000000,-0.0838422393101000973,0.32098816972805899183,0.94336476179794803709,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,59.3671679863153016754,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +66 ,0 ,-117.74921592993200647,313.048107608268026069,0.00000000000000000000,-1.0000000000000000000,-0.1148919009425280052,0.29897904297463301359,0.94731799463526800142,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,54.9726421940576983615,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +67 ,0 ,-146.09284529443300471,280.685167757046997394,0.00000000000000000000,-1.0000000000000000000,-0.1433679699366079973,0.26931583399851799498,0.95232064282674200317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,49.4603382310568022717,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +68 ,0 ,-170.44277754620799214,240.197805611137994219,0.00000000000000000000,-1.0000000000000000000,-0.1683925244166470103,0.23165282096157899238,0.95811321265345894548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,43.1438669143423965124,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +69 ,0 ,-189.82950191822101260,191.314931797112990352,0.00000000000000000000,-1.0000000000000000000,-0.1889366610555819891,0.18543104330935600287,0.96432269821174099178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,36.4485672634318973450,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +70 ,0 ,152.133386063647009223,54.2437959204128006263,0.00000000000000000000,-1.0000000000000000000,0.15543433699995298780,0.05337208445305469811,0.98640335942378098987,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,13.4980429036186002633,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +71 ,0 ,139.163184853031992815,107.845899946561999627,0.00000000000000000000,-1.0000000000000000000,0.14162228348110000863,0.10647356540320100648,0.98417808789462901675,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,15.8180204187747008859,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +72 ,0 ,120.702782759041994609,150.856044470479986330,0.00000000000000000000,-1.0000000000000000000,0.12233471959934300032,0.14878350242164700700,0.98127350203075303092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,18.8401660505352985808,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +73 ,0 ,98.0423477363290061248,184.534091292079011736,0.00000000000000000000,-1.0000000000000000000,0.09899732206273349766,0.18164581954713898692,0.97836819575528699566,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,21.8720282029924995015,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +74 ,0 ,72.2311845249146955438,209.486614379454010759,0.00000000000000000000,-1.0000000000000000000,0.07271223390985440127,0.20581071718897700484,0.97588671459857301293,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,24.4716582585716011521,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +75 ,0 ,44.2126864682890001745,226.011085937964992353,0.00000000000000000000,-1.0000000000000000000,0.04441146022882320326,0.22171788954725699105,0.97409896810080498497,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,26.3509294762284014268,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +76 ,0 ,14.8826940022194005308,234.246329050369013202,0.00000000000000000000,-1.0000000000000000000,0.01493302664162439973,0.22961523198923600164,0.97316691782748698802,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,27.3329279012510006907,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +77 ,0 ,-14.882694002219400530,234.246329050369013202,0.00000000000000000000,-1.0000000000000000000,-0.0149330266416243997,0.22961523198923600164,0.97316691782748698802,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,27.3329279012510006907,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +78 ,0 ,-44.212686468289000174,226.011085937964992353,0.00000000000000000000,-1.0000000000000000000,-0.0444114602288232032,0.22171788954725699105,0.97409896810080498497,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,26.3509294762284014268,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +79 ,0 ,-72.231184524914695543,209.486614379454010759,0.00000000000000000000,-1.0000000000000000000,-0.0727122339098544012,0.20581071718897700484,0.97588671459857301293,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,24.4716582585716011521,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +80 ,0 ,-98.042347736329006124,184.534091292079011736,0.00000000000000000000,-1.0000000000000000000,-0.0989973220627334976,0.18164581954713898692,0.97836819575528699566,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,21.8720282029924995015,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +81 ,0 ,-120.70278275904199460,150.856044470479986330,0.00000000000000000000,-1.0000000000000000000,-0.1223347195993430003,0.14878350242164700700,0.98127350203075303092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,18.8401660505352985808,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +82 ,0 ,-139.16318485303199281,107.845899946561999627,0.00000000000000000000,-1.0000000000000000000,-0.1416222834811000086,0.10647356540320100648,0.98417808789462901675,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,15.8180204187747008859,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +83 ,0 ,-152.13338606364700922,54.2437959204128006263,0.00000000000000000000,-1.0000000000000000000,-0.1554343369999529878,0.05337208445305469811,0.98640335942378098987,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,13.4980429036186002633,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +84 ,0 ,104.704277371206003977,-139.57778053898900338,0.00000000000000000000,-1.0000000000000000000,0.10787607600416500297,-0.1381470041063619924,0.98451925196127099138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,15.5136883350714995799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +85 ,0 ,102.782910521675006521,-63.321946045016098025,0.00000000000000000000,-1.0000000000000000000,0.10618566561346100274,-0.0633359706696253049,0.99232714325345494632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,7.57559098017475029962,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +86 ,0 ,92.4256006764792061858,-8.7889253026111404665,0.00000000000000000000,-1.0000000000000000000,0.09551547712748560681,-0.0089763077169375295,0.99538747205742894585,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.52505163463399995293,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +87 ,0 ,76.6735770104831999560,31.4285908688415993594,0.00000000000000000000,-1.0000000000000000000,0.07918204727153589639,0.03133986667892919852,0.99636741021895902647,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.57308123791914988842,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +88 ,0 ,57.2151183251659034567,60.1999842254590973311,0.00000000000000000000,-1.0000000000000000000,0.05902941968988439924,0.06021775366855239980,0.99643833213811494609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.52663652851629016993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +89 ,0 ,35.2821701913818017715,78.8599500164194040507,0.00000000000000000000,-1.0000000000000000000,0.03637031714324519965,0.07893847484478209997,0.99621579851961794549,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.76629060612925004036,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +90 ,0 ,11.9173163214140007681,88.0558030792993946533,0.00000000000000000000,-1.0000000000000000000,0.01227902527454480079,0.08815754725735309993,0.99603085916043498926,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.96002714316251003268,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +91 ,0 ,-11.917316321414000768,88.0558030792993946533,0.00000000000000000000,-1.0000000000000000000,-0.0122790252745448007,0.08815754725735309993,0.99603085916043498926,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.96002714316251003268,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +92 ,0 ,-35.282170191381801771,78.8599500164194040507,0.00000000000000000000,-1.0000000000000000000,-0.0363703171432451996,0.07893847484478209997,0.99621579851961794549,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.76629060612925004036,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +93 ,0 ,-57.215118325165903456,60.1999842254590973311,0.00000000000000000000,-1.0000000000000000000,-0.0590294196898845033,0.06021775366855239980,0.99643833213811494609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.52663652851629016993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +94 ,0 ,-76.673577010483199956,31.4285908688415993594,0.00000000000000000000,-1.0000000000000000000,-0.0791820472715358963,0.03133986667892919852,0.99636741021895902647,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.57308123791914988842,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +95 ,0 ,-92.425600676479206185,-8.7889253026111404665,0.00000000000000000000,-1.0000000000000000000,-0.0955154771274856068,-0.0089763077169375295,0.99538747205742894585,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.52505163463399995293,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +96 ,0 ,-102.78291052167500652,-63.321946045015998549,0.00000000000000000000,-1.0000000000000000000,-0.1061856656134610027,-0.0633359706696253049,0.99232714325345494632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,7.57559098017475029962,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +97 ,0 ,-104.70427737120600397,-139.57778053898900338,0.00000000000000000000,-1.0000000000000000000,-0.1078760760041650029,-0.1381470041063619924,0.98451925196127099138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,15.5136883350714995799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +98 ,0 ,45.8699450065199982873,-224.72548027632001321,0.00000000000000000000,-1.0000000000000000000,0.04710673871611530116,-0.2192764612999970053,0.97452490408777203700,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,26.0917502723131988773,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +99 ,0 ,37.3447902405020002447,-165.23434478108001144,0.00000000000000000000,-1.0000000000000000000,0.03858360052800909739,-0.1632012136759619924,0.98583805446177996678,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,14.3245021893970996273,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +100 ,0 ,23.9156669137871986663,-133.36276348868500463,0.00000000000000000000,-1.0000000000000000000,0.02477395397021980166,-0.1324256668709800077,0.99088328977658002294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9.17562937381319088103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +101 ,0 ,8.20485620587808028858,-118.71485344218899626,0.00000000000000000000,-1.0000000000000000000,0.00850830844429397055,-0.1181344902474800034,0.99296115276549701267,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,7.07328228868436958975,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +102 ,0 ,-8.2048562058780802885,-118.71485344218899626,0.00000000000000000000,-1.0000000000000000000,-0.0085083084442939705,-0.1181344902474800034,0.99296115276549701267,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,7.07328228868436958975,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +103 ,0 ,-23.915666913787198666,-133.36276348868500463,0.00000000000000000000,-1.0000000000000000000,-0.0247739539702198016,-0.1324256668709800077,0.99088328977658002294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9.17562937381319088103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +104 ,0 ,-37.344790240502000244,-165.23434478108001144,0.00000000000000000000,-1.0000000000000000000,-0.0385836005280090973,-0.1632012136759619924,0.98583805446177996678,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,14.3245021893970996273,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +105 ,0 ,-45.869945006519998287,-224.72548027632001321,0.00000000000000000000,-1.0000000000000000000,-0.0471067387161153011,-0.2192764612999970053,0.97452490408777203700,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,26.0917502723131988773,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +106 ,0 ,340.062081529643990052,641.905974507241012361,0.00000000000000000000,-1.0000000000000000000,0.28136383983097801309,0.52292271489269703810,0.80460314682756395310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,238.690210924663006153,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +107 ,0 ,301.010109141200985050,700.585894649469992145,0.00000000000000000000,-1.0000000000000000000,0.24467644943960800696,0.56120044852155803738,0.79068798629347403217,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,260.203724153947007380,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +108 ,0 ,255.633568603312994582,751.212145862446050159,0.00000000000000000000,-1.0000000000000000000,0.20462015552100198956,0.59297738222383600259,0.77878650227487100643,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,279.206367310794973946,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +109 ,0 ,204.816435082061985895,792.939516606975985268,0.00000000000000000000,-1.0000000000000000000,0.16187235004146299788,0.61832696888045601824,0.76907028407497401989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,295.150935751003999030,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv b/Intern/RayCore/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv new file mode 100644 index 000000000..473c99cce --- /dev/null +++ b/Intern/RayCore/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv @@ -0,0 +1,111 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,340.062081529641375254,641.905974507232372161,0.00000000000000000000,1.00000000000000000000,0.28136383983097623673,0.52292271489269159800,0.80460314682756783888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11238.6902109246584586,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,301.010109141215764338,700.585894649511942589,0.00000000000000000000,1.00000000000000000000,0.24467644943961505688,0.56120044852157879855,0.79068798629345693473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11260.2037241539746901,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,255.633568603311033484,751.212145862438092080,0.00000000000000000000,1.00000000000000000000,0.20462015552100118465,0.59297738222383089556,0.77878650227487500323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11279.2063673107913928,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,204.816435082061900629,792.939516606974962087,0.00000000000000000000,1.00000000000000000000,0.16187235004146308114,0.61832696888045501903,0.76907028407497479705,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11295.1509357510039990,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,149.582742046199484775,824.997982701603859823,0.00000000000000000000,1.00000000000000000000,0.11706873047590775349,0.63730010065543729602,0.76167151321900461447,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11307.5623963914822525,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,91.0866379008865152400,846.751390671680496780,0.00000000000000000000,1.00000000000000000000,0.07081579668367499191,0.64993117278119527657,0.75668658874550964732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11316.0600708881247555,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,30.5874090036709844753,857.746109070227930715,0.00000000000000000000,1.00000000000000000000,0.02370066317814056161,0.65624157111316283597,0.75417854577536458382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11320.3775237196568923,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,-30.587409003670835261,857.746109070227930715,0.00000000000000000000,1.00000000000000000000,-0.0237006631781404471,0.65624157111316283597,0.75417854577536458382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11320.3775237196568923,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-91.086637900886373131,846.751390671680496780,0.00000000000000000000,1.00000000000000000000,-0.0708157966836748808,0.64993117278119527657,0.75668658874550964732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11316.0600708881247555,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,-149.58274204619937108,824.997982701603859823,0.00000000000000000000,1.00000000000000000000,-0.1170687304759076563,0.63730010065543729602,0.76167151321900461447,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11307.5623963914822525,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,-204.81643508206181536,792.939516606975075774,0.00000000000000000000,1.00000000000000000000,-0.1618723500414629978,0.61832696888045513006,0.76907028407497490807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11295.1509357510039990,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,-255.63356860331086295,751.212145862438092080,0.00000000000000000000,1.00000000000000000000,-0.2046201555210010458,0.59297738222383089556,0.77878650227487500323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11279.2063673107913928,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,-301.01010914121565065,700.585894649511942589,0.00000000000000000000,1.00000000000000000000,-0.2446764494396149736,0.56120044852157879855,0.79068798629345693473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11260.2037241539746901,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-340.06208152964131841,641.905974507232372161,0.00000000000000000000,1.00000000000000000000,-0.2813638398309761812,0.52292271489269159800,0.80460314682756783888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11238.6902109246584586,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,299.305310576974932246,530.445561181847438092,0.00000000000000000000,1.00000000000000000000,0.26185916625823002501,0.45613950692849503099,0.85050956917930897738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11172.9488156397164857,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,265.051233508936093130,584.263004966323251210,0.00000000000000000000,1.00000000000000000000,0.22842377262557514439,0.49541588047278933837,0.83808453360915224905,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11190.1295292734830582,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,225.114174166450851544,630.370426716169276915,0.00000000000000000000,1.00000000000000000000,0.19148099704098500706,0.52796830824705276441,0.82739621298319643294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11205.3144692269306688,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,180.344677332320429741,668.160025808925752244,0.00000000000000000000,1.00000000000000000000,0.15174596149996430471,0.55390638728383523314,0.81863354273729871390,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11218.0546934062203945,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,131.687152325102800887,697.067453851789082364,0.00000000000000000000,1.00000000000000000000,0.10988329038682019545,0.57330438313000797734,0.81194072861120003548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11227.9679694403021130,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,80.1763473601438363402,716.622228908284796489,0.00000000000000000000,1.00000000000000000000,0.06652305805536500027,0.58621151410564931172,0.80742228324274301076,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11234.7522169309850141,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +20 ,0 ,26.9211410184910562293,726.487428602422482981,0.00000000000000000000,1.00000000000000000000,0.02227278564359500001,0.59265791234920206509,0.80514627363576574126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11238.1979873415366455,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,0 ,-26.921141018490921226,726.487428602422482981,0.00000000000000000000,1.00000000000000000000,-0.0222727856435948889,0.59265791234920206509,0.80514627363576574126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11238.1979873415366455,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,0 ,-80.176347360143680020,716.622228908284796489,0.00000000000000000000,1.00000000000000000000,-0.0665230580553648753,0.58621151410564931172,0.80742228324274301076,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11234.7522169309850141,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +23 ,0 ,-131.68715232510291457,697.067453851789082364,0.00000000000000000000,1.00000000000000000000,-0.1098832903868202925,0.57330438313000797734,0.81194072861120003548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11227.9679694403021130,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +24 ,0 ,-180.34467733232031605,668.160025808925752244,0.00000000000000000000,1.00000000000000000000,-0.1517459614999642214,0.55390638728383523314,0.81863354273729871390,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11218.0546934062185755,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,0 ,-225.11417416645073785,630.370426716169276915,0.00000000000000000000,1.00000000000000000000,-0.1914809970409849237,0.52796830824705276441,0.82739621298319643294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11205.3144692269306688,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,0 ,-265.05123350893603628,584.263004966323478583,0.00000000000000000000,1.00000000000000000000,-0.2284237726255750611,0.49541588047278950490,0.83808453360915202701,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11190.1295292734830582,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +27 ,0 ,-299.30531057697481855,530.445561181847438092,0.00000000000000000000,1.00000000000000000000,-0.2618591662582299139,0.45613950692849503099,0.85050956917930897738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11172.9488156397164857,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +28 ,0 ,261.488571438837766436,421.017155856996964757,0.00000000000000000000,1.00000000000000000000,0.24043204854906496947,0.37967684517474753480,0.89332968341405205592,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11117.6166181817006872,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +29 ,0 ,231.980604126349476246,471.422090622957284722,0.00000000000000000000,1.00000000000000000000,0.21063866064935027333,0.42034572408663439802,0.88257624423158498316,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11131.0935595217488298,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,0 ,197.243708224108360127,514.259479652063532739,0.00000000000000000000,1.00000000000000000000,0.17714328835383452709,0.45395538021188835964,0.87323809363075177714,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11143.0590916114233550,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,0 ,158.120300114684454229,549.155516341351130904,0.00000000000000000000,1.00000000000000000000,0.14071834423613088782,0.48068606227924792761,0.86552831099041049878,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11153.1281288598402170,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +32 ,0 ,115.501327437671619691,575.724981691054153998,0.00000000000000000000,1.00000000000000000000,0.10206936871307410730,0.50064980637306255584,0.85961131643849897354,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11160.9756148009455500,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +33 ,0 ,70.3350613567116909052,593.639406186444830382,0.00000000000000000000,1.00000000000000000000,0.06185898161873430722,0.51392160161690603192,0.85560391173989314150,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11166.3508685225388035,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +34 ,0 ,23.6185426387878152354,602.659502305719911419,0.00000000000000000000,1.00000000000000000000,0.02072205433419772174,0.52054679561787819963,0.85358164813691317363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11169.0821748344751540,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +35 ,0 ,-23.618542638787694443,602.659502305719911419,0.00000000000000000000,1.00000000000000000000,-0.0207220543341976176,0.52054679561787819963,0.85358164813691317363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11169.0821748344751540,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,0 ,-70.335061356711563007,593.639406186444830382,0.00000000000000000000,1.00000000000000000000,-0.0618589816187341962,0.51392160161690603192,0.85560391173989314150,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11166.3508685225388035,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,0 ,-115.50132743767149179,575.724981691054153998,0.00000000000000000000,1.00000000000000000000,-0.1020693687130740240,0.50064980637306266686,0.85961131643849908456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11160.9756148009455500,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +38 ,0 ,-158.12030011468434054,549.155516341351130904,0.00000000000000000000,1.00000000000000000000,-0.1407183442361307768,0.48068606227924792761,0.86552831099041049878,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11153.1281288598402170,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +39 ,0 ,-197.24370822410818959,514.259479652063532739,0.00000000000000000000,1.00000000000000000000,-0.1771432883538343883,0.45395538021188835964,0.87323809363075177714,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11143.0590916114233550,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +40 ,0 ,-231.98060412634941940,471.422090622957284722,0.00000000000000000000,1.00000000000000000000,-0.2106386606493502178,0.42034572408663439802,0.88257624423158498316,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11131.0935595217488298,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,0 ,-261.48857143883765274,421.017155856996964757,0.00000000000000000000,1.00000000000000000000,-0.2404320485490648862,0.37967684517474753480,0.89332968341405205592,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11117.6166181817006872,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +42 ,0 ,225.467321965355949942,309.840185742433334326,0.00000000000000000000,1.00000000000000000000,0.21648363175465251684,0.29095316789562147841,0.93192332907477848369,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.0060259197798586,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +43 ,0 ,200.815353385420479526,358.396733024889215357,0.00000000000000000000,1.00000000000000000000,0.19088155417258348411,0.33370827050226470333,0.92314842927616247436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11082.1175399781968735,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,0 ,171.197535118961553735,399.249576374851585569,0.00000000000000000000,1.00000000000000000000,0.16128651345772032632,0.36887519992601408569,0.91537847224860791062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11091.2258827734985970,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,0 ,137.481247692358834910,432.271622774959212165,0.00000000000000000000,1.00000000000000000000,0.12856055770323904230,0.39674791892309457796,0.90888022964152181959,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.9585139328155491,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,0 ,100.538650145982771277,457.273248593454525234,0.00000000000000000000,1.00000000000000000000,0.09347321292365319556,0.41751651156081553972,0.90384883749431044197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11105.0194038092486152,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +47 ,0 ,61.2645669154670144962,474.065556853140151361,0.00000000000000000000,1.00000000000000000000,0.05673494510757112058,0.43130254915330085152,0.90042171069866194788,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11109.1853100923963211,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +48 ,0 ,20.5790932319637818181,482.501538610793829775,0.00000000000000000000,1.00000000000000000000,0.01901950756339614370,0.43817857889489808531,0.89868670365689362622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11111.3060726988660462,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +49 ,0 ,-20.579093231963675236,482.501538610793829775,0.00000000000000000000,1.00000000000000000000,-0.0190195075633960465,0.43817857889489808531,0.89868670365689362622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11111.3060726988660462,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +50 ,0 ,-61.264566915466907914,474.065556853140151361,0.00000000000000000000,1.00000000000000000000,-0.0567349451075710234,0.43130254915330085152,0.90042171069866194788,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11109.1853100923963211,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +51 ,0 ,-100.53865014598268601,457.273248593454525234,0.00000000000000000000,1.00000000000000000000,-0.0934732129236531261,0.41751651156081553972,0.90384883749431044197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11105.0194038092486152,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,0 ,-137.48124769235872122,432.271622774959212165,0.00000000000000000000,1.00000000000000000000,-0.1285605577032389312,0.39674791892309457796,0.90888022964152181959,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.9585139328155491,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +53 ,0 ,-171.19753511896146846,399.249576374851585569,0.00000000000000000000,1.00000000000000000000,-0.1612865134577202430,0.36887519992601408569,0.91537847224860791062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11091.2258827734985970,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +54 ,0 ,-200.81535338542042268,358.396733024889215357,0.00000000000000000000,1.00000000000000000000,-0.1908815541725834286,0.33370827050226470333,0.92314842927616247436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11082.1175399781968735,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +55 ,0 ,-225.46732196535594994,309.840185742433618543,0.00000000000000000000,1.00000000000000000000,-0.2164836317546524613,0.29095316789562164494,0.93192332907477837267,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.0060259197798586,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +56 ,0 ,189.829501918214134548,191.314931797095823640,0.00000000000000000000,1.00000000000000000000,0.18893666105557643808,0.18543104330934043200,0.96432269821174454449,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11036.4485672634255024,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +57 ,0 ,170.442777546207338446,240.197805611132423564,0.00000000000000000000,1.00000000000000000000,0.16839252441664676052,0.23165282096157344127,0.95811321265345994468,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11043.1438669143408333,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +58 ,0 ,146.092845294434482639,280.685167757054102821,0.00000000000000000000,1.00000000000000000000,0.14336796993660966270,0.26931583399852482285,0.95232064282673933863,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11049.4603382310579036,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +59 ,0 ,117.749215929928055857,313.048107608245118171,0.00000000000000000000,1.00000000000000000000,0.11489190094252572926,0.29897904297461291855,0.94731799463527399662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11054.9726421940504224,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +60 ,0 ,86.3153801579585149283,337.358209748164938446,0.00000000000000000000,1.00000000000000000000,0.08384223931010165165,0.32098816972807486802,0.94336476179794193086,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11059.3671679863218741,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +61 ,0 ,52.6739581813208772587,353.600155890335088315,0.00000000000000000000,1.00000000000000000000,0.05100644694201526829,0.33555780575314031466,0.94063770994389150903,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11062.4188572657330951,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,0 ,17.7056218900040605035,361.734897698176609992,0.00000000000000000000,1.00000000000000000000,0.01711809069229951532,0.34281353760220228954,0.93924749103083216006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11063.9810053745786717,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +63 ,0 ,-17.705621890003971685,361.734897698176609992,0.00000000000000000000,1.00000000000000000000,-0.0171180906922994320,0.34281353760220228954,0.93924749103083216006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11063.9810053745786717,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +64 ,0 ,-52.673958181320791993,353.600155890335088315,0.00000000000000000000,1.00000000000000000000,-0.0510064469420151850,0.33555780575314031466,0.94063770994389150903,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11062.4188572657330951,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +65 ,0 ,-86.315380157958443874,337.358209748164938446,0.00000000000000000000,1.00000000000000000000,-0.0838422393101015822,0.32098816972807486802,0.94336476179794193086,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11059.3671679863218741,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +66 ,0 ,-117.74921592992797059,313.048107608245118171,0.00000000000000000000,1.00000000000000000000,-0.1148919009425256460,0.29897904297461291855,0.94731799463527399662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11054.9726421940504224,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,0 ,-146.09284529443439737,280.685167757054102821,0.00000000000000000000,1.00000000000000000000,-0.1433679699366095794,0.26931583399852482285,0.95232064282673933863,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11049.4603382310579036,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +68 ,0 ,-170.44277754620728160,240.197805611132423564,0.00000000000000000000,1.00000000000000000000,-0.1683925244166467050,0.23165282096157344127,0.95811321265345994468,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11043.1438669143408333,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +69 ,0 ,-189.82950191821410612,191.314931797095823640,0.00000000000000000000,1.00000000000000000000,-0.1889366610555764103,0.18543104330934043200,0.96432269821174454449,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11036.4485672634255024,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +70 ,0 ,152.133386063648288200,54.2437959204190605078,0.00000000000000000000,1.00000000000000000000,0.15543433699995390373,0.05337208445306104026,0.98640335942378032374,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11013.4980429036186251,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +71 ,0 ,139.163184853043389921,107.845899946611211817,0.00000000000000000000,1.00000000000000000000,0.14162228348111099984,0.10647356540324959262,0.98417808789462257745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11015.8180204187810886,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +72 ,0 ,120.702782759042506199,150.856044470483425357,0.00000000000000000000,1.00000000000000000000,0.12233471959934390238,0.14878350242165105932,0.98127350203075192069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11018.8401660505351173,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +73 ,0 ,98.0423477363292192876,184.534091292069803103,0.00000000000000000000,1.00000000000000000000,0.09899732206273360868,0.18164581954712952227,0.97836819575528854997,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11021.8720282029880763,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +74 ,0 ,72.2311845249172534977,209.486614379478140790,0.00000000000000000000,1.00000000000000000000,0.07271223390985659396,0.20581071718899998646,0.97588671459856823897,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11024.4716582585770083,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +75 ,0 ,44.2126864682877069867,226.011085937936400114,0.00000000000000000000,1.00000000000000000000,0.04441146022882219018,0.22171788954723087305,0.97409896810081131324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11026.3509294762206991,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +76 ,0 ,14.8826940022209797120,234.246329050444558106,0.00000000000000000000,1.00000000000000000000,0.01493302664162572679,0.22961523198930527955,0.97316691782746989058,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11027.3329279012705228,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +77 ,0 ,-14.882694002220908657,234.246329050444558106,0.00000000000000000000,1.00000000000000000000,-0.0149330266416256574,0.22961523198930527955,0.97316691782746989058,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11027.3329279012705228,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +78 ,0 ,-44.212686468287635932,226.011085937936400114,0.00000000000000000000,1.00000000000000000000,-0.0444114602288221207,0.22171788954723087305,0.97409896810081131324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11026.3509294762206991,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +79 ,0 ,-72.231184524917324552,209.486614379478140790,0.00000000000000000000,1.00000000000000000000,-0.0727122339098566633,0.20581071718899998646,0.97588671459856823897,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11024.4716582585770083,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +80 ,0 ,-98.042347736329162444,184.534091292069803103,0.00000000000000000000,1.00000000000000000000,-0.0989973220627335531,0.18164581954712952227,0.97836819575528854997,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11021.8720282029880763,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +81 ,0 ,-120.70278275904243514,150.856044470483425357,0.00000000000000000000,1.00000000000000000000,-0.1223347195993438329,0.14878350242165105932,0.98127350203075192069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11018.8401660505351173,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +82 ,0 ,-139.16318485304333307,107.845899946611211817,0.00000000000000000000,1.00000000000000000000,-0.1416222834811109443,0.10647356540324959262,0.98417808789462257745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11015.8180204187810886,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +83 ,0 ,-152.13338606364825977,54.2437959204190605078,0.00000000000000000000,1.00000000000000000000,-0.1554343369999538482,0.05337208445306104026,0.98640335942378032374,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11013.4980429036186251,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +84 ,0 ,104.704277371219291126,-139.57778053893343894,0.00000000000000000000,1.00000000000000000000,0.10787607600417913056,-0.1381470041063079245,0.98451925196127665351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11015.5136883350660355,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +85 ,0 ,102.782910521688194194,-63.321946044953818955,0.00000000000000000000,1.00000000000000000000,0.10618566561347535237,-0.0633359706695636598,0.99232714325345705574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11007.5755909801719099,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +86 ,0 ,92.4256006764772592987,-8.7889253026205764740,0.00000000000000000000,1.00000000000000000000,0.09551547712748369167,-0.0089763077169466142,0.99538747205742927892,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11004.5250516346332005,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +87 ,0 ,76.6735770104845926198,31.4285908688529680432,0.00000000000000000000,1.00000000000000000000,0.07918204727153715927,0.03133986667894034933,0.99636741021895836034,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.5730812379206327,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +88 ,0 ,57.2151183251668626894,60.1999842254680004316,0.00000000000000000000,1.00000000000000000000,0.05902941968988534987,0.06021775366856126077,0.99643833213811461302,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.5266365285151550,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +89 ,0 ,35.2821701913862710853,78.8599500165020828035,0.00000000000000000000,1.00000000000000000000,0.03637031714324943237,0.07893847484486506138,0.99621579851961072904,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.7662906061359535,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +90 ,0 ,11.9173163214155231059,88.0558030793668820024,0.00000000000000000000,1.00000000000000000000,0.01227902527454624234,0.08815754725741943576,0.99603085916042888303,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.9600271431700093,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,0 ,-11.917316321415468038,88.0558030793668820024,0.00000000000000000000,1.00000000000000000000,-0.0122790252745461868,0.08815754725741943576,0.99603085916042888303,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.9600271431700093,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +92 ,0 ,-35.282170191386214241,78.8599500165020828035,0.00000000000000000000,1.00000000000000000000,-0.0363703171432493768,0.07893847484486506138,0.99621579851961072904,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.7662906061359535,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +93 ,0 ,-57.215118325166827162,60.1999842254680004316,0.00000000000000000000,1.00000000000000000000,-0.0590294196898853151,0.06021775366856126077,0.99643833213811461302,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.5266365285151550,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +94 ,0 ,-76.673577010484549987,31.4285908688529680432,0.00000000000000000000,1.00000000000000000000,-0.0791820472715371176,0.03133986667894034933,0.99636741021895836034,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.5730812379206327,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +95 ,0 ,-92.425600676477202455,-8.7889253026205764740,0.00000000000000000000,1.00000000000000000000,-0.0955154771274836361,-0.0089763077169466142,0.99538747205742927892,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11004.5250516346332005,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +96 ,0 ,-102.78291052168815156,-63.321946044953818955,0.00000000000000000000,1.00000000000000000000,-0.1061856656134753107,-0.0633359706695636598,0.99232714325345705574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11007.5755909801719099,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +97 ,0 ,-104.70427737121926270,-139.57778053893341052,0.00000000000000000000,1.00000000000000000000,-0.1078760760041791028,-0.1381470041063078968,0.98451925196127665351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11015.5136883350660355,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +98 ,0 ,45.8699450064920881686,-224.72548027658478986,0.00000000000000000000,1.00000000000000000000,0.04710673871608525575,-0.2192764613002423645,0.97452490408771863528,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11026.0917502723714278,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +99 ,0 ,37.3447902404988738567,-165.23434478111806811,0.00000000000000000000,1.00000000000000000000,0.03858360052800579448,-0.1632012136759980469,0.98583805446177419362,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11014.3245021894017554,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +100 ,0 ,23.9156669137862394336,-133.36276348870393348,0.00000000000000000000,1.00000000000000000000,0.02477395397021868450,-0.1324256668709981599,0.99088328977657724738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11009.1756293738162639,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +101 ,0 ,8.20485620587934327829,-118.71485344211288293,0.00000000000000000000,1.00000000000000000000,0.00850830844429532190,-0.1181344902474044805,0.99296115276550600547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11007.0732822886748181,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +102 ,0 ,-8.2048562058793130802,-118.71485344211288293,0.00000000000000000000,1.00000000000000000000,-0.0085083084442952924,-0.1181344902474044805,0.99296115276550600547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11007.0732822886748181,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +103 ,0 ,-23.915666913786214564,-133.36276348870393348,0.00000000000000000000,1.00000000000000000000,-0.0247739539702186602,-0.1324256668709981599,0.99088328977657724738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11009.1756293738162639,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +104 ,0 ,-37.344790240498859645,-165.23434478111806811,0.00000000000000000000,1.00000000000000000000,-0.0385836005280057806,-0.1632012136759980469,0.98583805446177419362,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11014.3245021894017554,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +105 ,0 ,-45.869945006492073957,-224.72548027658478986,0.00000000000000000000,1.00000000000000000000,-0.0471067387160852418,-0.2192764613002423645,0.97452490408771863528,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11026.0917502723714278,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +106 ,0 ,340.062081529641375254,641.905974507232372161,0.00000000000000000000,1.00000000000000000000,0.28136383983097623673,0.52292271489269159800,0.80460314682756783888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11238.6902109246584586,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +107 ,0 ,301.010109141215764338,700.585894649511942589,0.00000000000000000000,1.00000000000000000000,0.24467644943961505688,0.56120044852157879855,0.79068798629345693473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11260.2037241539746901,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +108 ,0 ,255.633568603311033484,751.212145862438092080,0.00000000000000000000,1.00000000000000000000,0.20462015552100118465,0.59297738222383089556,0.77878650227487500323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11279.2063673107913928,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +109 ,0 ,204.816435082061900629,792.939516606974962087,0.00000000000000000000,1.00000000000000000000,0.16187235004146308114,0.61832696888045501903,0.76907028407497479705,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11295.1509357510039990,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateMis.rayui.csv b/Intern/RayCore/tests/output/ReflectionZonePlateMis.rayui.csv new file mode 100644 index 000000000..03913c969 --- /dev/null +++ b/Intern/RayCore/tests/output/ReflectionZonePlateMis.rayui.csv @@ -0,0 +1,15 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,15.2178846039660999878,-2.2781223527609300028,0.00000000000000000000,-1.0000000000000000000,0.01801031008177090067,-0.0028696582942683498,0.99983368306535502778,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.08548053346885349512,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,10.5356142692881000755,3.22360224458875022079,0.00000000000000000000,-1.0000000000000000000,0.01200577740199199917,0.00317035935313347014,0.99992290209322898242,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00414843359169481031,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,5.85697712580689966443,5.70436228240112974674,0.00000000000000000000,-1.0000000000000000000,0.00600582222306174015,0.00589002174837695031,0.99996461824567994813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0338995273151568021,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,1.17835572213446004852,6.17807172890308997637,0.00000000000000000000,-1.0000000000000000000,0.00000732386857076085,0.00640402904698393962,0.99997949396891394613,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0474636050861362984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-3.5008625479243900002,4.77471689655129960527,0.00000000000000000000,-1.0000000000000000000,-0.0059899248630945400,0.00485607872113914991,0.99997026920783405046,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0390290010429907990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-8.1796149684990808736,1.04297328415851997540,0.00000000000000000000,-1.0000000000000000000,-0.0119842157841875008,0.00075171074130780902,0.99992790415259402703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003513366642664549,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,-12.851394139853800524,-7.5843055842549498279,0.00000000000000000000,-1.0000000000000000000,-0.0179668778842042992,-0.0087250165668843991,0.99980051279492798688,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.11586225743985799352,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,12.6303461839353996509,-1.8455126533041998904,0.00000000000000000000,-1.0000000000000000000,0.01359180796431270002,-0.0032001557375974901,0.99990250612723097223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02546090943735630079,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,6.50259241149318967245,3.30995668397339981581,0.00000000000000000000,-1.0000000000000000000,0.00638233486785381998,0.00217673719702160019,0.99997726354993199393,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0462311679958702023,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,0.37679136305520199989,4.05224882264321983882,0.00000000000000000000,-1.0000000000000000000,-0.0008239413548985220,0.00294602904564546979,0.99999532100580601490,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0635554096902524040,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,-5.7493518876707501163,0.94312262777681798997,0.00000000000000000000,-1.0000000000000000000,-0.0080282803259114805,-0.0003043487660956450,0.99996772652262999603,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0370802485830381972,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,-11.864444523540699449,-10.379961418191300026,0.00000000000000000000,-1.0000000000000000000,-0.0152165351013050995,-0.0121224721236540995,0.99981073345364801507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.11350310222178500163,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,8.05906768193255018672,-5.0389736197698100639,0.00000000000000000000,-1.0000000000000000000,0.00763188827595532009,-0.0070993922429208400,0.99994567497995801019,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0152301159480430006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-1.1121151417453500886,-3.0317463656366898661,0.00000000000000000000,-1.0000000000000000000,-0.0022606721257867100,-0.0051070991385341801,0.99998440332833604671,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0541880045740298979,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateMis.rayx.csv b/Intern/RayCore/tests/output/ReflectionZonePlateMis.rayx.csv new file mode 100644 index 000000000..fd7f3d990 --- /dev/null +++ b/Intern/RayCore/tests/output/ReflectionZonePlateMis.rayx.csv @@ -0,0 +1,15 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,15.2178846039658832722,-2.2781223527475913392,0.00000000000000000000,1.00000000000000000000,0.01801031008177082434,-0.0028696582942535722,0.99983368306535491676,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0854805334656703,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,10.5356142692880236921,3.22360224458786026602,0.00000000000000000000,1.00000000000000000000,0.01200577740199196795,0.00317035935313263097,0.99992290209322920446,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0041484335888526,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,5.85697712580690055261,5.70436228240900788932,0.00000000000000000000,1.00000000000000000000,0.00600582222306175056,0.00589002174838571326,0.99996461824567994813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9661004726876853,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,1.17835572213448580569,6.17807172890279598931,0.00000000000000000000,1.00000000000000000000,0.00000732386857079109,0.00640402904698373406,0.99997949396891450124,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9525363949160237,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-3.5008625479244934730,4.77471689656922571032,0.00000000000000000000,1.00000000000000000000,-0.0059899248630946484,0.00485607872115882948,0.99997026920783416148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9609709989581460,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-8.1796149684991714678,1.04297328416468837453,0.00000000000000000000,1.00000000000000000000,-0.0119842157841875875,0.00075171074131466909,0.99992790415259402703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996486633335734,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,-12.851394139854226850,-7.5843055842325419746,0.00000000000000000000,1.00000000000000000000,-0.0179668778842046981,-0.0087250165668598441,0.99980051279492854199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1158622574384935,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,12.6303461839353943219,-1.8455126532956118712,0.00000000000000000000,1.00000000000000000000,0.01359180796431275206,-0.0032001557375884986,0.99990250612723052814,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0254609094408806,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,6.50259241149330957654,3.30995668396919651144,0.00000000000000000000,1.00000000000000000000,0.00638233486785394314,0.00217673719701724473,0.99997726354993177189,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9537688320051529,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,0.37679136305527860528,4.05224882263998154030,0.00000000000000000000,1.00000000000000000000,-0.0008239413548984486,0.00294602904564223930,0.99999532100580645899,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9364445903102023,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,-5.7493518876706453113,0.94312262777744770847,0.00000000000000000000,1.00000000000000000000,-0.0080282803259114042,-0.0003043487660948860,0.99996772652262988501,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9629197514132101,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,-11.864444523540672804,-10.379961418208287327,0.00000000000000000000,1.00000000000000000000,-0.0152165351013050318,-0.0121224721236717295,0.99981073345364801507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1135031022240582,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,8.05906768193266742628,-5.0389736197813146389,0.00000000000000000000,1.00000000000000000000,0.00763188827595545453,-0.0070993922429322293,0.99994567497995823224,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9847698840494558,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-1.1121151417451260456,-3.0317463656277139349,0.00000000000000000000,1.00000000000000000000,-0.0022606721257864953,-0.0051070991385251214,0.99998440332833637977,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9458119954251742,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/SphereMirrorDefault.rayui.csv b/Intern/RayCore/tests/output/SphereMirrorDefault.rayui.csv new file mode 100644 index 000000000..17de43482 --- /dev/null +++ b/Intern/RayCore/tests/output/SphereMirrorDefault.rayui.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-5.3677600809735999121,-0.1037555071667379952,0.00000000000000000000,-1.0000000000000000000,-0.0003304987204870929,0.00495040181985787006,0.99998769207046600548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054554176574583802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-1.7892534737681700107,-0.1051007603064399997,0.00000000000000000000,-1.0000000000000000000,-0.0001101660900611579,0.00495120725985893038,0.99998773662985596111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002423567834739519,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,1.78925347376817001077,-0.1051007603064399997,0.00000000000000000000,-1.0000000000000000000,0.00011016609006115799,0.00495120725985893038,0.99998773662985596111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002423567834739519,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,5.36776008097359991211,-0.1037555071667379952,0.00000000000000000000,-1.0000000000000000000,0.00033049872048709297,0.00495040181985787006,0.99998769207046600548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054554176574583802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-5.3662915670945299240,-0.0107400390678278005,0.00000000000000000000,-1.0000000000000000000,-0.0003322156226594500,0.00165543136278764992,0.99999857458887597694,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087295457876734904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-1.7887639640940800056,-0.0120574697188244994,0.00000000000000000000,-1.0000000000000000000,-0.0001107383900938309,0.00165624250690260999,0.99999862229793501366,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008565552877826120,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,1.78876396409408000565,-0.0120574697188244994,0.00000000000000000000,-1.0000000000000000000,0.00011073839009383099,0.00165624250690260999,0.99999862229793501366,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008565552877826120,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,5.36629156709452992402,-0.0107400390678278005,0.00000000000000000000,-1.0000000000000000000,0.00033221562265945000,0.00165543136278764992,0.99999857458887597694,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087295457876734904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-5.3648740126439697917,-0.0095215269232784595,0.00000000000000000000,-1.0000000000000000000,-0.0003339409603230389,-0.0016632660373079900,0.99999856101372697203,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00089813820113704401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-1.7882914408035099906,-0.0108106189879443991,0.00000000000000000000,-1.0000000000000000000,-0.0001113135019370409,-0.0016624490408288800,0.99999861193528194469,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011125960816116300,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,1.78829144080350999068,-0.0108106189879443991,0.00000000000000000000,-1.0000000000000000000,0.00011131350193704099,-0.0016624490408288800,0.99999861193528194469,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011125960816116300,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,5.36487401264396979172,-0.0095215269232784595,0.00000000000000000000,-1.0000000000000000000,0.00033394096032303898,-0.0016632660373079900,0.99999856101372697203,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00089813820113704401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-5.3635084652299900298,-0.1020911435198449956,0.00000000000000000000,-1.0000000000000000000,-0.0003356749640682820,-0.0050062701380803303,0.99998741221158504721,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00123704682664538007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-1.7878362530949301056,-0.1033513574504929949,0.00000000000000000000,-1.0000000000000000000,-0.0001118915024533910,-0.0050054471345558904,0.99998746641109204080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045040229451842600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,1.78783625309493010568,-0.1033513574504929949,0.00000000000000000000,-1.0000000000000000000,0.00011189150245339100,-0.0050054471345558904,0.99998746641109204080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045040229451842600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,5.36350846522999002985,-0.1020911435198449956,0.00000000000000000000,-1.0000000000000000000,0.00033567496406828201,-0.0050062701380803303,0.99998741221158504721,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00123704682664538007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-5.3677600809735999121,-0.1037555071667379952,0.00000000000000000000,-1.0000000000000000000,-0.0003304987204870929,0.00495040181985787006,0.99998769207046600548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054554176574583802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-1.7892534737681700107,-0.1051007603064399997,0.00000000000000000000,-1.0000000000000000000,-0.0001101660900611579,0.00495120725985893038,0.99998773662985596111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002423567834739519,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,1.78925347376817001077,-0.1051007603064399997,0.00000000000000000000,-1.0000000000000000000,0.00011016609006115799,0.00495120725985893038,0.99998773662985596111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002423567834739519,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,5.36776008097359991211,-0.1037555071667379952,0.00000000000000000000,-1.0000000000000000000,0.00033049872048709297,0.00495040181985787006,0.99998769207046600548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054554176574583802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/SphereMirrorDefault.rayx.csv b/Intern/RayCore/tests/output/SphereMirrorDefault.rayx.csv new file mode 100644 index 000000000..24112bac4 --- /dev/null +++ b/Intern/RayCore/tests/output/SphereMirrorDefault.rayx.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-5.3677600809741425891,-0.1037555071836690490,0.00000000000000000000,1.00000000000000000000,-0.0003304987204876499,0.00495040181984041007,0.99998769207046633855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005455417667690,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-1.7892534737683509771,-0.1051007603238170440,0.00000000000000000000,1.00000000000000000000,-0.0001101660900613439,0.00495120725984135763,0.99998773662985618315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997576432160713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,1.78925347376835031099,-0.1051007603238170440,0.00000000000000000000,1.00000000000000000000,0.00011016609006134393,0.00495120725984135763,0.99998773662985618315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997576432160713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,5.36776008097414258912,-0.1037555071836690490,0.00000000000000000000,1.00000000000000000000,0.00033049872048764998,0.00495040181984041007,0.99998769207046633855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005455417667690,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-5.3662915670950717128,-0.0107400390736730189,0.00000000000000000000,1.00000000000000000000,-0.0003322156226599957,0.00165543136278176509,0.99999857458887575489,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008729545788810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-1.7887639640942578633,-0.0120574697248357568,0.00000000000000000000,1.00000000000000000000,-0.0001107383900940133,0.00165624250689649248,0.99999862229793456958,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000856555288919,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,1.78876396409425741929,-0.0120574697248357568,0.00000000000000000000,1.00000000000000000000,0.00011073839009401330,0.00165624250689649248,0.99999862229793456958,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000856555288919,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,5.36629156709507171285,-0.0107400390736730189,0.00000000000000000000,1.00000000000000000000,0.00033221562265999579,0.00165543136278176509,0.99999857458887575489,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008729545788810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-5.3648740126445080278,-0.0095215269172568509,0.00000000000000000000,1.00000000000000000000,-0.0003339409603235738,-0.0016632660373021757,0.99999856101372663896,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008981382034107,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,-1.7882914408036891806,-0.0108106189822164168,0.00000000000000000000,1.00000000000000000000,-0.0001113135019372191,-0.0016624490408229330,0.99999861193528216674,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001112596073653,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,1.78829144080368873659,-0.0108106189822164168,0.00000000000000000000,1.00000000000000000000,0.00011131350193721909,-0.0016624490408229330,0.99999861193528216674,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001112596073653,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,5.36487401264450802784,-0.0095215269172568509,0.00000000000000000000,1.00000000000000000000,0.00033394096032357382,-0.0016632660373021757,0.99999856101372663896,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008981382034107,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,-5.3635084652305300423,-0.1020911435019623836,0.00000000000000000000,1.00000000000000000000,-0.0003356749640688047,-0.0050062701380619968,0.99998741221158538028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012370468248263,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-1.7878362530951126263,-0.1033513574325301831,0.00000000000000000000,1.00000000000000000000,-0.0001118915024535652,-0.0050054471345379334,0.99998746641109204080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004504022945184,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,1.78783625309511218226,-0.1033513574325301831,0.00000000000000000000,1.00000000000000000000,0.00011189150245356524,-0.0050054471345379334,0.99998746641109204080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004504022945184,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,5.36350846523053004233,-0.1020911435019623836,0.00000000000000000000,1.00000000000000000000,0.00033567496406880476,-0.0050062701380619968,0.99998741221158538028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012370468248263,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-5.3677600809741425891,-0.1037555071836690490,0.00000000000000000000,1.00000000000000000000,-0.0003304987204876499,0.00495040181984041007,0.99998769207046633855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005455417667690,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-1.7892534737683509771,-0.1051007603238170440,0.00000000000000000000,1.00000000000000000000,-0.0001101660900613439,0.00495120725984135763,0.99998773662985618315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997576432160713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,1.78925347376835031099,-0.1051007603238170440,0.00000000000000000000,1.00000000000000000000,0.00011016609006134393,0.00495120725984135763,0.99998773662985618315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997576432160713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,5.36776008097414258912,-0.1037555071836690490,0.00000000000000000000,1.00000000000000000000,0.00033049872048764998,0.00495040181984041007,0.99998769207046633855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005455417667690,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/ellipsoid_ip_200mirrormis.rayui.csv b/Intern/RayCore/tests/output/ellipsoid_ip_200mirrormis.rayui.csv new file mode 100644 index 000000000..af0e437e7 --- /dev/null +++ b/Intern/RayCore/tests/output/ellipsoid_ip_200mirrormis.rayui.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.9997068881918810268,-6.5098105428975996389,0.00000000000000000000,-1.0000000000000000000,0.00411371158906159023,-0.0054972188147996399,0.99997642870332903441,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014058800000000,-0.6583254576978559979,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-0.9777654434418360240,-6.5381739454329297345,0.00000000000000000000,-1.0000000000000000000,0.00334682148727753021,-0.0055070067493845900,0.99997923561571699924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006992840,-0.0000000409673000000,-0.6580852568138200187,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,-0.9557608929531899999,-6.5664852450528297111,0.00000000000000000000,-1.0000000000000000000,0.00257986754533321002,-0.0055205826498128697,0.99998143355297097745,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014060500000000,-0.6578620369189139838,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,-0.9336932501948730367,-6.5947444929580703032,0.00000000000000000000,-1.0000000000000000000,0.00181287847324791999,-0.0055379476909004398,0.99998302215938394965,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013651799999999,-0.6576557897992639789,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-0.9115625281495229881,-6.6229517409446803100,0.00000000000000000000,-1.0000000000000000000,0.00104588299934056010,-0.0055591027650749901,0.99998400112461804933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006990070,-0.0000000409590000000,-0.6574665071478880129,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-0.8893687393064779733,-6.6511070413984203497,0.00000000000000000000,-1.0000000000000000000,0.00027890986666828301,-0.0055840484820936500,0.99998437018377295260,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013654000000000,-0.6572941805436589568,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,-0.8671118956545950107,-6.6792104472888995658,0.00000000000000000000,-1.0000000000000000000,-0.0004880121705398009,-0.0056127851688049798,0.99998412911744305464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6571388014796180065,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,-0.8447920086749960422,-6.7072620121639596746,0.00000000000000000000,-1.0000000000000000000,-0.0012548543504533600,-0.0056453128689600796,0.99998327775176898413,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013656500000000,-0.6570003613460360103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-0.8224090893343669605,-6.7352617901429603364,0.00000000000000000000,-1.0000000000000000000,-0.0020215879072153501,-0.0056816313430884095,0.99998181595847801528,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013657799999999,-0.6568788514282459800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-0.7999631480778679470,-6.7632098359123400399,0.00000000000000000000,-1.0000000000000000000,-0.0027881840745185302,-0.0057217400684153596,0.99997974365491804071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6567742629227949491,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,-0.7774541948222789544,-6.7911062047179804324,0.00000000000000000000,-1.0000000000000000000,-0.0035546140891839998,-0.0057656382388344695,0.99997706080408499396,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013660699999999,-0.6566865869324369775,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,-0.7548822389495060125,-6.8189509523596196771,0.00000000000000000000,-1.0000000000000000000,-0.0043208491947402203,-0.0058133247649412300,0.99997376741463295246,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013662299999999,-0.6566158144585190203,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-0.7322472892997939908,-6.8467441351853803865,0.00000000000000000000,-1.0000000000000000000,-0.0050868606450017598,-0.0058647982741106803,0.99996986354088801540,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013663900000000,-0.6565619364074559705,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-0.7095493541651749502,-6.8744858100833203806,0.00000000000000000000,-1.0000000000000000000,-0.0058526197076468697,-0.0059200571106273703,0.99996534928284697141,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014074900000000,-0.6565249436038129715,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,-1.0277416608720399970,-6.5280166896232003637,0.00000000000000000000,-1.0000000000000000000,0.00406457661773941027,-0.0062947080016805302,0.99997192754001495984,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013679300000000,-0.6583341614956450538,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,-1.0057658329793799367,-6.5564495673455400748,0.00000000000000000000,-1.0000000000000000000,0.00330150776366109005,-0.0063047062724147003,0.99997467504197601328,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013680099999999,-0.6580718099246499752,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-0.9837269008572190331,-6.5848304614357804354,0.00000000000000000000,-1.0000000000000000000,0.00253837703031753979,-0.0063184643449757400,0.99997681655645098697,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006962830,-0.0000000408795000000,-0.6578264188827920300,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-0.9616248771563320474,-6.6131594230284003188,0.00000000000000000000,-1.0000000000000000000,0.00177521284737777989,-0.0063359833702795699,0.99997835173271498732,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014090800000000,-0.6575979801409630454,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,-0.9394597740431029908,-6.6414365038438596400,0.00000000000000000000,-1.0000000000000000000,0.00101204366244869010,-0.0063572642203135196,0.99997928026497595599,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013683099999999,-0.6573864853669419971,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,-0.9172316031922670420,-6.6696617561816298191,0.00000000000000000000,-1.0000000000000000000,0.00024889793756609500,-0.0063823074878477902,0.99997960189243195738,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014092899999999,-0.6571919261506310450,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +20 ,0 ,-0.8949403757799250236,-6.6978352329172103907,0.00000000000000000000,-1.0000000000000000000,-0.0005141958543196890,-0.0064111134862067696,0.99997931639934001246,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014094100000000,-0.6570142939626749667,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +21 ,0 ,-0.8725861024767079809,-6.7259569874931504074,0.00000000000000000000,-1.0000000000000000000,-0.0012772092328629299,-0.0064436822490897003,0.99997842361505395736,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013686699999999,-0.6568535801766299808,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +22 ,0 ,-0.8501687934407109459,-6.7540270739167196367,0.00000000000000000000,-1.0000000000000000000,-0.0020401137138443899,-0.0064800135304395297,0.99997692341407495852,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013687999999999,-0.6567097760837440345,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +23 ,0 ,-0.8276884583109800352,-6.7820455467506297608,0.00000000000000000000,-1.0000000000000000000,-0.0028028808126959597,-0.0065201068043718697,0.99997481571608104466,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013689399999999,-0.6565828728712399531,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +24 ,0 ,-0.8051451062007020098,-6.8100124611089398740,0.00000000000000000000,-1.0000000000000000000,-0.0035654820480269101,-0.0065639612651491301,0.99997210048594598053,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006953470,-0.0000000408515000000,-0.6564728616292540008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +25 ,0 ,-0.7825387456905550376,-6.8379278726500896112,0.00000000000000000000,-1.0000000000000000000,-0.0043278889451505899,-0.0066115758272058400,0.99996877773376502407,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013692500000000,-0.6563797333654970422,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +26 ,0 ,-0.7598693848222309865,-6.8657918375716002756,0.00000000000000000000,-1.0000000000000000000,-0.0050900730396107795,-0.0066629491252311297,0.99996484751485503750,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013694200000000,-0.6563034789755870512,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +27 ,0 ,-0.7371370310922850110,-6.8936044126021798206,0.00000000000000000000,-1.0000000000000000000,-0.0058520058807072297,-0.0067180795143063597,0.99996030992975504236,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6562440892822679616,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +28 ,0 ,-1.0558466178684200453,-6.5462955950300196761,0.00000000000000000000,-1.0000000000000000000,0.00401577588793356008,-0.0070883489654358601,0.99996681387582198041,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014117400000000,-0.6583265683799479628,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +29 ,0 ,-1.0338363065487599090,-6.5747979767704398668,0.00000000000000000000,-1.0000000000000000000,0.00325650063581291995,-0.0070985549209994797,0.99996950239576998242,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013710300000000,-0.6580420606404689953,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +30 ,0 ,-1.0117628923374200056,-6.6032484932165802504,0.00000000000000000000,-1.0000000000000000000,0.00249716543540193019,-0.0071124927881436898,0.99997158790193996225,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014119100000000,-0.6577744930303880410,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +31 ,0 ,-0.9896263870780670490,-6.6316471954348497064,0.00000000000000000000,-1.0000000000000000000,0.00173779843939851998,-0.0071301636943086298,0.99997307004852697964,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013712200000000,-0.6575238573127539787,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +32 ,0 ,-0.9674268021315040044,-6.6599941350679703333,0.00000000000000000000,-1.0000000000000000000,0.00097842781808442510,-0.0071515684914035797,0.99997394853421994742,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013713200000000,-0.6572901451412459516,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +33 ,0 ,-0.9451641483687269751,-6.6882893643304397457,0.00000000000000000000,-1.0000000000000000000,0.00021908175586688900,-0.0071767077555316399,0.99997422310226402597,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013714399999999,-0.6570733480853050423,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +34 ,0 ,-0.9228384361640239452,-6.7165329360010197490,0.00000000000000000000,-1.0000000000000000000,-0.0005402115521848270,-0.0072055817867613903,0.99997389354052301779,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6568734576131870506,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +35 ,0 ,-0.9004496753882389459,-6.7447249034189198368,0.00000000000000000000,-1.0000000000000000000,-0.0012994239038070199,-0.0072381906089553100,0.99997295968152399847,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006928660,-0.0000000407787000000,-0.6566904650957210431,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +36 ,0 ,-0.8779978754018610276,-6.7728653204759998729,0.00000000000000000000,-1.0000000000000000000,-0.0020585270930123999,-0.0072745339696381203,0.99997142140249795083,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6565243618019850346,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +37 ,0 ,-0.8554830450485919612,-6.8009542416129402653,0.00000000000000000000,-1.0000000000000000000,-0.0028174929135635000,-0.0073146113399313299,0.99996927862541296061,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014127300000000,-0.6563751389180649820,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +38 ,0 ,-0.8329051926487389678,-6.8289917218110298691,0.00000000000000000000,-1.0000000000000000000,-0.0035762931624474698,-0.0073584219145274602,0.99996653131699597683,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014128799999999,-0.6562427875359160278,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +39 ,0 ,-0.8102643259926060048,-6.8569778165879800013,0.00000000000000000000,-1.0000000000000000000,-0.0043348996433512799,-0.0074059646117164397,0.99996317948875101944,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006922930,-0.0000000407622000000,-0.6561272986475610302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +40 ,0 ,-0.7875604523343250340,-6.8849125819908101320,0.00000000000000000000,-1.0000000000000000000,-0.0050932841701370398,-0.0074572380734710397,0.99995922319696495250,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014131900000000,-0.6560286631615780406,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +41 ,0 ,-0.7647935783854169500,-6.9127960745893499705,0.00000000000000000000,-1.0000000000000000000,-0.0058514185703157396,-0.0075122406655730401,0.99995466254270604089,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013726100000000,-0.6559468718937749853,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +42 ,0 ,-1.0840217461184400438,-6.5646471849007097532,0.00000000000000000000,-1.0000000000000000000,0.00396730615576122973,-0.0078781688762888397,0.99996109671177901834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6583026359421639828,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +43 ,0 ,-1.0619768520779999665,-6.5932190992512396121,0.00000000000000000000,-1.0000000000000000000,0.00321179712247974006,-0.0078885799004742001,0.99996372667532196221,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006906280,-0.0000000407128000000,-0.6579959665720029882,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +44 ,0 ,-1.0398688563152600483,-6.6217392657100901942,0.00000000000000000000,-1.0000000000000000000,0.00245623004243695998,-0.0079026952164919506,0.99996575658484099236,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014148400000000,-0.6577062169949390302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +45 ,0 ,-1.0176977698773699287,-6.6502077352750603722,0.00000000000000000000,-1.0000000000000000000,0.00170063279469100992,-0.0079205159287141207,0.99996718609938495259,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006904200,-0.0000000407075000000,-0.6574333789599220434,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +46 ,0 ,-0.9954636033303100317,-6.6786245595112498918,0.00000000000000000000,-1.0000000000000000000,0.00094503327553647001,-0.0079420428693359208,0.99996801492206199846,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013743300000000,-0.6571774441150639578,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +47 ,0 ,-0.9731663667519599991,-6.7069897905453403907,0.00000000000000000000,-1.0000000000000000000,0.00018945939509606600,-0.0079672765981019192,0.99996824280011398222,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013744500000000,-0.6569384040120670453,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +48 ,0 ,-0.9508060697255320548,-6.7353034810606597915,0.00000000000000000000,-1.0000000000000000000,-0.0005660609260926549,-0.0079962174020904407,0.99996786952495997358,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6567162501095249460,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +49 ,0 ,-0.9283827213326489857,-6.7635656842904001706,0.00000000000000000000,-1.0000000000000000000,-0.0013214997604944899,-0.0080288652955346501,0.99996689493225199285,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006900040,-0.0000000406943000000,-0.6565109737709919901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +50 ,0 ,-0.9058963301469380446,-6.7917764540128997552,0.00000000000000000000,-1.0000000000000000000,-0.0020768291769972298,-0.0080652200197080508,0.99996531890191198144,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6563225662630429724,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +51 ,0 ,-0.8833469042274419980,-6.8199358445447799681,0.00000000000000000000,-1.0000000000000000000,-0.0028320212443345201,-0.0081052810428499100,0.99996314135816399826,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014156600000000,-0.6561510187669910010,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +52 ,0 ,-0.8607344511121469698,-6.8480439107357700123,0.00000000000000000000,-1.0000000000000000000,-0.0035870480345100001,-0.0081490475601448397,0.99996036226955598014,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014158099999999,-0.6559963223616019911,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +53 ,0 ,-0.8380589778118180399,-6.8761007079620597437,0.00000000000000000000,-1.0000000000000000000,-0.0043418816262224303,-0.0081965184937561903,0.99995698164897295345,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013752899999999,-0.6558584680440160408,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +54 ,0 ,-0.8153204908033789832,-6.9041062921213303127,0.00000000000000000000,-1.0000000000000000000,-0.0050964941082899698,-0.0082476924928973592,0.99995299955365202215,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6557374467105320237,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +55 ,0 ,-0.7925189960242380315,-6.9320607196238297476,0.00000000000000000000,-1.0000000000000000000,-0.0058508575830737803,-0.0083025679339722695,0.99994841608517204267,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013756299999999,-0.6556332491793459560,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +56 ,0 ,-1.1122670327040400373,-6.5830713859590996861,0.00000000000000000000,-1.0000000000000000000,0.00391916421544795997,-0.0086641946571961395,0.99995478491919598251,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013769600000000,-0.6582623222894879999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +57 ,0 ,-1.0901874576277699180,-6.6117128612750901694,0.00000000000000000000,-1.0000000000000000000,0.00316739427744232001,-0.0086748081683877299,0.99995735674914298929,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014176700000000,-0.6579334858309949796,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +58 ,0 ,-1.0680447818327600817,-6.6403027051790903811,0.00000000000000000000,-1.0000000000000000000,0.00241556816522480984,-0.0086890986189301407,0.99995933147085003245,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013771399999999,-0.6576215488948949916,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +59 ,0 ,-1.0458390155802099741,-6.6688409685988201403,0.00000000000000000000,-1.0000000000000000000,0.00166371348749745997,-0.0087070670905319298,0.99996070874815501383,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014178599999999,-0.6573265032168359445,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +60 ,0 ,-1.0235701686516800457,-6.6973277030203899329,0.00000000000000000000,-1.0000000000000000000,0.00091185786985804699,-0.0087287143960247393,0.99996148828853304024,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014179599999999,-0.6570483404340170530,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +61 ,0 ,-1.0012382503425401036,-6.7257629604828998992,0.00000000000000000000,-1.0000000000000000000,0.00016002895144105999,-0.0087540410791038195,0.99996166984316003922,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6567870520839279580,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +62 ,0 ,-0.9788432694552909874,-6.7541467935726799964,0.00000000000000000000,-1.0000000000000000000,-0.0005917456184463830,-0.0087830474141091206,0.99996125320696505056,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013775800000000,-0.6565426296201619660,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +63 ,0 ,-0.9563852342930250216,-6.7824792554170203473,0.00000000000000000000,-1.0000000000000000000,-0.0013434381836921499,-0.0088157334058583895,0.99996023821868196268,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6563150643999049460,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +64 ,0 ,-0.9338641526529409819,-6.8107603996802801304,0.00000000000000000000,-1.0000000000000000000,-0.0020950210847502002,-0.0088520987895307507,0.99995862476088204218,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013778400000000,-0.6561043476764329973,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +65 ,0 ,-0.9112800318198940319,-6.8389902805547801989,0.00000000000000000000,-1.0000000000000000000,-0.0028464666620138701,-0.0088921430305930991,0.99995641276000901687,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013779899999999,-0.6559104706252579797,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +66 ,0 ,-0.8886328785602100044,-6.8671689527586403656,0.00000000000000000000,-1.0000000000000000000,-0.0035977472591904400,-0.0089358653247884091,0.99995360218639994798,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006867420,-0.0000000405983000000,-0.6557334243234439474,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +67 ,0 ,-0.8659226991152959573,-6.8952964715271001239,0.00000000000000000000,-1.0000000000000000000,-0.0043488352266764698,-0.0089832645981581804,0.99995019305429999612,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013783000000000,-0.6555731997664220322,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +68 ,0 ,-0.8431494991956669515,-6.9233728926075803755,0.00000000000000000000,-1.0000000000000000000,-0.0050997029249324598,-0.0090343395071281196,0.99994618542186897158,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006864470,-0.0000000405893000000,-0.6554297878490159545,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +69 ,0 ,-0.8203132839747410143,-6.9513982722518301571,0.00000000000000000000,-1.0000000000000000000,-0.0058503227278568900,-0.0090890884386307102,0.99994157939118399891,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014192200000000,-0.6553031793904440238,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +70 ,0 ,-1.1405824648497699946,-6.6015681258585896529,0.00000000000000000000,-1.0000000000000000000,0.00387134689879729994,-0.0094464529865681007,0.99994788724171101979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006850250,-0.0000000405477000000,-0.6582055859802270481,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +71 ,0 ,-1.1184681113896399740,-6.6302791902624500508,0.00000000000000000000,-1.0000000000000000000,0.00312328918902758006,-0.0094572664372286098,0.99995040135807600201,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013800500000000,-0.6578545769951920085,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +72 ,0 ,-1.0962906580510400900,-6.6589387388208995943,0.00000000000000000000,-1.0000000000000000000,0.00237517714907407992,-0.0094717297388389205,0.99995232129800404319,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013801399999999,-0.6575204473269880001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +73 ,0 ,-1.0740501143196399258,-6.6875468223920098154,0.00000000000000000000,-1.0000000000000000000,0.00162703812051942010,-0.0094898439508405204,0.99995364673005904254,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014207800000000,-0.6572031886893230367,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +74 ,0 ,-1.0517464892029300127,-6.7161034923820697173,0.00000000000000000000,-1.0000000000000000000,0.00087889946150812104,-0.0095116098670506299,0.99995437736602399425,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014208799999999,-0.6569027927185969728,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +75 ,0 ,-1.0293797912241200442,-6.7446088007415498921,0.00000000000000000000,-1.0000000000000000000,0.00013078854343548301,-0.0095370280154135102,0.99995451296096005133,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014210000000000,-0.6566192509401389543,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +76 ,0 ,-1.0069500284154200286,-6.7730627999584500642,0.00000000000000000000,-1.0000000000000000000,-0.0006172672523675429,-0.0095660986577845701,0.99995405331325504239,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013805800000000,-0.6563525547931019499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +77 ,0 ,-0.9844572083117090199,-6.8014655430550501336,0.00000000000000000000,-1.0000000000000000000,-0.0013652405379536900,-0.0095988217897695592,0.99995299826467998194,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013807100000000,-0.6561026956270550325,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +78 ,0 ,-0.9619013379440519706,-6.8298170835797495925,0.00000000000000000000,-1.0000000000000000000,-0.0021131039220815698,-0.0096351971406067292,0.99995134770041504967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006842100,-0.0000000405230000000,-0.6558696646975480382,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +79 ,0 ,-0.9392824238335729658,-6.8581174756021097138,0.00000000000000000000,-1.0000000000000000000,-0.0028608300135401902,-0.0096752241731033992,0.99994910154909100175,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013809999999999,-0.6556534531700890511,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +80 ,0 ,-0.9166004719850899817,-6.8863667737075902053,0.00000000000000000000,-1.0000000000000000000,-0.0036083914244748800,-0.0097189020836148092,0.99994625978280304856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006839150,-0.0000000405148000000,-0.6554540521141229980,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +81 ,0 ,-0.8938554878811849624,-6.9145650329900396613,0.00000000000000000000,-1.0000000000000000000,-0.0043557607737135699,-0.0097662298020774803,0.99994282241712995062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006837760,-0.0000000405104000000,-0.6552714525265630474,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +82 ,0 ,-0.8710474764760980370,-6.9427123090478799483,0.00000000000000000000,-1.0000000000000000000,-0.0051029106900929302,-0.0098172059920893506,0.99993878951113701614,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014219799999999,-0.6551056452998410550,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +83 ,0 ,-0.8481764421897239891,-6.9708086579752803757,0.00000000000000000000,-1.0000000000000000000,-0.0058498138157830796,-0.0098718290510321198,0.99993416116737798837,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006834460,-0.0000000405010000000,-0.6549566212473789672,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +84 ,0 ,-1.1689680299207099167,-6.6201373331706099278,0.00000000000000000000,-1.0000000000000000000,0.00382385107466899978,-0.0102249703009429007,0.99994041229730501463,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013829600000000,-0.6581323860706329575,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +85 ,0 ,-1.1468188016838800624,-6.6489180145529696019,0.00000000000000000000,-1.0000000000000000000,0.00307947897962932001,-0.0102359811771024003,0.99994286911730900779,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6577591991225519851,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +86 ,0 ,-1.1246064742483901088,-6.6776472947569196492,0.00000000000000000000,-1.0000000000000000000,0.00233505437036233979,-0.0102506150767586005,0.99994473467869005034,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013831399999999,-0.6574028713516779642,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +87 ,0 ,-1.1023310563342099133,-6.7063252245680402552,0.00000000000000000000,-1.0000000000000000000,0.00159060432452249006,-0.0102688730374652995,0.99994600865467897499,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006819720,-0.0000000404569000000,-0.6570633944600100528,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +88 ,0 ,-1.0799925561852199429,-6.7349518553123504105,0.00000000000000000000,-1.0000000000000000000,0.00084615593599809697,-0.0102907558343711992,0.99994669076130704432,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014238000000000,-0.6567407600584830307,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +89 ,0 ,-1.0575909815625199605,-6.7635272388501803675,0.00000000000000000000,-1.0000000000000000000,0.00010173631164840500,-0.0103162639799608997,0.99994678075746501466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6564349596761760441,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +90 ,0 ,-1.0351263397383398956,-6.7920514275729502173,0.00000000000000000000,-1.0000000000000000000,-0.0006426274319642480,-0.0103453977238555996,0.99994627844495698187,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013835899999999,-0.6561459847381460042,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +91 ,0 ,-1.0125986374894400121,-6.8205244743948298946,0.00000000000000000000,-1.0000000000000000000,-0.0013869081718454799,-0.0103781570526456003,0.99994518366854201474,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6558738265871399963,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +92 ,0 ,-0.9900078810910319937,-6.8489464327497699969,0.00000000000000000000,-1.0000000000000000000,-0.0021310787818435601,-0.0104145416897843002,0.99994349631597501115,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013838500000000,-0.6556184764702950307,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +93 ,0 ,-0.9673540763105910045,-6.8773173565833003451,0.00000000000000000000,-1.0000000000000000000,-0.0028751121359259302,-0.0104545510955211997,0.99994121631803800642,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013840000000000,-0.6553799255491410402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +94 ,0 ,-0.9446372284017829912,-6.9056373003487898643,0.00000000000000000000,-1.0000000000000000000,-0.0036189811114569199,-0.0104981844668870002,0.99993834364855405105,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013841499999999,-0.6551581648959650117,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +95 ,0 ,-0.9218573420984189636,-6.9339063189992904412,0.00000000000000000000,-1.0000000000000000000,-0.0043626585924761299,-0.0105454407377222995,0.99993487832440997031,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013843100000000,-0.6549531854902850280,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +96 ,0 ,-0.8990144216085820261,-6.9621244679835498914,0.00000000000000000000,-1.0000000000000000000,-0.0051061174729766104,-0.0105963185787583992,0.99993082040555703038,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014248999999999,-0.6547649782372669813,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +97 ,0 ,-0.8761084706088709816,-6.9902918032384295798,0.00000000000000000000,-1.0000000000000000000,-0.0058493306601815403,-0.0106508163977453006,0.99992616999501005015,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014250699999999,-0.6545935339453310408,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +98 ,0 ,-1.1974237154201499144,-6.6387789373723400387,0.00000000000000000000,-1.0000000000000000000,0.00377667364846629013,-0.0109997727976267004,0.99993236858027301217,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006794390,-0.0000000403821000000,-0.6580426820592040204,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +99 ,0 ,-1.1752395169578500055,-6.6676292633964804323,0.00000000000000000000,-1.0000000000000000000,0.00303596080523571001,-0.0110109786183927998,0.99993476851835394469,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013860399999999,-0.6576473117431760329,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +100 ,0 ,-1.1529922198183799597,-6.6964283020193899886,0.00000000000000000000,-1.0000000000000000000,0.00229519723610545995,-0.0110257808930460006,0.99993658010163100069,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013861299999999,-0.6572687805137320538,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +101 ,0 ,-1.1306818319663500815,-6.7251761039528199503,0.00000000000000000000,-1.0000000000000000000,0.00155440975794706999,-0.0110441806376391001,0.99993780300794099513,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6569070800718459501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +102 ,0 ,-1.1083083608918899987,-6.7538727204420903049,0.00000000000000000000,-1.0000000000000000000,0.00081362520354462798,-0.0110661786089847995,0.99993843695750694866,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006790750,-0.0000000403713000000,-0.6565622020182220186,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +103 ,0 ,-1.0858718136041700663,-6.7825182032569601986,0.00000000000000000000,-1.0000000000000000000,0.00007287041837871200,-0.0110917753043981003,0.99993848171299903881,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014268300000000,-0.6562341378657949864,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +104 ,0 ,-1.0633721966253699697,-6.8111126046903898156,0.00000000000000000000,-1.0000000000000000000,-0.0006678277425946419,-0.0111209709615057005,0.99993793707958700256,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013865800000000,-0.6559228790389399765,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +105 ,0 ,-1.0408095159842600807,-6.8396559775492900001,0.00000000000000000000,-1.0000000000000000000,-0.0014084424181680099,-0.0111537655580806992,0.99993680290497799489,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006787280,-0.0000000403611000000,-0.6556284168688080171,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +106 ,0 ,-1.0181837772102699801,-6.8681483751526002379,0.00000000000000000000,-1.0000000000000000000,-0.0021489467441101598,-0.0111901588119421007,0.99993507907946399537,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013868499999999,-0.6553507425943509989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +107 ,0 ,-0.9954949853271849447,-6.8965898513216101761,0.00000000000000000000,-1.0000000000000000000,-0.0028893138563951198,-0.0112301501808824994,0.99993276553594001576,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013870000000000,-0.6550898473781220365,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +108 ,0 ,-0.9727431448475220010,-6.9249804603767000088,0.00000000000000000000,-1.0000000000000000000,-0.0036295168944332802,-0.0112737388626639994,0.99992986224993296584,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014275000000000,-0.6548457222880870176,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +109 ,0 ,-0.9499282597663919469,-6.9533202571311596429,0.00000000000000000000,-1.0000000000000000000,-0.0043695290043021303,-0.0113209237950431997,0.99992636923960898087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006781900,-0.0000000403447000000,-0.6546183583011500051,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +110 ,0 ,-0.9270503335557439550,-6.9816092968842902166,0.00000000000000000000,-1.0000000000000000000,-0.0051093233419772796,-0.0113717036558493005,0.99992228656578696632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006780170,-0.0000000403402000000,-0.6544077463156550145,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +111 ,0 ,-0.9041093691588160119,-7.0098476354161798340,0.00000000000000000000,-1.0000000000000000000,-0.0058488730765619799,-0.0114260768631160008,0.99991761433192705155,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013876499999999,-0.6542138771435479505,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +112 ,0 ,-1.2259495089876699669,-6.6574928688339900517,0.00000000000000000000,-1.0000000000000000000,0.00372981156163035981,-0.0117708864373041992,0.99992376446316899585,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013889400000000,-0.6579364339231690284,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +113 ,0 ,-1.2037302457836200897,-6.6864128669389897297,0.00000000000000000000,-1.0000000000000000000,0.00299273185496552003,-0.0117822847543657995,0.99992610793098701815,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014293300000000,-0.6575188748281559636,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +114 ,0 ,-1.1814478842683100445,-6.7152816905400598557,0.00000000000000000000,-1.0000000000000000000,0.00225560318353395985,-0.0117972532105024008,0.99992786593382099180,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013891299999999,-0.6571181348043639847,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +115 ,0 ,-1.1591024316607700939,-6.7440993902755996813,0.00000000000000000000,-1.0000000000000000000,0.00151845210652558999,-0.0118157928006383996,0.99992903815405498324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6567342055360539943,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +116 ,0 ,-1.1366938947072700027,-6.7728660173074697326,0.00000000000000000000,-1.0000000000000000000,0.00078130519872763801,-0.0118379042635751996,0.99992962431604803796,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6563670786147209890,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +117 ,0 ,-1.1142222796749901014,-6.8015816233163404191,0.00000000000000000000,-1.0000000000000000000,0.00004418904735444110,-0.0118635880817461996,0.99992962418620001674,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014297400000000,-0.6560167455461399788,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +118 ,0 ,-1.0916875923459901098,-6.8302462604945297641,0.00000000000000000000,-1.0000000000000000000,-0.0006928697511268840,-0.0118928444810198000,0.99992903757299600453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006761080,-0.0000000402825000000,-0.6556831977427459712,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +119 ,0 ,-1.0690898380109199461,-6.8588599815427802042,0.00000000000000000000,-1.0000000000000000000,-0.0014298445941747100,-0.0119256734305450001,0.99992786432705504928,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013897100000000,-0.6553664265287579837,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +120 ,0 ,-1.0464290214631799535,-6.8874228396626602233,0.00000000000000000000,-1.0000000000000000000,-0.0021667088763539701,-0.0119620746426472995,0.99992610434116002693,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013898499999999,-0.6550664231521069469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +121 ,0 ,-1.0237051469930300573,-6.9159348885525595562,0.00000000000000000000,-1.0000000000000000000,-0.0029034359925190498,-0.0120020475727721995,0.99992375755029394568,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013899899999999,-0.6547831787481750431,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +122 ,0 ,-1.0009182183815299449,-6.9443961824004496463,0.00000000000000000000,-1.0000000000000000000,-0.0036399993409981699,-0.0120455914194633004,0.99992082393165204745,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014304099999999,-0.6545166843900459552,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +123 ,0 ,-0.9780682388949649697,-6.9728067758784701979,0.00000000000000000000,-1.0000000000000000000,-0.0043763723267780602,-0.0120927051244013004,0.99991730350466101473,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013903099999999,-0.6542669310553039796,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +124 ,0 ,-0.9551552112790240300,-7.0011667241380504123,0.00000000000000000000,-1.0000000000000000000,-0.0051125283646882698,-0.0121433873724797001,0.99991319633098296737,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013904700000000,-0.6540339096407019603,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +125 ,0 ,-0.9321791377534019984,-7.0294760828015796505,0.00000000000000000000,-1.0000000000000000000,-0.0058484408825845097,-0.0121976365919313003,0.99990850251451202090,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013906499999999,-0.6538176109640969624,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +126 ,0 ,-1.2545453983973200440,-6.6762790588093201549,0.00000000000000000000,-1.0000000000000000000,0.00368326179114332984,-0.0125383369466217000,0.99991460819871602616,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014321499999999,-0.6578136020680179774,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +127 ,0 ,-1.2322909768568199861,-6.7052687562118098441,0.00000000000000000000,-1.0000000000000000000,0.00294978935061000020,-0.0125499253437734992,0.99991689560515695234,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013920200000000,-0.6573738488094700294,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +128 ,0 ,-1.2099734572176299440,-6.7342073911389901397,0.00000000000000000000,-1.0000000000000000000,0.00221626967967569017,-0.0125650578169715001,0.99991860042243596584,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6569508946586209985,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +129 ,0 ,-1.1875928459631599487,-6.7630950141549304177,0.00000000000000000000,-1.0000000000000000000,0.00148272908290561999,-0.0125837353403839991,0.99991972233742298925,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013922199999999,-0.6565447312993909489,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +130 ,0 ,-1.1651491491054000171,-6.7919316763380104262,0.00000000000000000000,-1.0000000000000000000,0.00074919388015357198,-0.0126059586351206995,0.99992026107856202266,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013923299999999,-0.6561553503158850109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +131 ,0 ,-1.1426423721794098931,-6.8207174292772103640,0.00000000000000000000,-1.0000000000000000000,0.00001569040343645340,-0.0126317281690117994,0.99992021641592798708,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013924499999999,-0.6557827431927309991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +132 ,0 ,-1.1200725202367700639,-6.8494523250660499513,0.00000000000000000000,-1.0000000000000000000,-0.0007177550061944740,-0.0126610441564003004,0.99991958816127901599,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006733330,-0.0000000402007000000,-0.6554269013379330210,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +133 ,0 ,-1.0974395978398299167,-6.8781364162968099407,0.00000000000000000000,-1.0000000000000000000,-0.0014511160017864699,-0.0126939065579990996,0.99991837616809797761,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013927000000000,-0.6550878160757069856,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +134 ,0 ,-1.0747436090557900278,-6.9067697560554597302,0.00000000000000000000,-1.0000000000000000000,-0.0021843662336206498,-0.0127303150807880991,0.99991658033163000052,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014330300000000,-0.6547654786390919579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +135 ,0 ,-1.0519845574508799312,-6.9353523979156097567,0.00000000000000000000,-1.0000000000000000000,-0.0029174793523495199,-0.0127702691779553994,0.99991420058890601030,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006729690,-0.0000000401894000000,-0.6544598801685880262,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +136 ,0 ,-1.0291624460846600097,-6.9638843959333103228,0.00000000000000000000,-1.0000000000000000000,-0.0036504290121356901,-0.0128137680488876002,0.99991123691876604429,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013931400000000,-0.6541710117309089689,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +137 ,0 ,-1.0062772775042099215,-6.9923658046399799204,0.00000000000000000000,-1.0000000000000000000,-0.0043831888737906601,-0.0128608106391952005,0.99990768934187101990,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014334800000000,-0.6538988643044379989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +138 ,0 ,-0.9833290537386569774,-7.0207966790381099997,0.00000000000000000000,-1.0000000000000000000,-0.0051157326079138299,-0.0129113956407971991,0.99990355792070795271,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013934700000000,-0.6536434287800150233,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +139 ,0 ,-0.9603177762938419625,-7.0491770745951596310,0.00000000000000000000,-1.0000000000000000000,-0.0058480338980297398,-0.0129655214920475006,0.99989884275958995640,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014338100000000,-0.6534046959729949977,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +140 ,0 ,-1.2832113715552300181,-6.6951374394233402753,0.00000000000000000000,-1.0000000000000000000,0.00363702134903943000,-0.0133021498207224996,0.99990490792167496802,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013949100000000,-0.6576741473670609794,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +141 ,0 ,-1.2609216989940998931,-6.7241968631205599749,0.00000000000000000000,-1.0000000000000000000,0.00290713054618408012,-0.0133139259133879007,0.99990713967286004582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006711300,-0.0000000401344000000,-0.6572121945598610182,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +142 ,0 ,-1.2385689283960299444,-6.7532053355131198557,0.00000000000000000000,-1.0000000000000000000,0.00217719422094568007,-0.0133292202678911998,0.99990879169670998649,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014352300000000,-0.6567670209760759769,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +143 ,0 ,-1.2161530655183099280,-6.7821629070889803969,0.00000000000000000000,-1.0000000000000000000,0.00144723842627914999,-0.0133480338380005999,0.99990986368452094978,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013952000000000,-0.6563386182731389961,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +144 ,0 ,-1.1936741156484600434,-6.8110696288437804213,0.00000000000000000000,-1.0000000000000000000,0.00071728923012484796,-0.0133703673274576991,0.99991035536876504696,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013953100000000,-0.6559269780243539571,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +145 ,0 ,-1.1711320835988099364,-6.8399255522734803136,0.00000000000000000000,-1.0000000000000000000,-0.0000126272876724511,-0.0133962211897557005,0.99991026652314496381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006707310,-0.0000000401228000000,-0.6555320917229889854,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +146 ,0 ,-1.1485269737001899681,-6.8687307293716797218,0.00000000000000000000,-1.0000000000000000000,-0.0007424850384475599,-0.0134255956279431994,0.99990959696264702927,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013955599999999,-0.6551539507629510206,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +147 ,0 ,-1.1258587897962799573,-6.8974852126222501169,0.00000000000000000000,-1.0000000000000000000,-0.0014722579278030598,-0.0134584905944829993,0.99990834654357796384,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014358000000000,-0.6547925464519720462,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +148 ,0 ,-1.1031275352375600196,-6.9261890549954499007,0.00000000000000000000,-1.0000000000000000000,-0.0022019198587000100,-0.0134949057911466999,0.99990651516360495865,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013958300000000,-0.6544478700268430149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +149 ,0 ,-1.0803332128759699504,-6.9548423099395799695,0.00000000000000000000,-1.0000000000000000000,-0.0029314447345504300,-0.0135348406689656999,0.99990410276177699167,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013959700000000,-0.6541199126265839769,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +150 ,0 ,-1.0574758250589799679,-6.9834450313792801878,0.00000000000000000000,-1.0000000000000000000,-0.0036608064623111801,-0.0135782944282157001,0.99990110931855002984,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013961300000000,-0.6538086653033590156,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +151 ,0 ,-1.0345553736241399622,-7.0119972737055897837,0.00000000000000000000,-1.0000000000000000000,-0.0043899789555780898,-0.0136252660184491992,0.99989753485579502267,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013962900000000,-0.6535141190404369915,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +152 ,0 ,-1.0115718598936200844,-7.0404990917725402965,0.00000000000000000000,-1.0000000000000000000,-0.0051189361376796499,-0.0136757541385753994,0.99989337943680800524,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013964600000000,-0.6532362647353689988,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +153 ,0 ,-0.9885252846687859751,-7.0689505408913202444,0.00000000000000000000,-1.0000000000000000000,-0.0058476519447697699,-0.0137297572369823005,0.99988864316630099438,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013966300000000,-0.6529750931979380057,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +154 ,0 ,-1.3119474164979401109,-6.7140679436608401431,0.00000000000000000000,-1.0000000000000000000,0.00359108728192329001,-0.0140623503257651001,0.99989467165069401133,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013978899999999,-0.6575180311147049705,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +155 ,0 ,-1.2896224011317700686,-6.7431971204334697489,0.00000000000000000000,-1.0000000000000000000,0.00286475272748301992,-0.0140743117605336993,0.99989684814998702755,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006684240,-0.0000000400535000000,-0.6570338733965850330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +156 ,0 ,-1.2672342876419500079,-6.7722754562239400044,0.00000000000000000000,-1.0000000000000000000,0.00213837433274231001,-0.0140897658888251998,0.99989844776977798712,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013980800000000,-0.6565664750683030126,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +157 ,0 ,-1.2447830810689899383,-6.8013030014441202553,0.00000000000000000000,-1.0000000000000000000,0.00141197790201768994,-0.0141087136443602007,0.99989947020573299862,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014382300000000,-0.6561158277863800014,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +158 ,0 ,-1.2222687859855601022,-6.8302798070046399914,0.00000000000000000000,-1.0000000000000000000,0.00068558925431354896,-0.0141311557138245995,0.99989991519429899380,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014383399999999,-0.6556819231079770160,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +159 ,0 ,-1.1996914064906900598,-6.8592059243092800002,0.00000000000000000000,-1.0000000000000000000,-0.0000407657797145340,-0.0141570925366433005,0.99989978251275801746,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6552647525074920542,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +160 ,0 ,-1.1770509462039000503,-6.8880814052508299027,0.00000000000000000000,-1.0000000000000000000,-0.0007670613608004320,-0.0141865243047935001,0.99989907197927696547,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014385799999999,-0.6548643073870149544,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +161 ,0 ,-1.1543474082595699403,-6.9169063022046799460,0.00000000000000000000,-1.0000000000000000000,-0.0014932716441114200,-0.0142194509626666996,0.99989778345294799688,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013986700000000,-0.6544805790479130136,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +162 ,0 ,-1.1315807953011201014,-6.9456806680238702966,0.00000000000000000000,-1.0000000000000000000,-0.0022193707822948799,-0.0142558722069682005,0.99989591683382195164,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013988099999999,-0.6541135587106059467,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +163 ,0 ,-1.1087511094754800566,-6.9744045560331100475,0.00000000000000000000,-1.0000000000000000000,-0.0029453329285266597,-0.0142957874866630006,0.99989347206293799352,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014389799999999,-0.6537632375147950369,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +164 ,0 ,-1.0858583524275200460,-7.0030780200241000699,0.00000000000000000000,-1.0000000000000000000,-0.0036711322395609298,-0.0143391960029676992,0.99989044912233704387,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014391300000000,-0.6534296065231049999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +165 ,0 ,-1.0629025252947299495,-7.0317011142480501106,0.00000000000000000000,-1.0000000000000000000,-0.0043967428787799398,-0.0143860967093845000,0.99988684803507998921,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014392900000000,-0.6531126566999320148,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +166 ,0 ,-1.0398836287016199886,-7.0602738934113897784,0.00000000000000000000,-1.0000000000000000000,-0.0051221390192438803,-0.0144364883117735001,0.99988266886524801435,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013994399999999,-0.6528123789476010241,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +167 ,0 ,-1.0168016627546700991,-7.0887964126690601318,0.00000000000000000000,-1.0000000000000000000,-0.0058472948467391296,-0.0144903692684821006,0.99987791171794504485,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6525287640790790044,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +168 ,0 ,-1.3407535213905299453,-6.7330705053568999929,0.00000000000000000000,-1.0000000000000000000,0.00354545667049625985,-0.0148189635014079005,0.99988390729011300539,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014008700000000,-0.6573452150330469923,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +169 ,0 ,-1.3183930723239600801,-6.7622694617710097375,0.00000000000000000000,-1.0000000000000000000,0.00282265321164688019,-0.0148311079555744993,0.99988602893812694727,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014009599999999,-0.6568388470557240399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +170 ,0 ,-1.2959695249009099971,-6.7914176866885300754,0.00000000000000000000,-1.0000000000000000000,0.00209980756904965979,-0.0148467197779593006,0.99988757654048698864,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006656650,-0.0000000399704000000,-0.6563492186980970366,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +171 ,0 ,-1.2734828834544800191,-6.8205152304437497434,0.00000000000000000000,-1.0000000000000000000,0.00137694530131283999,-0.0148657998825836006,0.99988854979717001203,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014411300000000,-0.6558763216023639763,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +172 ,0 ,-1.2509331518515800496,-6.8495621438610303499,0.00000000000000000000,-1.0000000000000000000,0.00065409198144092796,-0.0148883489393764004,0.99988894844854603327,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014012700000000,-0.6554201473256849874,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +173 ,0 ,-1.2283203334874199796,-6.8785584782516302482,0.00000000000000000000,-1.0000000000000000000,-0.0000687268061591213,-0.0149143673739601002,0.99988877227542705128,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006653530,-0.0000000399613000000,-0.6549806873347280289,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +174 ,0 ,-1.2056444312795600026,-6.9075042854076400544,0.00000000000000000000,-1.0000000000000000000,-0.0007914854686750559,-0.0149438553674620007,0.99988802109911800730,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014414799999999,-0.6545579330168039833,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +175 ,0 ,-1.1829054476623799274,-6.9363996175947200129,0.00000000000000000000,-1.0000000000000000000,-0.0015141584078902899,-0.0149768128563786996,0.99988669478145397739,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014016499999999,-0.6541518756700950287,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +176 ,0 ,-1.1601033845814299194,-6.9652445275493901633,0.00000000000000000000,-1.0000000000000000000,-0.0022367200231870098,-0.0150132395324806995,0.99988479322483903022,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014417399999999,-0.6537625065138850111,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +177 ,0 ,-1.1372382434880901058,-6.9940390684724302872,0.00000000000000000000,-1.0000000000000000000,-0.0029591447145515398,-0.0150531348427632005,0.99988231637226399062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006648500,-0.0000000399466000000,-0.6533898166831020315,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +178 ,0 ,-1.1143100253339699445,-7.0227832940223597901,0.00000000000000000000,-1.0000000000000000000,-0.0036814068855804101,-0.0150964979894326004,0.99987926420733297394,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014020900000000,-0.6530337972326379913,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +179 ,0 ,-1.0913187305655600578,-7.0514772583108102921,0.00000000000000000000,-1.0000000000000000000,-0.0044034809464869196,-0.0151433279299415992,0.99987563675427204579,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014421900000000,-0.6526944391359850161,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +180 ,0 ,-1.0682643591192100274,-7.0801210158968101993,0.00000000000000000000,-1.0000000000000000000,-0.0051253413171075297,-0.0151936233770717001,0.99987143407793099836,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006644340,-0.0000000399335000000,-0.6523717332850079708,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +181 ,0 ,-1.0451469104156299039,-7.1087146217797698710,0.00000000000000000000,-1.0000000000000000000,-0.0058469624299066396,-0.0152473827990456008,0.99986665628378801340,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014025999999999,-0.6520656705022249699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +182 ,0 ,-1.3696296745245999382,-6.7521450591835003862,0.00000000000000000000,-1.0000000000000000000,0.00350012662908992999,-0.0155720141632543999,0.99987262263174303544,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014038400000000,-0.6571556612702810218,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +183 ,0 ,-1.3472337017409499182,-6.7814138215950903187,0.00000000000000000000,-1.0000000000000000000,0.00278082934673155998,-0.0155843393443737994,0.99987468982635197001,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014438300000000,-0.6566270776966119937,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +184 ,0 ,-1.3247746302240799298,-6.8106319611671501945,0.00000000000000000000,-1.0000000000000000000,0.00206149151204626989,-0.0156001068085695991,0.99987618579517500982,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014040300000000,-0.6561152140338889493,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +185 ,0 ,-1.3022524636088399496,-6.8397995281560000080,0.00000000000000000000,-1.0000000000000000000,0.00134213844082329007,-0.0156193174505034997,0.99987711024244696478,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006629070,-0.0000000398874000000,-0.6556200619143059959,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +186 ,0 ,-1.2796672050657400543,-6.8689165733005097536,0.00000000000000000000,-1.0000000000000000000,0.00062279546296170704,-0.0156419719236535990,0.99987746291240697793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6551416128888829515,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +187 ,0 ,-1.2570188572951199734,-6.8979831478178299519,0.00000000000000000000,-1.0000000000000000000,-0.0000965120804802413,-0.0156680706400901988,0.99987724358935003987,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014442499999999,-0.6546798584163300294,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +188 ,0 ,-1.2343074225219099471,-6.9269993033978298768,0.00000000000000000000,-1.0000000000000000000,-0.0008157588402406450,-0.0156976137703094993,0.99987645209767495035,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014044900000000,-0.6542347898753180235,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +189 ,0 ,-1.2115329024896499543,-6.9559650921973403825,0.00000000000000000000,-1.0000000000000000000,-0.0015349194618116800,-0.0157306012430864991,0.99987508830192195485,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014046300000000,-0.6538063985622100116,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +190 ,0 ,-1.1886952984552598966,-6.9848805668366198418,0.00000000000000000000,-1.0000000000000000000,-0.0022539685884005299,-0.0157670327453917000,0.99987315210681004806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006623350,-0.0000000398705000000,-0.6533946756881050532,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +191 ,0 ,-1.1657946111836099412,-7.0137457803909599718,0.00000000000000000000,-1.0000000000000000000,-0.0029728808638918502,-0.0158069077223348015,0.99987064345725595870,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014447800000000,-0.6529996123867930490,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +192 ,0 ,-1.1428308409421599201,-7.0425607863869101876,0.00000000000000000000,-1.0000000000000000000,-0.0036916309358112999,-0.0158502253771608016,0.99986756233839702012,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014449299999999,-0.6526211997108930518,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +193 ,0 ,-1.1198039874958098938,-7.0713256387963001614,0.00000000000000000000,-1.0000000000000000000,-0.0044101934582894001,-0.0158969846712838994,0.99986390877560005208,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014450900000000,-0.6522594286345789749,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +194 ,0 ,-1.0967140501016199305,-7.1000403920308698957,0.00000000000000000000,-1.0000000000000000000,-0.0051285430950249698,-0.0159471843243634003,0.99985968283447002047,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014053999999999,-0.6519142900465340062,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +195 ,0 ,-1.0735610275037699157,-7.1287051009356696695,0.00000000000000000000,-1.0000000000000000000,-0.0058466545222475400,-0.0160008228144232003,0.99985488462084304295,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6515857747740479988,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +196 ,0 ,-0.9997068881918810268,-6.5098105428975996389,0.00000000000000000000,-1.0000000000000000000,0.00411371158906159023,-0.0054972188147996399,0.99997642870332903441,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014058800000000,-0.6583254576978559979,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +197 ,0 ,-0.9777654434418360240,-6.5381739454329297345,0.00000000000000000000,-1.0000000000000000000,0.00334682148727753021,-0.0055070067493845900,0.99997923561571699924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006992840,-0.0000000409673000000,-0.6580852568138200187,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +198 ,0 ,-0.9557608929531899999,-6.5664852450528297111,0.00000000000000000000,-1.0000000000000000000,0.00257986754533321002,-0.0055205826498128697,0.99998143355297097745,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014060500000000,-0.6578620369189139838,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +199 ,0 ,-0.9336932501948730367,-6.5947444929580703032,0.00000000000000000000,-1.0000000000000000000,0.00181287847324791999,-0.0055379476909004398,0.99998302215938394965,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013651799999999,-0.6576557897992639789,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/ellipsoid_ip_200mirrormis.rayx.csv b/Intern/RayCore/tests/output/ellipsoid_ip_200mirrormis.rayx.csv new file mode 100644 index 000000000..06a201721 --- /dev/null +++ b/Intern/RayCore/tests/output/ellipsoid_ip_200mirrormis.rayx.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.9997068881898432124,-6.5098105428959591733,0.00000000000000000000,1.00000000000000000000,0.00411371158906366669,-0.0054972188147983814,0.99997642870332903441,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3416745423019165,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-0.9777654434400729899,-6.5381739454316791793,0.00000000000000000000,1.00000000000000000000,0.00334682148727930483,-0.0055070067493835613,0.99997923561571733230,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3419147431814053,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,-0.9557608929516900886,-6.5664852450521582483,0.00000000000000000000,1.00000000000000000000,0.00257986754533472964,-0.0055205826498120986,0.99998143355297086642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3421379630763112,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,-0.9336932501935994999,-6.5947444929566971794,0.00000000000000000000,1.00000000000000000000,0.00181287847324920542,-0.0055379476908987909,0.99998302215938328352,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3423442101939144,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-0.9115625281485010278,-6.6229517409434413011,0.00000000000000000000,1.00000000000000000000,0.00104588299934157405,-0.0055591027650730489,0.99998400112461727218,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3425334928469965,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-0.8893687393057373435,-6.6511070413974024972,0.00000000000000000000,1.00000000000000000000,0.00027890986666903903,-0.0055840484820925797,0.99998437018377206442,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3427058194538403,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,-0.8671118956541000732,-6.6792104472881383969,0.00000000000000000000,1.00000000000000000000,-0.0004880121705392990,-0.0056127851688036276,0.99998412911744249953,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3428611985145835,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,-0.8447920086747756629,-6.7072620121629462630,0.00000000000000000000,1.00000000000000000000,-0.0012548543504531562,-0.0056453128689589841,0.99998327775176831799,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3429996386494167,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,-0.8224090893344049302,-6.7352617901421822921,0.00000000000000000000,1.00000000000000000000,-0.0020215879072153939,-0.0056816313430874225,0.99998181595847723812,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3431211485694802,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,-0.7999631480781321801,-6.7632098359111942897,0.00000000000000000000,1.00000000000000000000,-0.0027881840745188199,-0.0057217400684131461,0.99997974365491804071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432257370714069,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,-0.7774541948228101961,-6.7911062047165877686,0.00000000000000000000,1.00000000000000000000,-0.0035546140891845466,-0.0057656382388325631,0.99997706080408443884,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3433134130627877,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,-0.7548822389503101470,-6.8189509523585725148,0.00000000000000000000,1.00000000000000000000,-0.0043208491947410417,-0.0058133247649401328,0.99997376741463239735,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3433841855385253,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,-0.7322472893008789007,-6.8467441351843056907,0.00000000000000000000,1.00000000000000000000,-0.0050868606450028630,-0.0058647982741100680,0.99996986354088779336,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434380635881097,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,-0.7095493541665103265,-6.8744858100820458446,0.00000000000000000000,1.00000000000000000000,-0.0058526197076482367,-0.0059200571106265394,0.99996534928284619425,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434750563919806,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,-1.0277416608700040701,-6.5280166896223050798,0.00000000000000000000,1.00000000000000000000,0.00406457661774147459,-0.0062947080016789750,0.99997192754001440473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3416658384994661,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,-1.0057658329776453243,-6.5564495673441367529,0.00000000000000000000,1.00000000000000000000,0.00330150776366281524,-0.0063047062724145017,0.99997467504197545817,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3419281900714850,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-0.9837269008557157912,-6.5848304614350210428,0.00000000000000000000,1.00000000000000000000,0.00253837703031907545,-0.0063184643449748379,0.99997681655645020981,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3421735811170947,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-0.9616248771550923724,-6.6131594230276498080,0.00000000000000000000,1.00000000000000000000,0.00177521284737902087,-0.0063359833702788291,0.99997835173271498732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3424020198599464,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,-0.9394597740421068987,-6.6414365038425149379,0.00000000000000000000,1.00000000000000000000,0.00101204366244968995,-0.0063572642203123209,0.99997928026497540088,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3426135146291926,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,-0.9172316031915191958,-6.6696617561808544394,0.00000000000000000000,1.00000000000000000000,0.00024889793756686099,-0.0063823074878464596,0.99997960189243195738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3428080738449352,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +20 ,0 ,-0.8949403757794516245,-6.6978352329165797840,0.00000000000000000000,1.00000000000000000000,-0.0005141958543192126,-0.0064111134862059040,0.99997931639933923531,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3429857060364156,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,0 ,-0.8725861024764645090,-6.7259569874918847531,0.00000000000000000000,1.00000000000000000000,-0.0012772092328627116,-0.0064436822490880731,0.99997842361505373531,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3431464198183675,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,0 ,-0.8501687934407475832,-6.7540270739156280654,0.00000000000000000000,1.00000000000000000000,-0.0020401137138444398,-0.0064800135304385591,0.99997692341407529159,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432902239146642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +23 ,0 ,-0.8276884583112961157,-6.7820455467492131162,0.00000000000000000000,1.00000000000000000000,-0.0028028808126962867,-0.0065201068043714326,0.99997481571608037853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434171271273953,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +24 ,0 ,-0.8051451062012483506,-6.8100124611078420855,0.00000000000000000000,1.00000000000000000000,-0.0035654820480274960,-0.0065639612651480954,0.99997210048594575848,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3435271383659710,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,0 ,-0.7825387456913335260,-6.8379278726499101992,0.00000000000000000000,1.00000000000000000000,-0.0043278889451513922,-0.0066115758272043368,0.99996877773376469100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436202666343888,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,0 ,-0.7598693848233105674,-6.8657918375708728575,0.00000000000000000000,1.00000000000000000000,-0.0050900730396118620,-0.0066629491252310725,0.99996484751485414932,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436965210203197,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +27 ,0 ,-0.7371370310935831948,-6.8936044126013280575,0.00000000000000000000,1.00000000000000000000,-0.0058520058807085915,-0.0067180795143048487,0.99996030992975470930,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3437559107114793,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +28 ,0 ,-1.0558466178664243084,-6.5462955950294450246,0.00000000000000000000,1.00000000000000000000,0.00401577588793556195,-0.0070883489654354221,0.99996681387582153632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3416734316178917,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +29 ,0 ,-1.0338363065470268509,-6.5747979767702906528,0.00000000000000000000,1.00000000000000000000,0.00325650063581464123,-0.0070985549209991050,0.99996950239576909424,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3419579393557796,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,0 ,-1.0117628923359425208,-6.6032484932161654711,0.00000000000000000000,1.00000000000000000000,0.00249716543540340384,-0.0071124927881433220,0.99997158790193951816,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3422255069654056,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,0 ,-0.9896263870768422510,-6.6316471954342475214,0.00000000000000000000,1.00000000000000000000,0.00173779843939974405,-0.0071301636943079680,0.99997307004852686862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3424761426849727,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +32 ,0 ,-0.9674268021305263420,-6.6599941350672189344,0.00000000000000000000,1.00000000000000000000,0.00097842781808540825,-0.0071515684914030402,0.99997394853421917026,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3427098548581852,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +33 ,0 ,-0.9451641483680218724,-6.6882893643298126917,0.00000000000000000000,1.00000000000000000000,0.00021908175586759977,-0.0071767077555314577,0.99997422310226358188,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3429266519124212,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +34 ,0 ,-0.9228384361635982857,-6.7165329360005951997,0.00000000000000000000,1.00000000000000000000,-0.0005402115521843765,-0.0072055817867621380,0.99997389354052268473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3431265423860168,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +35 ,0 ,-0.9004496753880346648,-6.7447249034183487381,0.00000000000000000000,1.00000000000000000000,-0.0012994239038067972,-0.0072381906089547219,0.99997295968152366540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3433095349082577,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,0 ,-0.8779978754019002185,-6.7728653204753337391,0.00000000000000000000,1.00000000000000000000,-0.0020585270930124350,-0.0072745339696375019,0.99997142140249772879,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434756381993793,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,0 ,-0.8554830450488994930,-6.8009542416124881825,0.00000000000000000000,1.00000000000000000000,-0.0028174929135638222,-0.0073146113399309075,0.99996927862541229448,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436248610814800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +38 ,0 ,-0.8329051926492819779,-6.8289917218102065277,0.00000000000000000000,1.00000000000000000000,-0.0035762931624480184,-0.0073584219145264324,0.99996653131699542171,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3437572124639700,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +39 ,0 ,-0.8102643259934207975,-6.8569778165877526276,0.00000000000000000000,1.00000000000000000000,-0.0043348996433520874,-0.0074059646117162177,0.99996317948875090841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438727013526658,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +40 ,0 ,-0.7875604523354012842,-6.8849125819902461387,0.00000000000000000000,1.00000000000000000000,-0.0050932841701381266,-0.0074572380734706051,0.99995922319696495250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3439713368370576,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,0 ,-0.7647935783867474413,-6.9127960745890035809,0.00000000000000000000,1.00000000000000000000,-0.0058514185703170684,-0.0075122406655729638,0.99995466254270604089,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3440531281048606,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +42 ,0 ,-1.0840217461164576295,-6.5646471849005623155,0.00000000000000000000,1.00000000000000000000,0.00396730615576321252,-0.0078781688762883991,0.99996109671177846323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3416973640523792,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +43 ,0 ,-1.0619768520762546959,-6.5932190992508905580,0.00000000000000000000,1.00000000000000000000,0.00321179712248147695,-0.0078885799004734975,0.99996372667532162914,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3420040334240184,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,0 ,-1.0398688563137794549,-6.6217392657099436448,0.00000000000000000000,1.00000000000000000000,0.00245623004243842408,-0.0079026952164914943,0.99996575658484099236,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3422937830000591,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,0 ,-1.0176977698761344726,-6.6502077352749706662,0.00000000000000000000,1.00000000000000000000,0.00170063279469223464,-0.0079205159287133505,0.99996718609938406441,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3425666210368945,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,0 ,-0.9954636033293314811,-6.6786245595106370487,0.00000000000000000000,1.00000000000000000000,0.00094503327553743842,-0.0079420428693352564,0.99996801492206199846,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3428225558818667,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +47 ,0 ,-0.9731663667512543414,-6.7069897905454860520,0.00000000000000000000,1.00000000000000000000,0.00018945939509677886,-0.0079672765981018134,0.99996824280011320507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3430615959841816,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +48 ,0 ,-0.9508060697250707571,-6.7353034810603258364,0.00000000000000000000,1.00000000000000000000,-0.0005660609260922017,-0.0079962174020900330,0.99996786952495919642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432837498876324,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +49 ,0 ,-0.9283827213324389315,-6.7635656842900866436,0.00000000000000000000,1.00000000000000000000,-0.0013214997604942843,-0.0080288652955341037,0.99996689493225154876,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434890262251428,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +50 ,0 ,-0.9058963301469912243,-6.7917764540124991867,0.00000000000000000000,1.00000000000000000000,-0.0020768291769972966,-0.0080652200197077802,0.99996531890191209246,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436774337333190,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +51 ,0 ,-0.8833469042277248828,-6.8199358445447728627,0.00000000000000000000,1.00000000000000000000,-0.0028320212443348120,-0.0081052810428491536,0.99996314135816399826,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438489812269835,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,0 ,-0.8607344511127184016,-6.8480439107352939487,0.00000000000000000000,1.00000000000000000000,-0.0035870480345105682,-0.0081490475601447166,0.99996036226955509196,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3440036776355555,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +53 ,0 ,-0.8380589778126011912,-6.8761007079617080250,0.00000000000000000000,1.00000000000000000000,-0.0043418816262232300,-0.0081965184937554200,0.99995698164897328652,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3441415319557563,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +54 ,0 ,-0.8153204908044578980,-6.9041062921207778657,0.00000000000000000000,1.00000000000000000000,-0.0050964941082910367,-0.0082476924928974442,0.99995299955365213318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3442625532861711,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +55 ,0 ,-0.7925189960255192289,-6.9320607196236503355,0.00000000000000000000,1.00000000000000000000,-0.0058508575830750961,-0.0083025679339714924,0.99994841608517193165,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443667508163343,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +56 ,0 ,-1.1122670327020607317,-6.5830713859590588299,0.00000000000000000000,1.00000000000000000000,0.00391916421544994016,-0.0086641946571959088,0.99995478491919531638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3417376777088065,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +57 ,0 ,-1.0901874576260266458,-6.6117128612753379712,0.00000000000000000000,1.00000000000000000000,0.00316739427744406167,-0.0086748081683869666,0.99995735674914287827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3420665141657082,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +58 ,0 ,-1.0680447818313030250,-6.6403027051790441959,0.00000000000000000000,1.00000000000000000000,0.00241556816522624055,-0.0086890986189302986,0.99995933147085003245,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3423784511032863,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +59 ,0 ,-1.0458390155789891728,-6.6688409685984915142,0.00000000000000000000,1.00000000000000000000,0.00166371348749866170,-0.0087070670905313261,0.99996070874815479179,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3426734967815718,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +60 ,0 ,-1.0235701686507123753,-6.6973277030203952620,0.00000000000000000000,1.00000000000000000000,0.00091185786985901323,-0.0087287143960244409,0.99996148828853281820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3429516595679160,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +61 ,0 ,-1.0012382503418137957,-6.7257629604826689728,0.00000000000000000000,1.00000000000000000000,0.00016002895144176759,-0.0087540410791032228,0.99996166984315937309,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432129479151626,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,0 ,-0.9788432694548304668,-6.7541467935722652171,0.00000000000000000000,1.00000000000000000000,-0.0005917456184459331,-0.0087830474141087459,0.99996125320696516158,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434573703743808,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +63 ,0 ,-0.9563852342928250704,-6.7824792554166801750,0.00000000000000000000,1.00000000000000000000,-0.0013434381836919383,-0.0088157334058582802,0.99996023821868185166,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436849356021411,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +64 ,0 ,-0.9338641526529789516,-6.8107603996800314405,0.00000000000000000000,1.00000000000000000000,-0.0020950210847502613,-0.0088520987895298400,0.99995862476088204218,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438956523204979,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +65 ,0 ,-0.9112800318202006755,-6.8389902805548912212,0.00000000000000000000,1.00000000000000000000,-0.0028464666620141784,-0.0088921430305929655,0.99995641276000868380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3440895293715584,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +66 ,0 ,-0.8886328785607643387,-6.8671689527584911516,0.00000000000000000000,1.00000000000000000000,-0.0035977472591910068,-0.0089358653247884004,0.99995360218639928184,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3442665756756468,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,0 ,-0.8659226991161121933,-6.8952964715270237405,0.00000000000000000000,1.00000000000000000000,-0.0043488352266772608,-0.0089832645981581579,0.99995019305429921896,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3444268002331227,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +68 ,0 ,-0.8431494991967182217,-6.9233728926068947018,0.00000000000000000000,1.00000000000000000000,-0.0050997029249335483,-0.0090343395071272158,0.99994618542186908261,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3445702121480280,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +69 ,0 ,-0.8203132839760531869,-6.9513982722518159462,0.00000000000000000000,1.00000000000000000000,-0.0058503227278582066,-0.0090890884386305471,0.99994157939118344380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3446968206080782,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +70 ,0 ,-1.1405824648478410932,-6.6015681258587628477,0.00000000000000000000,1.00000000000000000000,0.00387134689879919512,-0.0094464529865689299,0.99994788724171079774,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3417944140164763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +71 ,0 ,-1.1184681113879011427,-6.6302791902622928432,0.00000000000000000000,1.00000000000000000000,0.00312328918902930177,-0.0094572664372277823,0.99995040135807555792,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3421454230046947,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +72 ,0 ,-1.0962906580496294406,-6.6589387388212166740,0.00000000000000000000,1.00000000000000000000,0.00237517714907548287,-0.0094717297388401452,0.99995232129800293296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3424795526734669,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +73 ,0 ,-1.0740501143184373322,-6.6875468223921679111,0.00000000000000000000,1.00000000000000000000,0.00162703812052062616,-0.0094898439508406418,0.99995364673005837641,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3427968113082897,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +74 ,0 ,-1.0517464892019843247,-6.7161034923821345543,0.00000000000000000000,1.00000000000000000000,0.00087889946150905920,-0.0095116098670507617,0.99995437736602421630,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3430972072819713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +75 ,0 ,-1.0293797912234283753,-6.7446088007413367293,0.00000000000000000000,1.00000000000000000000,0.00013078854343616893,-0.0095370280154137808,0.99995451296095927418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3433807490600884,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +76 ,0 ,-1.0069500284149992541,-6.7730627999589785304,0.00000000000000000000,1.00000000000000000000,-0.0006172672523671189,-0.0095660986577852588,0.99995405331325504239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436474452064430,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +77 ,0 ,-0.9844572083115268323,-6.8014655430557908744,0.00000000000000000000,1.00000000000000000000,-0.0013652405379535180,-0.0095988217897702097,0.99995299826467898274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438973043703299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +78 ,0 ,-0.9619013379441234690,-6.8298170835799281164,0.00000000000000000000,1.00000000000000000000,-0.0021131039220816253,-0.0096351971406072323,0.99995134770041460559,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3441303353010880,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +79 ,0 ,-0.9392824238338799425,-6.8581174756018441485,0.00000000000000000000,1.00000000000000000000,-0.0028608300135404976,-0.0096752241731034530,0.99994910154909055766,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443465468317299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +80 ,0 ,-0.9166004719856563065,-6.8863667737073361863,0.00000000000000000000,1.00000000000000000000,-0.0036083914244754429,-0.0097189020836148404,0.99994625978280260447,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3445459478825796,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +81 ,0 ,-0.8938554878820084148,-6.9145650329905068431,0.00000000000000000000,1.00000000000000000000,-0.0043557607737144026,-0.0097662298020778914,0.99994282241712939551,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3447285474721866,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +82 ,0 ,-0.8710474764771515276,-6.9427123090484510470,0.00000000000000000000,1.00000000000000000000,-0.0051029106900940023,-0.0098172059920894165,0.99993878951113657205,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3448943546991358,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +83 ,0 ,-0.8481764421910596984,-6.9708086579759021006,0.00000000000000000000,1.00000000000000000000,-0.0058498138157844041,-0.0098718290510331607,0.99993416116737754428,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3450433787493238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +84 ,0 ,-1.1689680299187639178,-6.6201373331707209501,0.00000000000000000000,1.00000000000000000000,0.00382385107467092403,-0.0102249703009435147,0.99994041229730434849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3418676139317540,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +85 ,0 ,-1.1468188016822076225,-6.6489180145533000043,0.00000000000000000000,1.00000000000000000000,0.00307947897963097667,-0.0102359811771030127,0.99994286911730889677,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3422408008736965,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +86 ,0 ,-1.1246064742469681352,-6.6776472947573113358,0.00000000000000000000,1.00000000000000000000,0.00233505437036372453,-0.0102506150767595668,0.99994473467868971727,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3425971286469575,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +87 ,0 ,-1.1023310563330457334,-6.7063252245684594754,0.00000000000000000000,1.00000000000000000000,0.00159060432452363953,-0.0102688730374663056,0.99994600865467864192,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3429366055424907,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +88 ,0 ,-1.0799925561842735888,-6.7349518553123104425,0.00000000000000000000,1.00000000000000000000,0.00084615593599902776,-0.0102907558343711957,0.99994669076130693330,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432592399385612,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +89 ,0 ,-1.0575909815618447229,-6.7635272388507665652,0.00000000000000000000,1.00000000000000000000,0.00010173631164906475,-0.0103162639799617584,0.99994678075746501466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3435650403243926,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +90 ,0 ,-1.0351263397378873687,-6.7920514275735142106,0.00000000000000000000,1.00000000000000000000,-0.0006426274319637996,-0.0103453977238557003,0.99994627844495642676,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438540152601490,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,0 ,-1.0125986374892399499,-6.8205244743952722075,0.00000000000000000000,1.00000000000000000000,-0.0013869081718452767,-0.0103781570526457634,0.99994518366854134860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3441261734114959,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +92 ,0 ,-0.9900078810910977189,-6.8489464327498161821,0.00000000000000000000,1.00000000000000000000,-0.0021310787818436364,-0.0104145416897847963,0.99994349631597512217,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443815235277725,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +93 ,0 ,-0.9673540763109242934,-6.8773173565841165810,0.00000000000000000000,1.00000000000000000000,-0.0028751121359262489,-0.0104545510955223706,0.99994121631803745131,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3446200744492671,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +94 ,0 ,-0.9446372284023510923,-6.9056373003491282602,0.00000000000000000000,1.00000000000000000000,-0.0036189811114574585,-0.0104981844668874304,0.99993834364855394003,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3448418351072177,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +95 ,0 ,-0.9218573420992379752,-6.9339063189998002556,0.00000000000000000000,1.00000000000000000000,-0.0043626585924769365,-0.0105454407377228651,0.99993487832440974827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3450468145092600,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +96 ,0 ,-0.8990144216096546125,-6.9621244679840472713,0.00000000000000000000,1.00000000000000000000,-0.0051061174729776772,-0.0105963185787590775,0.99993082040555636424,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3452350217630737,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +97 ,0 ,-0.8761084706101879282,-6.9902918032390424230,0.00000000000000000000,1.00000000000000000000,-0.0058493306601828396,-0.0106508163977462513,0.99992616999500960606,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3454064660545554,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +98 ,0 ,-1.1974237154182187925,-6.6387789373727876807,0.00000000000000000000,1.00000000000000000000,0.00377667364846817404,-0.0109997727976272382,0.99993236858027212399,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3419573179398867,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +99 ,0 ,-1.1752395169561509202,-6.6676292633970319911,0.00000000000000000000,1.00000000000000000000,0.00303596080523739920,-0.0110109786183928484,0.99993476851835394469,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3423526882579608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +100 ,0 ,-1.1529922198169375580,-6.6964283020200960905,0.00000000000000000000,1.00000000000000000000,0.00229519723610688633,-0.0110257808930459642,0.99993658010163088967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3427312194835394,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +101 ,0 ,-1.1306818319651812387,-6.7251761039535349340,0.00000000000000000000,1.00000000000000000000,0.00155440975794821491,-0.0110441806376401826,0.99993780300794055104,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3430929199275851,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +102 ,0 ,-1.1083083608909318762,-6.7538727204427457806,0.00000000000000000000,1.00000000000000000000,0.00081362520354557427,-0.0110661786089845670,0.99993843695750683764,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434377979792770,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +103 ,0 ,-1.0858718136034877232,-6.7825182032580277891,0.00000000000000000000,1.00000000000000000000,0.00007287041837938050,-0.0110917753043986901,0.99993848171299937188,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3437658621332957,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +104 ,0 ,-1.0633721966249354284,-6.8111126046908392339,0.00000000000000000000,1.00000000000000000000,-0.0006678277425942181,-0.0111209709615058653,0.99993793707958644745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3440771209589001,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +105 ,0 ,-1.0408095159840946575,-6.8396559775500813671,0.00000000000000000000,1.00000000000000000000,-0.0014084424181678488,-0.0111537655580817886,0.99993680290497832796,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443715831308509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +106 ,0 ,-1.0181837772103179418,-6.8681483751532850234,0.00000000000000000000,1.00000000000000000000,-0.0021489467441102236,-0.0111901588119421805,0.99993507907946410639,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3446492574021249,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +107 ,0 ,-0.9954949853275077975,-6.8965898513220293963,0.00000000000000000000,1.00000000000000000000,-0.0028893138563954564,-0.0112301501808832766,0.99993276553594012678,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3449101526148297,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +108 ,0 ,-0.9727431448480896580,-6.9249804603772284750,0.00000000000000000000,1.00000000000000000000,-0.0036295168944338444,-0.0112737388626648546,0.99992986224993241073,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3451542777111171,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +109 ,0 ,-0.9499282597671980798,-6.9533202571318541984,0.00000000000000000000,1.00000000000000000000,-0.0043695290043029308,-0.0113209237950434721,0.99992636923960898087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3453816416986228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +110 ,0 ,-0.9270503335568207603,-6.9816092968852130340,0.00000000000000000000,1.00000000000000000000,-0.0051093233419783343,-0.0113717036558504420,0.99992228656578618917,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3455922536850266,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +111 ,0 ,-0.9041093691601268522,-7.0098476354171825875,0.00000000000000000000,1.00000000000000000000,-0.0058488730765632705,-0.0114260768631170139,0.99991761433192671848,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3457861228562251,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +112 ,0 ,-1.2259495089857943561,-6.6574928688347725369,0.00000000000000000000,1.00000000000000000000,0.00372981156163219732,-0.0117708864373058490,0.99992376446316855176,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3420635660768311,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +113 ,0 ,-1.2037302457820011625,-6.6864128669401221571,0.00000000000000000000,1.00000000000000000000,0.00299273185496708952,-0.0117822847543677926,0.99992610793098646304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3424811251734354,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +114 ,0 ,-1.1814478842669138280,-6.7152816905409995484,0.00000000000000000000,1.00000000000000000000,0.00225560318353533245,-0.0117972532105038840,0.99992786593382088078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3428818651973415,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +115 ,0 ,-1.1591024316596398868,-6.7440993902763368694,0.00000000000000000000,1.00000000000000000000,0.00151845210652671995,-0.0118157928006402054,0.99992903815405420608,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432657944649690,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +116 ,0 ,-1.1366938947063731646,-6.7728660173087256168,0.00000000000000000000,1.00000000000000000000,0.00078130519872849572,-0.0118379042635770141,0.99992962431604770490,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436329213836870,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +117 ,0 ,-1.1142222796743657120,-6.8015816233167196713,0.00000000000000000000,1.00000000000000000000,0.00004418904735505328,-0.0118635880817482119,0.99992962418619946163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3439832544536329,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +118 ,0 ,-1.0916875923455822139,-6.8302462604951976743,0.00000000000000000000,1.00000000000000000000,-0.0006928697511264876,-0.0118928444810211444,0.99992903757299567146,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443168022549798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +119 ,0 ,-1.0690898380107494158,-6.8588599815432846895,0.00000000000000000000,1.00000000000000000000,-0.0014298445941745767,-0.0119256734305458501,0.99992786432705438315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3446335734661261,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +120 ,0 ,-1.0464290214632978592,-6.8874228396635102100,0.00000000000000000000,1.00000000000000000000,-0.0021667088763540551,-0.0119620746426494697,0.99992610434115980488,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3449335768509627,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +121 ,0 ,-1.0237051469933697855,-6.9159348885537843543,0.00000000000000000000,1.00000000000000000000,-0.0029034359925193616,-0.0120020475727737399,0.99992375755029339057,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3452168212534161,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +122 ,0 ,-1.0009182183821259126,-6.9443961824010251859,0.00000000000000000000,1.00000000000000000000,-0.0036399993409987445,-0.0120455914194648738,0.99992082393165127029,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3454833156083623,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +123 ,0 ,-0.9780682388957766537,-6.9728067758795679864,0.00000000000000000000,1.00000000000000000000,-0.0043763723267788547,-0.0120927051244025321,0.99991730350466045962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3457330689434456,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +124 ,0 ,-0.9551552112801167115,-7.0011667241390176386,0.00000000000000000000,1.00000000000000000000,-0.0051125283646893402,-0.0121433873724814331,0.99991319633098230124,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3459660903572512,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +125 ,0 ,-0.9321791377546997381,-7.0294760828029065891,0.00000000000000000000,1.00000000000000000000,-0.0058484408825857942,-0.0121976365919317861,0.99990850251451179886,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3461823890356754,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +126 ,0 ,-1.2545453983954282239,-6.6762790588106595279,0.00000000000000000000,1.00000000000000000000,0.00368326179114517081,-0.0125383369466229299,0.99991460819871536003,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3421863979292538,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +127 ,0 ,-1.2322909768551573161,-6.7052687562126003228,0.00000000000000000000,1.00000000000000000000,0.00294978935061162477,-0.0125499253437742035,0.99991689560515595314,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3426261511904158,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +128 ,0 ,-1.2099734572162537116,-6.7342073911404698449,0.00000000000000000000,1.00000000000000000000,0.00221626967967700769,-0.0125650578169732626,0.99991860042243574380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3430491053368314,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +129 ,0 ,-1.1875928459619755628,-6.7630950141562315991,0.00000000000000000000,1.00000000000000000000,0.00148272908290675645,-0.0125837353403843790,0.99991972233742310027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434552686976530,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +130 ,0 ,-1.1651491491045218307,-6.7919316763388710711,0.00000000000000000000,1.00000000000000000000,0.00074919388015443869,-0.0126059586351227759,0.99992026107856180061,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438446496875258,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +131 ,0 ,-1.1426423721787668519,-6.8207174292786030278,0.00000000000000000000,1.00000000000000000000,0.00001569040343708770,-0.0126317281690136295,0.99992021641592732095,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3442172568084060,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +132 ,0 ,-1.1200725202363537302,-6.8494523250673395864,0.00000000000000000000,1.00000000000000000000,-0.0007177550061940803,-0.0126610441564014922,0.99991958816127823883,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3445730986604758,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +133 ,0 ,-1.0974395978396580542,-6.8781364162982310261,0.00000000000000000000,1.00000000000000000000,-0.0014511160017862982,-0.0126939065580003590,0.99991837616809775557,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3449121839221334,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +134 ,0 ,-1.0747436090558792898,-6.9067697560564598191,0.00000000000000000000,1.00000000000000000000,-0.0021843662336207183,-0.0127303150807894921,0.99991658033162977847,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3452345213590888,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +135 ,0 ,-1.0519845574512307617,-6.9353523979167350788,0.00000000000000000000,1.00000000000000000000,-0.0029174793523498655,-0.0127702691779573683,0.99991420058890589928,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3455401198280014,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +136 ,0 ,-1.0291624460852326627,-6.9638843959343912359,0.00000000000000000000,1.00000000000000000000,-0.0036504290121362539,-0.0128137680488886514,0.99991123691876571122,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3458289882673852,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +137 ,0 ,-1.0062772775050208284,-6.9923658046407854982,0.00000000000000000000,1.00000000000000000000,-0.0043831888737914676,-0.0128608106391958215,0.99990768934187068683,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3461011356957897,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +138 ,0 ,-0.9833290537397423314,-7.0207966790395657241,0.00000000000000000000,1.00000000000000000000,-0.0051157326079148655,-0.0129113956407992235,0.99990355792070795271,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3463565712190757,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +139 ,0 ,-0.9603177762951563556,-7.0491770745961259692,0.00000000000000000000,1.00000000000000000000,-0.0058480338980310400,-0.0129655214920484530,0.99989884275958951231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3465953040249587,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +140 ,0 ,-1.2832113715533490783,-6.6951374394241582876,0.00000000000000000000,1.00000000000000000000,0.00363702134904125232,-0.0133021498207236028,0.99990490792167496802,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3423258526290737,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +141 ,0 ,-1.2609216989924523222,-6.7241968631218309582,0.00000000000000000000,1.00000000000000000000,0.00290713054618568084,-0.0133139259133888653,0.99990713967285960173,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3427878054371831,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +142 ,0 ,-1.2385689283946612615,-6.7532053355144769923,0.00000000000000000000,1.00000000000000000000,0.00217719422094701277,-0.0133292202678928512,0.99990879169670976445,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432329790230141,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +143 ,0 ,-1.2161530655171528536,-6.7821629070902949010,0.00000000000000000000,1.00000000000000000000,0.00144723842628027496,-0.0133480338380017552,0.99990986368452061672,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436613817266334,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +144 ,0 ,-1.1936741156475541014,-6.8110696288450025548,0.00000000000000000000,1.00000000000000000000,0.00071728923012571782,-0.0133703673274586567,0.99991035536876449185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3440730219699617,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +145 ,0 ,-1.1711320835981473553,-6.8399255522745745494,0.00000000000000000000,1.00000000000000000000,-0.0000126272876718133,-0.0133962211897565852,0.99991026652314463074,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3444679082749644,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +146 ,0 ,-1.1485269736998005019,-6.8687307293734010116,0.00000000000000000000,1.00000000000000000000,-0.0007424850384471619,-0.0134255956279447571,0.99990959696264625211,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3448460492345475,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +147 ,0 ,-1.1258587897961052082,-6.8974852126235512983,0.00000000000000000000,1.00000000000000000000,-0.0014722579278028963,-0.0134584905944838840,0.99990834654357774180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3452074535452993,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +148 ,0 ,-1.1031275352376650467,-6.9261890549965725583,0.00000000000000000000,1.00000000000000000000,-0.0022019198587000950,-0.0134949057911483774,0.99990651516360440353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3455521299747488,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +149 ,0 ,-1.0803332128763147856,-6.9548423099414664605,0.00000000000000000000,1.00000000000000000000,-0.0029314447345507540,-0.0135348406689674814,0.99990410276177665860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3458800873740983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +150 ,0 ,-1.0574758250595619468,-6.9834450313807110433,0.00000000000000000000,1.00000000000000000000,-0.0036608064623117417,-0.0135782944282172302,0.99990110931854947473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3461913346945948,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +151 ,0 ,-1.0345553736249573084,-7.0119972737065747736,0.00000000000000000000,1.00000000000000000000,-0.0043899789555788852,-0.0136252660184504516,0.99989753485579502267,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3464858809547877,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +152 ,0 ,-1.0115718598946683570,-7.0404990917744374456,0.00000000000000000000,1.00000000000000000000,-0.0051189361376806742,-0.0136757541385764576,0.99989337943680722808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3467637352623569,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +153 ,0 ,-0.9885252846701124695,-7.0689505408928523522,0.00000000000000000000,1.00000000000000000000,-0.0058476519447710284,-0.0137297572369843752,0.99988864316630066131,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3470249068013799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +154 ,0 ,-1.3119474164961000273,-6.7140679436622798803,0.00000000000000000000,1.00000000000000000000,0.00359108728192508112,-0.0140623503257672165,0.99989467165069390031,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3424819688843854,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +155 ,0 ,-1.2896224011301264944,-6.7431971204349219206,0.00000000000000000000,1.00000000000000000000,0.00286475272748462454,-0.0140743117605346117,0.99989684814998647244,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3429661266018229,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +156 ,0 ,-1.2672342876405746636,-6.7722754562256080035,0.00000000000000000000,1.00000000000000000000,0.00213837433274362970,-0.0140897658888268668,0.99989844776977765405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434335249294235,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +157 ,0 ,-1.2447830810678792712,-6.8013030014457029892,0.00000000000000000000,1.00000000000000000000,0.00141197790201876417,-0.0141087136443625252,0.99989947020573288760,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438841722163488,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +158 ,0 ,-1.2222687859846914637,-6.8302798070062493707,0.00000000000000000000,1.00000000000000000000,0.00068558925431439919,-0.0141311557138269310,0.99989991519429866073,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443180768936144,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +159 ,0 ,-1.1996914064900419116,-6.8592059243107730281,0.00000000000000000000,1.00000000000000000000,-0.0000407657797139096,-0.0141570925366448895,0.99989978251275757337,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3447352474922809,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +160 ,0 ,-1.1770509462035161352,-6.8880814052525627388,0.00000000000000000000,1.00000000000000000000,-0.0007670613608000603,-0.0141865243047955402,0.99989907197927607729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3451356926125299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +161 ,0 ,-1.1543474082594196161,-6.9169063022067067691,0.00000000000000000000,1.00000000000000000000,-0.0014932716441112784,-0.0142194509626685627,0.99989778345294710870,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3455194209527689,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +162 ,0 ,-1.1315807953012271269,-6.9456806680256413244,0.00000000000000000000,1.00000000000000000000,-0.0022193707822949762,-0.0142558722069699717,0.99989591683382172959,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3458864412878028,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +163 ,0 ,-1.1087511094758113472,-6.9744045560344885004,0.00000000000000000000,1.00000000000000000000,-0.0029453329285269946,-0.0142957874866644421,0.99989347206293732739,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3462367624815669,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +164 ,0 ,-1.0858583524281300025,-7.0030780200258408996,0.00000000000000000000,1.00000000000000000000,-0.0036711322395614771,-0.0143391960029701365,0.99989044912233637774,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3465703934798511,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +165 ,0 ,-1.0629025252955535130,-7.0317011142500192022,0.00000000000000000000,1.00000000000000000000,-0.0043967428787807386,-0.0143860967093860543,0.99988684803507921206,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3468873432993859,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +166 ,0 ,-1.0398836287026940183,-7.0602738934129689596,0.00000000000000000000,1.00000000000000000000,-0.0051221390192448977,-0.0144364883117755419,0.99988266886524801435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3471876210514892,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +167 ,0 ,-1.0168016627560134690,-7.0887964126706810574,0.00000000000000000000,1.00000000000000000000,-0.0058472948467403786,-0.0144903692684846645,0.99987791171794460076,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3474712359220575,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +168 ,0 ,-1.3407535213887429303,-6.7330705053584694042,0.00000000000000000000,1.00000000000000000000,0.00354545667049794817,-0.0148189635014111739,0.99988390729011189517,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3426547849685448,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +169 ,0 ,-1.3183930723223693526,-6.7622694617729735000,0.00000000000000000000,1.00000000000000000000,0.00282265321164841802,-0.0148311079555768117,0.99988602893812661420,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3431611529467772,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +170 ,0 ,-1.2959695248995699579,-6.7914176866904476526,0.00000000000000000000,1.00000000000000000000,0.00209980756905093655,-0.0148467197779619791,0.99988757654048643352,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436507813039497,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +171 ,0 ,-1.2734828834533569175,-6.8205152304458227519,0.00000000000000000000,1.00000000000000000000,0.00137694530131391313,-0.0148657998825851914,0.99988854979716990101,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3441236783964995,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +172 ,0 ,-1.2509331518507120772,-6.8495621438627312116,0.00000000000000000000,1.00000000000000000000,0.00065409198144175727,-0.0148883489393786070,0.99988894844854592225,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3445798526754515,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +173 ,0 ,-1.2283203334867893730,-6.8785584782537512182,0.00000000000000000000,1.00000000000000000000,-0.0000687268061585118,-0.0149143673739623276,0.99988877227542660719,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3450193126645899,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +174 ,0 ,-1.2056444312791712025,-6.9075042854089536703,0.00000000000000000000,1.00000000000000000000,-0.0007914854686746922,-0.0149438553674639141,0.99988802109911734117,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3454420669841056,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +175 ,0 ,-1.1829054476622258285,-6.9363996175967770341,0.00000000000000000000,1.00000000000000000000,-0.0015141584078901463,-0.0149768128563806026,0.99988669478145386637,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3458481243287678,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +176 ,0 ,-1.1601033845815524880,-6.9652445275515351141,0.00000000000000000000,1.00000000000000000000,-0.0022367200231871260,-0.0150132395324832912,0.99988479322483825306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3462374934861145,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +177 ,0 ,-1.1372382434884464874,-6.9940390684748541261,0.00000000000000000000,1.00000000000000000000,-0.0029591447145518793,-0.0150531348427657002,0.99988231637226365755,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3466101833182619,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +178 ,0 ,-1.1143100253345492589,-7.0227832940242969073,0.00000000000000000000,1.00000000000000000000,-0.0036814068855809652,-0.0150964979894344774,0.99987926420733264087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3469662027637241,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +179 ,0 ,-1.0913187305663911708,-7.0514772583128229044,0.00000000000000000000,1.00000000000000000000,-0.0044034809464877349,-0.0151433279299438561,0.99987563675427137965,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3473055608628783,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +180 ,0 ,-1.0682643591202773958,-7.0801210158984053677,0.00000000000000000000,1.00000000000000000000,-0.0051253413171085801,-0.0151936233770736291,0.99987143407793110938,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3476282667106715,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +181 ,0 ,-1.0451469104169390789,-7.1087146217822629878,0.00000000000000000000,1.00000000000000000000,-0.0058469624299078964,-0.0152473827990483139,0.99986665628378779135,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3479343294930004,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +182 ,0 ,-1.3696296745227929392,-6.7521450591855440848,0.00000000000000000000,1.00000000000000000000,0.00350012662909166168,-0.0155720141632573888,0.99987262263174270238,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3428443387274455,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +183 ,0 ,-1.3472337017393778424,-6.7814138215971446754,0.00000000000000000000,1.00000000000000000000,0.00278082934673305661,-0.0155843393443763772,0.99987468982635185898,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3433729223033878,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +184 ,0 ,-1.3247746302227685344,-6.8106319611692347493,0.00000000000000000000,1.00000000000000000000,0.00206149151204752714,-0.0156001068085727043,0.99987618579517456574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438847859688394,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +185 ,0 ,-1.3022524636077623672,-6.8397995281582995019,0.00000000000000000000,1.00000000000000000000,0.00134213844082430380,-0.0156193174505067575,0.99987711024244663171,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443799380875134,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +186 ,0 ,-1.2796672050648774110,-6.8689165733024246662,0.00000000000000000000,1.00000000000000000000,0.00062279546296252561,-0.0156419719236558577,0.99987746291240642282,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3448583871122536,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +187 ,0 ,-1.2570188572945353300,-6.8979831478197723981,0.00000000000000000000,1.00000000000000000000,-0.0000965120804796771,-0.0156680706400932970,0.99987724358934926272,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3453201415850344,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +188 ,0 ,-1.2343074225215455719,-6.9269993034003300991,0.00000000000000000000,1.00000000000000000000,-0.0008157588402402882,-0.0156976137703119106,0.99987645209767406218,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3457652101205894,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +189 ,0 ,-1.2115329024895189480,-6.9559650921999880424,0.00000000000000000000,1.00000000000000000000,-0.0015349194618115582,-0.0157306012430892400,0.99987508830192206588,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3461936014373350,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +190 ,0 ,-1.1886952984553562640,-6.9848805668389122303,0.00000000000000000000,1.00000000000000000000,-0.0022539685884006357,-0.0157670327453936671,0.99987315210680982602,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3466053243100759,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +191 ,0 ,-1.1657946111839589953,-7.0137457803928571209,0.00000000000000000000,1.00000000000000000000,-0.0029728808638921910,-0.0158069077223371295,0.99987064345725551461,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3470003876136615,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +192 ,0 ,-1.1428308409427567760,-7.0425607863887975668,0.00000000000000000000,1.00000000000000000000,-0.0036916309358118741,-0.0158502253771633343,0.99986756233839613194,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3473788002866058,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +193 ,0 ,-1.1198039874966467799,-7.0713256387985561346,0.00000000000000000000,1.00000000000000000000,-0.0044101934582901902,-0.0158969846712864008,0.99986390877559971901,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3477405713674670,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +194 ,0 ,-1.0967140501026630960,-7.1000403920332528784,0.00000000000000000000,1.00000000000000000000,-0.0051285430950259915,-0.0159471843243655896,0.99985968283447002047,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3480857099493732,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +195 ,0 ,-1.0735610275050802009,-7.1287051009379469590,0.00000000000000000000,1.00000000000000000000,-0.0058466545222487960,-0.0160008228144257295,0.99985488462084270988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3484142252273159,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +196 ,0 ,-0.9997068881898432124,-6.5098105428959591733,0.00000000000000000000,1.00000000000000000000,0.00411371158906366669,-0.0054972188147983814,0.99997642870332903441,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3416745423019165,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +197 ,0 ,-0.9777654434400729899,-6.5381739454316791793,0.00000000000000000000,1.00000000000000000000,0.00334682148727930483,-0.0055070067493835613,0.99997923561571733230,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3419147431814053,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +198 ,0 ,-0.9557608929516900886,-6.5664852450521582483,0.00000000000000000000,1.00000000000000000000,0.00257986754533472964,-0.0055205826498120986,0.99998143355297086642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3421379630763112,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +199 ,0 ,-0.9336932501935994999,-6.5947444929566971794,0.00000000000000000000,1.00000000000000000000,0.00181287847324920542,-0.0055379476908987909,0.99998302215938328352,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3423442101939144,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/globalCoordinates_20rays.rayui.csv b/Intern/RayCore/tests/output/globalCoordinates_20rays.rayui.csv new file mode 100644 index 000000000..584ee8011 --- /dev/null +++ b/Intern/RayCore/tests/output/globalCoordinates_20rays.rayui.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.6167097164484369731,0.41824099733850300664,0.00000000000000000000,-1.0000000000000000000,-0.0005647204994290210,0.00042554747485785797,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.71933999999999997942,0.69465799999999999769,-0.0000070931699999999,0.00026000004322668197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-0.2519609284319039854,0.46950303811752197580,0.00000000000000000000,-1.0000000000000000000,-0.0002346312043095140,0.00047193849992037097,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.71933999999999997942,0.69465799999999999769,-0.0000079431399999999,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,0.11278781339990899545,0.52076513075111097172,0.00000000000000000000,-1.0000000000000000000,0.00009545810914834539,0.00051832952755997898,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.76604399999999994719,0.64278800000000002601,0.00002152689999999999,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,0.47753658533419302001,0.57202728596118102011,0.00000000000000000000,-1.0000000000000000000,0.00042554740426783299,0.00056472055262254299,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.55919300000000005113,0.82903800000000005265,-0.0000680066999999999,0.00026000004334036897,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-0.5703186709567790169,0.08815155685739380075,0.00000000000000000000,-1.0000000000000000000,-0.0005183295235826120,0.00009545813074532539,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.91354500000000005144,0.40673700000000001519,-0.0000025844700000000,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-0.2055698883010070032,0.13941363578013699076,0.00000000000000000000,-1.0000000000000000000,-0.0001882401917865299,0.00014184916096245299,0.99999997222222203330,100.000000000000000000,1.00000000000000000000,0.37460700000000002329,0.92718400000000000815,-0.0000232571000000000,0.00002888888946017690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,0.15917885353080798993,0.19067572841373001124,0.00000000000000000000,-1.0000000000000000000,0.00014184915834792501,0.00018824019375662399,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,0.96126199999999994982,0.27563700000000002088,0.00015700299999999998,0.00002888888946017690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,0.52392763082588600376,0.24193784547997598810,0.00000000000000000000,-1.0000000000000000000,0.00047193849014405601,0.00023463122397359198,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.88294799999999995510,0.46947200000000000041,-0.0000283243999999999,0.00014444446003381001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-0.5239276308258520309,-0.2419378454800819866,0.00000000000000000000,-1.0000000000000000000,-0.0004719384901440209,-0.0002346312239736979,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.61566100000000001379,0.78801100000000001699,-0.0000041497100000000,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-0.1591788535307880059,-0.1906757284137819974,0.00000000000000000000,-1.0000000000000000000,-0.0001418491583479060,-0.0001882401937566759,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,0.17364799999999999680,0.98480800000000001670,-0.0000864739000000000,0.00002888888946017690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,0.20556988830098998910,-0.1394136357800830061,0.00000000000000000000,-1.0000000000000000000,0.00018824019178651299,-0.0001418491609624000,0.99999997222222203330,100.000000000000000000,1.00000000000000000000,0.71933999999999997942,0.69465799999999999769,-0.0000074790099999999,0.00002888888946017690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,0.57031867095678001611,-0.0881515568573912056,0.00000000000000000000,-1.0000000000000000000,0.00051832952358261301,-0.0000954581307453250,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.91354500000000005144,0.40673700000000001519,-0.0000033462900000000,0.00014444446003381001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-0.4775365853342130040,-0.5720272859611309490,0.00000000000000000000,-1.0000000000000000000,-0.0004255474042678529,-0.0005647205526224909,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.96126199999999994982,0.27563700000000002088,-0.0000123643999999999,0.00026000004334036897,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-0.1127878133998729964,-0.5207651307512179972,0.00000000000000000000,-1.0000000000000000000,-0.0000954581091483099,-0.0005183295275600840,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.96126199999999994982,0.27563700000000002088,0.00015122200000000001,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,0.25196092843190498467,-0.4695030381175199774,0.00000000000000000000,-1.0000000000000000000,0.00023463120430951500,-0.0004719384999203709,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.96126199999999994982,0.27563700000000002088,-0.0000123687999999999,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,0.61670971644845296033,-0.4182409973385580181,0.00000000000000000000,-1.0000000000000000000,0.00056472049942903697,-0.0004255474748579109,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.61566100000000001379,0.78801100000000001699,-0.0001381839999999999,0.00026000004345405597,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-0.6167097164484369731,0.41824099733850300664,0.00000000000000000000,-1.0000000000000000000,-0.0005647204994290210,0.00042554747485785797,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.71933999999999997942,0.69465799999999999769,-0.0000070931699999999,0.00026000004322668197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-0.2519609284319039854,0.46950303811752197580,0.00000000000000000000,-1.0000000000000000000,-0.0002346312043095140,0.00047193849992037097,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.71933999999999997942,0.69465799999999999769,-0.0000079431399999999,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,0.11278781339990899545,0.52076513075111097172,0.00000000000000000000,-1.0000000000000000000,0.00009545810914834539,0.00051832952755997898,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.76604399999999994719,0.64278800000000002601,0.00002152689999999999,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,0.47753658533419302001,0.57202728596118102011,0.00000000000000000000,-1.0000000000000000000,0.00042554740426783299,0.00056472055262254299,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.55919300000000005113,0.82903800000000005265,-0.0000680066999999999,0.00026000004334036897,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/globalCoordinates_20rays.rayx.csv b/Intern/RayCore/tests/output/globalCoordinates_20rays.rayx.csv new file mode 100644 index 000000000..b042c42bb --- /dev/null +++ b/Intern/RayCore/tests/output/globalCoordinates_20rays.rayx.csv @@ -0,0 +1,21 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.6167097164485104698,0.41824099733860770067,0.00000000000000000000,1.00000000000000000000,-0.0005647204994289436,0.00042554747485777156,0.99999975000001950498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00026000004299930,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +1 ,0 ,-0.2519609284318990449,0.46950303811752369664,0.00000000000000000000,1.00000000000000000000,-0.0002346312043093586,0.00047193849992018861,0.99999986111111427433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +2 ,0 ,0.11278781339975871289,0.52076513075138142205,0.00000000000000000000,1.00000000000000000000,0.00009545810914834733,0.00051832952756006040,0.99999986111111427433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +3 ,0 ,0.47753658533411008635,0.57202728596123131321,0.00000000000000000000,1.00000000000000000000,0.00042554740426790135,0.00056472055262240703,0.99999975000001950498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00026000004299930,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +4 ,0 ,-0.5703186709568397461,0.08815155685750260261,0.00000000000000000000,1.00000000000000000000,-0.0005183295235825211,0.00009545813074525021,0.99999986111111449638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445923800,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +5 ,0 ,-0.2055698883010931843,0.13941363578023202585,0.00000000000000000000,1.00000000000000000000,-0.0001882401917864647,0.00014184916096236454,0.99999997222222114512,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00002888888866436,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +6 ,0 ,0.15917885353078584098,0.19067572841375968195,0.00000000000000000000,1.00000000000000000000,0.00014184915834805378,0.00018824019375647050,0.99999997222222114512,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00002888888866436,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +7 ,0 ,0.52392763082583493350,0.24193784548000915601,0.00000000000000000000,1.00000000000000000000,0.00047193849014415305,0.00023463122397344207,0.99999986111111460740,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +8 ,0 ,-0.5239276308259478431,-0.2419378454797777300,0.00000000000000000000,1.00000000000000000000,-0.0004719384901439651,-0.0002346312239735812,0.99999986111111416331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445923800,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +9 ,0 ,-0.1591788535308199248,-0.1906757284137638730,0.00000000000000000000,1.00000000000000000000,-0.0001418491583477875,-0.0001882401937568412,0.99999997222222125614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00002888888889174,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +10 ,0 ,0.20556988830092159936,-0.1394136357800209724,0.00000000000000000000,1.00000000000000000000,0.00018824019178659444,-0.0001418491609625218,0.99999997222222136716,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00002888888866436,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +11 ,0 ,0.57031867095667632128,-0.0881515568573221636,0.00000000000000000000,1.00000000000000000000,0.00051832952358265985,-0.0000954581307454420,0.99999986111111438535,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +12 ,0 ,-0.4775365853342627975,-0.5720272859610108229,0.00000000000000000000,1.00000000000000000000,-0.0004255474042677513,-0.0005647205526225611,0.99999975000001961600,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00026000004277193,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +13 ,0 ,-0.1127878133999064558,-0.5207651307510944294,0.00000000000000000000,1.00000000000000000000,-0.0000954581091481933,-0.0005183295275601469,0.99999986111111460740,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +14 ,0 ,0.25196092843184703102,-0.4695030381175075429,0.00000000000000000000,1.00000000000000000000,0.00023463120430960513,-0.0004719384999205355,0.99999986111111427433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445923800,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +15 ,0 ,0.61670971644838556979,-0.4182409973385445844,0.00000000000000000000,1.00000000000000000000,0.00056472049942911904,-0.0004255474748580835,0.99999975000001939395,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00026000004254456,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +16 ,0 ,-0.6167097164485104698,0.41824099733860770067,0.00000000000000000000,1.00000000000000000000,-0.0005647204994289436,0.00042554747485777156,0.99999975000001950498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00026000004299930,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +17 ,0 ,-0.2519609284318990449,0.46950303811752369664,0.00000000000000000000,1.00000000000000000000,-0.0002346312043093586,0.00047193849992018861,0.99999986111111427433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +18 ,0 ,0.11278781339975871289,0.52076513075138142205,0.00000000000000000000,1.00000000000000000000,0.00009545810914834733,0.00051832952756006040,0.99999986111111427433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 +19 ,0 ,0.47753658533411008635,0.57202728596123131321,0.00000000000000000000,1.00000000000000000000,0.00042554740426790135,0.00056472055262240703,0.99999975000001950498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00026000004299930,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 diff --git a/Intern/RayCore/tests/output/pm_ell_ip_200mirrormis.rayui.csv b/Intern/RayCore/tests/output/pm_ell_ip_200mirrormis.rayui.csv new file mode 100644 index 000000000..cfe45c092 --- /dev/null +++ b/Intern/RayCore/tests/output/pm_ell_ip_200mirrormis.rayui.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-2.4563588963705100809,1.88566694638418996810,0.00000000000000000000,-1.0000000000000000000,0.00263151831936288011,-0.0039827128367256299,0.99998860648999199352,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012940599999999,-1.1836574585472598997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-2.4752975393920397806,1.84980941156582989748,0.00000000000000000000,-1.0000000000000000000,0.00184958271503832998,-0.0039912045009432598,0.99999032461839998386,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046436300000,0.00000333845000000000,-1.1835546378928301081,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,-2.4941552268770901257,1.81390152454616004895,0.00000000000000000000,-1.0000000000000000000,0.00106752486454876008,-0.0040034134425497303,0.99999141649889800032,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019739199999999,-1.1834367013678999125,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,-2.5129320088365498797,1.77794322296656992499,0.00000000000000000000,-1.0000000000000000000,0.00028537187233351599,-0.0040193416182956499,0.99999188169497199574,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013365100000000,-1.1833036385891100294,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-2.5316279347348000783,1.74193444318746992749,0.00000000000000000000,-1.0000000000000000000,-0.0004968491283687519,-0.0040389907287263198,0.99999171981313794699,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047230200000,0.00000336686999999999,-1.1831554389429999041,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-2.5502430534750200052,1.70587512029685006709,0.00000000000000000000,-1.0000000000000000000,-0.0012791109786313000,-0.0040623622177414801,0.99999093050303000662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000048424300000,0.00000340916000000000,-1.1829920916051199775,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,-2.5687774133839198498,1.66976518811360996608,0.00000000000000000000,-1.0000000000000000000,-0.0020613864969570802,-0.0040894572721888499,0.99998951345748099406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000048427100000,0.00000340925999999999,-1.1828135855300800916,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,-2.5872310621972798294,1.63360457919396995229,0.00000000000000000000,-1.0000000000000000000,-0.0028436484824051000,-0.0041202768215142203,0.99998746841259100737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000007417500,-0.0000000421937000000,-1.1826199094545000178,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,-2.6056040470448600387,1.59739322483753998227,0.00000000000000000000,-1.0000000000000000000,-0.0036258697177221498,-0.0041548215374438996,0.99998479514779703425,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012948499999999,-1.1824110518995198937,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,-2.6238964144358698504,1.56113105509377003699,0.00000000000000000000,-1.0000000000000000000,-0.0044080229724809596,-0.0041930918337198495,0.99998149348592901830,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046458000000,0.00000333923000000000,-1.1821870011714299408,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,-2.6421082102442299266,1.52481799876714996244,0.00000000000000000000,-1.0000000000000000000,-0.0051900810062228703,-0.0042350878658747896,0.99997756329325604429,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046461600000,0.00000333935999999999,-1.1819477453576598957,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,-2.6602394796942099297,1.48845398342508006273,0.00000000000000000000,-1.0000000000000000000,-0.0059720165716050802,-0.0042808095310563100,0.99997300447953496593,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012952600000000,-1.1816932723461399667,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,-2.6782902673458401920,1.45203893540434991749,0.00000000000000000000,-1.0000000000000000000,-0.0067538024175509501,-0.0043302564678907003,0.99996781699804104803,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019738800000000,-1.1814235697937600644,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,-2.6962606170806000527,1.41557277981756990392,0.00000000000000000000,-1.0000000000000000000,-0.0075354112924031898,-0.0043834280563957396,0.99996200084559705434,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020160400000000,-1.1811386251555400228,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,-2.4209926893532398572,1.86553106897004994380,0.00000000000000000000,-1.0000000000000000000,0.00269455834696468018,-0.0032453276343170599,0.99999110356235698660,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020007000000000,-1.1834919203313301050,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,-2.4398747945993801700,1.82976189824853996412,0.00000000000000000000,-1.0000000000000000000,0.00190904146953958992,-0.0032535234204780797,0.99999288504769900942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000048305700000,0.00000340497999999999,-1.1834168628505499221,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-2.4586759368834498751,1.79394250152063006176,0.00000000000000000000,-1.0000000000000000000,0.00112339953909115991,-0.0032654624197126498,0.99999403734655400999,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020006899999999,-1.1833267099811999312,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-2.4773961671444801879,1.75807281642762003315,0.00000000000000000000,-1.0000000000000000000,0.00033765991130908600,-0.0032811466231809599,0.99999456001651398917,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020147800000000,-1.1832214513594900839,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,-2.4960355357741899062,1.72215277932054000586,0.00000000000000000000,-1.0000000000000000000,-0.0004481500288024589,-0.0033005777628454199,0.99999445265860498199,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020147700000000,-1.1831010764054799011,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,-2.5145940926019099137,1.68618232526340006138,0.00000000000000000000,-1.0000000000000000000,-0.0012340028700789699,-0.0033237573110195799,0.99999371491737598649,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047518200000,0.00000337711999999999,-1.1829655743184699367,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +20 ,0 ,-2.5330718868793900000,1.65016138804118006611,0.00000000000000000000,-1.0000000000000000000,-0.0020198711783576098,-0.0033506864799569499,0.99999234648098000999,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046338600000,0.00000333493999999999,-1.1828149340689200208,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +21 ,0 ,-2.5514689672659600638,1.61408990016427988933,0.00000000000000000000,-1.0000000000000000000,-0.0028057274996468799,-0.0033813662214902100,0.99999034708124701076,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020147500000000,-1.1826491444181799206,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +22 ,0 ,-2.5697853818133600256,1.57796779287383004408,0.00000000000000000000,-1.0000000000000000000,-0.0035915443633025697,-0.0034157972267105899,0.99998771649375395309,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046344800000,0.00000333516000000000,-1.1824681939050400991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +23 ,0 ,-2.5880211779510298164,1.54179499614988002598,0.00000000000000000000,-1.0000000000000000000,-0.0043772942852097398,-0.0034539799256943499,0.99998445453787598857,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046348100000,0.00000333527999999999,-1.1822720708523799526,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +24 ,0 ,-2.6061764024712799070,1.50557143871607990170,0.00000000000000000000,-1.0000000000000000000,-0.0051629497709698201,-0.0034959144872761501,0.99998056107684396565,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000020682100,-0.0000000704544000000,-1.1820607633697999272,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +25 ,0 ,-2.6242511015145502106,1.46929704804675997920,0.00000000000000000000,-1.0000000000000000000,-0.0059484833190917496,-0.0035416008188652900,0.99997603601778495274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003312280,-0.0000000281943000000,-1.1818342593493300629,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +26 ,0 ,-2.6422453205548399601,1.43297175037444990408,0.00000000000000000000,-1.0000000000000000000,-0.0067338674241869201,-0.0035910385663080498,0.99997087931175698827,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013209800000000,-1.1815925464704799541,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +27 ,0 ,-2.6601591043851500195,1.39659547069594003332,0.00000000000000000000,-1.0000000000000000000,-0.0075190745801666800,-0.0036442271137966898,0.99996509095377994480,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013211299999999,-1.1813356121963400902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +28 ,0 ,-2.3857154352915799222,1.84541499925932006576,0.00000000000000000000,-1.0000000000000000000,0.00275802610325511995,-0.0025044697304663098,0.99999306043761304607,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019710899999999,-1.1833390906668899145,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +29 ,0 ,-2.4045409259319998618,1.80973415733120002180,0.00000000000000000000,-1.0000000000000000000,0.00196890308186924980,-0.0025123661107219800,0.99999490570561400115,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019710799999999,-1.1832917906136799501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +30 ,0 ,-2.4232854459510599909,1.77400321632422008910,0.00000000000000000000,-1.0000000000000000000,0.00117965216017962000,-0.0025240318816499600,0.99999611883438899173,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047402200000,0.00000337298999999999,-1.1832294156749900704,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +31 ,0 ,-2.4419490472254499202,1.73822211388379010976,0.00000000000000000000,-1.0000000000000000000,0.00039030094804058798,-0.0025394690693870698,0.99999669937556101562,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046221100000,0.00000333071000000000,-1.1831519555175900038,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +32 ,0 ,-2.4605317810837799008,1.70239078635005003370,0.00000000000000000000,-1.0000000000000000000,-0.0003991229148543039,-0.0025586794378409899,0.99999664692459500070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046223500000,0.00000333079000000000,-1.1830593995865699152,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +33 ,0 ,-2.4790336982910901042,1.66650916876728993898,0.00000000000000000000,-1.0000000000000000000,-0.0011885917621701500,-0.0025816644882227799,0.99999596112088995347,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046226100000,0.00000333088000000000,-1.1829517371020299432,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +34 ,0 ,-2.4974548490337400430,1.63057719488688990239,0.00000000000000000000,-1.0000000000000000000,-0.0019780779041375898,-0.0026084254586341000,0.99999464164786000530,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013175799999999,-1.1828289570615899695,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +35 ,0 ,-2.5157952829041301257,1.59459479717426999556,0.00000000000000000000,-1.0000000000000000000,-0.0027675536307664701,-0.0026389633236938402,0.99999268823300702102,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013176900000000,-1.1826910482453700801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +36 ,0 ,-2.5340550488856501409,1.55856190681427997368,0.00000000000000000000,-1.0000000000000000000,-0.0035569912150667801,-0.0026732787942159198,0.99999010064799398467,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000048214400000,0.00000340175999999999,-1.1825379992131999085,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +37 ,0 ,-2.5522341953375899947,1.52247845371829004790,0.00000000000000000000,-1.0000000000000000000,-0.0043463629162752703,-0.0027113723169265900,0.99998687870869595872,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047024800000,0.00000335954000000000,-1.1823697983061300931,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +38 ,0 ,-2.5703327699801001848,1.48634436652986989813,0.00000000000000000000,-1.0000000000000000000,-0.0051356409830873002,-0.0027532440742313300,0.99998302227525903695,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047028400000,0.00000335966999999999,-1.1821864336488900892,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +39 ,0 ,-2.5883508198794999977,1.45015957263141004318,0.00000000000000000000,-1.0000000000000000000,-0.0059247976568932696,-0.0027988939840312698,0.99997853125214197778,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047032100000,0.00000335980000000000,-1.1819878931469200988,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +40 ,0 ,-2.6062883914333299095,1.41392399815114999661,0.00000000000000000000,-1.0000000000000000000,-0.0067138051750183398,-0.0028483216995792699,0.99997340558815295263,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012901599999999,-1.1817741644924799615,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +41 ,0 ,-2.6241455303557299494,1.37763756797125003217,0.00000000000000000000,-1.0000000000000000000,-0.0075026357739652396,-0.0029015266093848101,0.99996764527647497011,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047436200000,0.00000337419999999999,-1.1815452351661399621,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +42 ,0 ,-2.3505271485372998263,1.82531870675542995385,0.00000000000000000000,-1.0000000000000000000,0.00282192572665766012,-0.0017601152230987098,0.99999446934950297904,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012861900000000,-1.1831990064138200313,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +43 ,0 ,-2.3692959470537600097,1.78972615805555990142,0.00000000000000000000,-1.0000000000000000000,0.00202917146144100018,-0.0017677086241237899,0.99999637882814396139,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046107300000,0.00000332660000000000,-1.1831794580347199108,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +44 ,0 ,-2.3879837670526700144,1.75408363794740007612,0.00000000000000000000,-1.0000000000000000000,0.00123628640759624003,-0.0017790978381395700,0.99999765320064704088,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012863499999999,-1.1831448553006100876,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +45 ,0 ,-2.4065906613580501094,1.71839108407956997481,0.00000000000000000000,-1.0000000000000000000,0.00044329843209715602,-0.0017942849268408099,0.99999829201259204936,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047295500000,0.00000336919000000000,-1.1830951879104500967,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +46 ,0 ,-2.4251166822449099491,1.68264843278537989945,0.00000000000000000000,-1.0000000000000000000,-0.0003497645677085700,-0.0018132716866122199,0.99999829485381497296,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013147600000000,-1.1830304453279700815,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +47 ,0 ,-2.4435618814238200258,1.64685561908964994692,0.00000000000000000000,-1.0000000000000000000,-0.0011428746673424299,-0.0018360596480583900,0.99999766135849699200,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046902400000,0.00000335515999999999,-1.1829506168006700406,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +48 ,0 ,-2.4619263100253498954,1.61101257671262998449,0.00000000000000000000,-1.0000000000000000000,-0.0019360039184465999,-0.0018626500755775099,0.99999639120524996815,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013573999999999,-1.1828556913493499802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +49 ,0 ,-2.4802100185848199309,1.57511923807547993270,0.00000000000000000000,-1.0000000000000000000,-0.0027291243520431700,-0.0018930439669854199,0.99999448411719205065,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019696300000000,-1.1827456577767601064,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +50 ,0 ,-2.4984130570268598958,1.53917553430870990283,0.00000000000000000000,-1.0000000000000000000,-0.0035222079818001401,-0.0019272420531790100,0.99999193986201795336,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046125200000,0.00000332725000000000,-1.1826205046627400463,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +51 ,0 ,-2.5165354746503401095,1.50318139525574001602,0.00000000000000000000,-1.0000000000000000000,-0.0043152268073037396,-0.0019652447978554298,0.99998875825205502110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046128500000,0.00000332737000000000,-1.1824802203614099838,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +52 ,0 ,-2.5345773201130499252,1.46713674948062999803,0.00000000000000000000,-1.0000000000000000000,-0.0051081528173358703,-0.0020070523972698902,0.99998493914431996198,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046132100000,0.00000332749999999999,-1.1823247930190099452,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +53 ,0 ,-2.5525386414168700355,1.43104152427455000307,0.00000000000000000000,-1.0000000000000000000,-0.0059009579931562396,-0.0020526647800484000,0.99998048244056403355,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012873699999999,-1.1821542105607298900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +54 ,0 ,-2.5704194858926299183,1.39489564566327994832,0.00000000000000000000,-1.0000000000000000000,-0.0066936143117878399,-0.0021020816070384498,0.99997538808730801473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047323100000,0.00000337017999999999,-1.1819684606832701057,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +55 ,0 ,-2.5882199001853098963,1.35869903841290007306,0.00000000000000000000,-1.0000000000000000000,-0.0074860937493057503,-0.0021553022712147399,0.99996965607587096069,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013300800000000,-1.1817675308841399939,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +56 ,0 ,-2.3154278435917499123,1.80524216018839989139,0.00000000000000000000,-1.0000000000000000000,0.00288626140402463990,-0.0010122399967540400,0.99999532242170896534,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019964900000000,-1.1830717047293999311,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +57 ,0 ,-2.3341398717698900178,1.76973786888863005017,0.00000000000000000000,-1.0000000000000000000,0.00208985056348088985,-0.0010195267990815699,0.99999729654120994570,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.1830799022761799843,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +58 ,0 ,-2.3527709132939498282,1.73418373460003993891,0.00000000000000000000,-1.0000000000000000000,0.00129330600430862001,-0.0010306360842829399,0.99999863257348597933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046785200000,0.00000335097000000000,-1.1830730660215100780,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +59 ,0 ,-2.3713210219451501536,1.69857969497755001420,0.00000000000000000000,-1.0000000000000000000,0.00049665585359671602,-0.0010455699502000500,0.99999933005799601648,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019682200000000,-1.1830511856935599368,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +60 ,0 ,-2.3897902509548001326,1.66292568635031989821,0.00000000000000000000,-1.0000000000000000000,-0.0003000717306472869,-0.0010643302262419199,0.99999938857887604726,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013264200000000,-1.1830142507851599820,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +61 ,0 ,-2.4081786529886501924,1.62722164372410005306,0.00000000000000000000,-1.0000000000000000000,-0.0010968485627861300,-0.0010869184729074799,0.99999880776502103607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046006800000,0.00000332296999999999,-1.1829622505650800867,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +62 ,0 ,-2.4264862801314301954,1.59146750079017995638,0.00000000000000000000,-1.0000000000000000000,-0.0018936464328502299,-0.0011133359813512199,0.99999758729017895753,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019682099999999,-1.1828951740840198958,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +63 ,0 ,-2.4447131838710900453,1.55566318992740004745,0.00000000000000000000,-1.0000000000000000000,-0.0026904371098426501,-0.0011435837729973400,0.99999572687302595852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003325120,-0.0000000282489000000,-1.1828130101596299184,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +64 ,0 ,-2.4628594150834599574,1.51980864221185996143,0.00000000000000000000,-1.0000000000000000000,-0.0034871923450514197,-0.0011776625992002700,0.99999322627723397083,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013268399999999,-1.1827157473945799637,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +65 ,0 ,-2.4809250240167699530,1.48390378742087003516,0.00000000000000000000,-1.0000000000000000000,-0.0042838838753680103,-0.0012155729409525899,0.99999008531153399381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046018800000,0.00000332341000000000,-1.1826033741659800480,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +66 ,0 ,-2.4989100602763998359,1.44794855403997990705,0.00000000000000000000,-1.0000000000000000000,-0.0050804834266111997,-0.0012573150086436200,0.99998630382976805286,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013270999999999,-1.1824758786305000768,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +67 ,0 ,-2.5168145728095399071,1.41194286926991008357,0.00000000000000000000,-1.0000000000000000000,-0.0058769627168554598,-0.0013028887418595799,0.99998188173094004760,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046026000000,0.00000332367000000000,-1.1823332487308599869,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +68 ,0 ,-2.5346386098902797812,1.37588665903400997336,0.00000000000000000000,-1.0000000000000000000,-0.0066732934597634402,-0.0013522938092395699,0.99997681895924694916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046815600000,0.00000335205999999999,-1.1821754721806900789,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +69 ,0 ,-2.5523822191041598550,1.33977984798410010292,0.00000000000000000000,-1.0000000000000000000,-0.0074694473679209304,-0.0014055296083691499,0.99997111550411199587,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013132899999999,-1.1820025364885400342,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +70 ,0 ,-2.2804175351085600453,1.78518532750665004371,0.00000000000000000000,-1.0000000000000000000,0.00295103737130868008,-0.0002608197202879080,0.99999561166612405127,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020094300000000,-1.1829572231035900831,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +71 ,0 ,-2.2990727140291298269,1.74976925751020995214,0.00000000000000000000,-1.0000000000000000000,0.00215094438966400994,-0.0002677962576295160,0.99999765085893899119,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045888300000,0.00000331868999999999,-1.1829931608182300273,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +72 ,0 ,-2.3176468979156199523,1.71430347370300006915,0.00000000000000000000,-1.0000000000000000000,0.00135071471707056008,-0.0002786221981795899,0.99999904896925995156,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045890200000,0.00000331876000000000,-1.1830140853143100709,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +73 ,0 ,-2.3361401415161999750,1.67878791374884994702,0.00000000000000000000,-1.0000000000000000000,0.00055037674377031897,-0.0002932996765248049,0.99999980553035094921,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045892400000,0.00000331884000000000,-1.1830199863505899138,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +74 ,0 ,-2.3545524990283999144,1.64322251397353991109,0.00000000000000000000,-1.0000000000000000000,-0.0002500411085215640,-0.0003118305556542579,0.99999992012057103973,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045894700000,0.00000331891999999999,-1.1830108534384200513,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +75 ,0 ,-2.3728840240832100860,1.60760720936681988924,0.00000000000000000000,-1.0000000000000000000,-0.0010505103899519899,-0.0003342164264732440,0.99999939236346602200,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046682300000,0.00000334727999999999,-1.1829866758779399305,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +76 ,0 ,-2.3911347697293501290,1.57194193359091993755,0.00000000000000000000,-1.0000000000000000000,-0.0018510026258737599,-0.0003604586073591150,0.99999822192785503549,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046685100000,0.00000334737999999999,-1.1829474427406700964,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +77 ,0 ,-2.4093047884174798589,1.53622661898529000445,0.00000000000000000000,-1.0000000000000000000,-0.0026514893201973499,-0.0003905581437676500,0.99999640852791105150,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013098500000000,-1.1828931428705100614,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +78 ,0 ,-2.4273941319845198094,1.50046119657223009369,0.00000000000000000000,-1.0000000000000000000,-0.0034519419587500698,-0.0004245158078867160,0.99999395192323203840,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013099699999999,-1.1828237648840100870,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +79 ,0 ,-2.4454028516381400848,1.46464559606398991853,0.00000000000000000000,-1.0000000000000000000,-0.0042523320126416101,-0.0004623320983402350,0.99999085191889902635,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019950399999999,-1.1827392971839600921,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +80 ,0 ,-2.4633309979411599499,1.42877974586869993522,0.00000000000000000000,-1.0000000000000000000,-0.0050526309416348801,-0.0005040072399354329,0.99998710836553794667,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047893300000,0.00000339041999999999,-1.1826397279427300901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +81 ,0 ,-2.4811786207962600592,1.39286357309837005580,0.00000000000000000000,-1.0000000000000000000,-0.0058528101975219900,-0.0005495411834651190,0.99998272115936104320,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019667699999999,-1.1825250451199700307,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +82 ,0 ,-2.4989457694305499124,1.35689700357317000189,0.00000000000000000000,-1.0000000000000000000,-0.0066528412275035199,-0.0005989336055547970,0.99997769024220595213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000020906000,-0.0000000708361000000,-1.1823952364420600158,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +83 ,0 ,-2.5166324923804599400,1.32087996183238010061,0.00000000000000000000,-1.0000000000000000000,-0.0074526954775715097,-0.0006521839085580349,0.99997201560157100708,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045924200000,0.00000331999000000000,-1.1822502894280000340,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +84 ,0 ,-2.2454962378956699886,1.76514817586543992788,0.00000000000000000000,-1.0000000000000000000,0.00301625791424626988,0.00049417015546343600,0.99999532898111698209,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045777100000,0.00000331466999999999,-1.1828555993500899923,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +85 ,0 ,-2.2640944879261000188,1.72982029080462007541,0.00000000000000000000,-1.0000000000000000000,0.00221245698876101990,0.00048750759690474598,0.99999743368191496006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045778900000,0.00000331473000000000,-1.1829192714791401108,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +86 ,0 ,-2.2826117342954299616,1.69444282187826988916,0.00000000000000000000,-1.0000000000000000000,0.00140851635703272007,0.00047696846142808397,0.99999889429076804781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045780800000,0.00000331480000000000,-1.1829679509965000949,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +87 ,0 ,-2.3010480327288398427,1.65901570676155007966,0.00000000000000000000,-1.0000000000000000000,0.00060446467553664201,0.00046255057709232400,0.99999971033466794612,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019936700000000,-1.1830016276828700938,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +88 ,0 ,-2.3194034384001800397,1.62353888177809002613,0.00000000000000000000,-1.0000000000000000000,-0.0001996693672141319,0.00044425204676085101,0.99999988138612494470,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019936599999999,-1.1830202910926999049,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +89 ,0 ,-2.3376780059157300506,1.58801228190410004259,0.00000000000000000000,-1.0000000000000000000,-0.0010038570540504799,0.00042207124860271799,0.99999940706326195805,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013069999999999,-1.1830239305381800019,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +90 ,0 ,-2.3558717892983098707,1.55243584077501006746,0.00000000000000000000,-1.0000000000000000000,-0.0018080696425387999,0.00039600683654189599,0.99999828702990900541,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046976800000,0.00000335781999999999,-1.1830125351186799864,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +91 ,0 ,-2.3739848419713398541,1.51680949069048010002,0.00000000000000000000,-1.0000000000000000000,-0.0026122783683801501,0.00036605774066072999,0.99999652099567604146,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045793300000,0.00000331525000000000,-1.1829860937018599198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +92 ,0 ,-2.3920172167430000520,1.48113316262172989290,0.00000000000000000000,-1.0000000000000000000,-0.0034164544488170800,0.00033222316755249198,0.99999410871602900652,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045796400000,0.00000331537000000000,-1.1829445949255199543,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +93 ,0 ,-2.4099689657904699302,1.44540678621677010085,0.00000000000000000000,-1.0000000000000000000,-0.0042205690860469000,0.00029450260062474599,0.99999104999235199908,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012791800000000,-1.1828880272107700211,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +94 ,0 ,-2.4278401406442600141,1.40963028980815008317,0.00000000000000000000,-1.0000000000000000000,-0.0050245934706406002,0.00025289580035581200,0.99998734467200600661,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045803100000,0.00000331560999999999,-1.1828163787524799133,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +95 ,0 ,-2.4456307921724800280,1.37380360041762994427,0.00000000000000000000,-1.0000000000000000000,-0.0058284987849665402,0.00020740280450082200,0.99998299264836998379,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012794500000000,-1.1827296375138300899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +96 ,0 ,-2.4633409705656101884,1.33792664376537007164,0.00000000000000000000,-1.0000000000000000000,-0.0066322562066183296,0.00015802392824348899,0.99997799386088903617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003333790,-0.0000000282861000000,-1.1826277912555300808,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +97 ,0 ,-2.4809707253208199695,1.30199934427718000407,0.00000000000000000000,-1.0000000000000000000,-0.0074358369118454796,0.00010475976431068000,0.99997234829509695774,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020079799999999,-1.1825108274965701049,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +98 ,0 ,-2.2106639669177998719,1.74513067161788004710,0.00000000000000000000,-1.0000000000000000000,0.00308192736905157005,0.00125275440004496006,0.99999446614974096814,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000007621330,-0.0000000427692000000,-1.1827668716026700224,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +99 ,0 ,-2.2292052077033002177,1.70989093485005994033,0.00000000000000000000,-1.0000000000000000000,0.00227439245729591996,0.00124640958227694993,0.99999663679539596561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045669500000,0.00000331077000000000,-1.1828582723892400174,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +100 ,0 ,-2.2476654359502701296,1.67460174493844005105,0.00000000000000000000,-1.0000000000000000000,0.00146671478036313005,0.00123616075754001989,0.99999816032547494959,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003337610,-0.0000000283033000000,-1.1829347011969300051,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +101 ,0 ,-2.2660447083710901772,1.63926303957160990343,0.00000000000000000000,-1.0000000000000000000,0.00065892326408503298,0.00122200571591767992,0.99999903626061703576,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019639700000000,-1.1829961478346100456,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +102 ,0 ,-2.2843430811260101442,1.60387475507238996819,0.00000000000000000000,-1.0000000000000000000,-0.0001489531330932420,0.00120394252555161996,0.99999926416740902990,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019639599999999,-1.1830426018808599675,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +103 ,0 ,-2.3025606098068798210,1.56843682640557990914,0.00000000000000000000,-1.0000000000000000000,-0.0009568854235432100,0.00118196953315318994,0.99999884365848601408,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012760699999999,-1.1830740526755800789,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +104 ,0 ,-2.3206973494208598118,1.53294918718099992815,0.00000000000000000000,-1.0000000000000000000,-0.0017648445938922600,0.00115608536446420995,0.99999777439261805511,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045680900000,0.00000331118999999999,-1.1830904893522500298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +105 ,0 ,-2.3387533543743699304,1.49741176966080002941,0.00000000000000000000,-1.0000000000000000000,-0.0025728016084712299,0.00112628892466660004,0.99999605607479402635,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020067000000000,-1.1830919007875300152,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +106 ,0 ,-2.3567286784570899982,1.46182450476653991167,0.00000000000000000000,-1.0000000000000000000,-0.0033807274127697598,0.00109257939874334995,0.99999368845629099666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046874000000,0.00000335414999999999,-1.1830782756504700792,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +107 ,0 ,-2.3746233748259899520,1.42618732208262999350,0.00000000000000000000,-1.0000000000000000000,-0.0041885929368981203,0.00105495625178658996,0.99999067133474595081,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020066800000000,-1.1830496023787899773,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +108 ,0 ,-2.3924374959894398884,1.39050014986659009608,0.00000000000000000000,-1.0000000000000000000,-0.0049963690990547596,0.00101341922926261995,0.99998700455420497235,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013194000000000,-1.1830058691807598947,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +109 ,0 ,-2.4101710937914297971,1.35476291505241008827,0.00000000000000000000,-1.0000000000000000000,-0.0058040268089989003,0.00096796835721901796,0.99998268800517697840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046481600000,0.00000334007999999999,-1.1829470640463999320,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +110 ,0 ,-2.4278242193958998740,1.31897554325983001888,0.00000000000000000000,-1.0000000000000000000,-0.0066115369715272400,0.00091860394244624998,0.99997772162467302159,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047682400000,0.00000338294999999999,-1.1828731747405099028,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +111 ,0 ,-2.4453969232711099124,1.28313795880111003455,0.00000000000000000000,-1.0000000000000000000,-0.0074188704899537495,0.00086532657258886502,0.99997210539623404557,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013054100000000,-1.1827841888073200582,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +112 ,0 ,-2.1759207372987900974,1.72513278030352990022,0.00000000000000000000,-1.0000000000000000000,0.00314805012312138017,0.00201495800577434006,0.99999301483793201494,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012730099999999,-1.1826910783415800487,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +113 ,0 ,-2.1944048877535600183,1.68998115490885991718,0.00000000000000000000,-1.0000000000000000000,0.00233675494021344997,0.00200893473972551996,0.99999525186750803928,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019625599999999,-1.1828102020315300890,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +114 ,0 ,-2.2128080165383900990,1.65478020787674995339,0.00000000000000000000,-1.0000000000000000000,0.00152531388887730003,0.00199897977731038978,0.99999683874369804659,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020053999999999,-1.1829143743949499523,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +115 ,0 ,-2.2311301813631900792,1.61952987691125005476,0.00000000000000000000,-1.0000000000000000000,0.00071375616746846397,0.00198509087000314993,0.99999777498070996362,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013015599999999,-1.1830035852744900104,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +116 ,0 ,-2.2493714393849901789,1.58423009833802996837,0.00000000000000000000,-1.0000000000000000000,-0.0000978889924580448,0.00196726605063734984,0.99999806013913394853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046350300000,0.00000333536000000000,-1.1830778242747299611,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +117 ,0 ,-2.2675318471914898132,1.54888080711029996194,0.00000000000000000000,-1.0000000000000000000,-0.0009095923296263359,0.00194550363392786995,0.99999769382604297707,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046352700000,0.00000333544000000000,-1.1831370807693699642,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +118 ,0 ,-2.2856114607845601227,1.51348193681539000543,0.00000000000000000000,-1.0000000000000000000,-0.0017213245565277398,0.00191980221694110003,0.99999667569508399189,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013446800000000,-1.1831813439055200998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +119 ,0 ,-2.3036103355640298318,1.47803341967977996951,0.00000000000000000000,-1.0000000000000000000,-0.0025330563629176300,0.00189016067951252989,0.99999500544656094724,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046358300000,0.00000333564000000000,-1.1832106025924500336,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +120 ,0 ,-2.3215285263115199576,1.44253518657498003285,0.00000000000000000000,-1.0000000000000000000,-0.0033447584193199201,0.00185657818461226991,0.99999268282750997105,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013020800000000,-1.1832248455186800129,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +121 ,0 ,-2.3393660871740999951,1.40698716702476001039,0.00000000000000000000,-1.0000000000000000000,-0.0041564013805379896,0.00181905417866840002,0.99998970763176298071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046768600000,0.00000335037000000000,-1.1832240611420299369,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +122 ,0 ,-2.3571230716484801170,1.37138928921162994711,0.00000000000000000000,-1.0000000000000000000,-0.0049679558891722198,0.00177758839182757004,0.99998607970000896738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045584100000,0.00000330767000000000,-1.1832082376890900032,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +123 ,0 ,-2.3747995325648201259,1.33574147998277004134,0.00000000000000000000,-1.0000000000000000000,-0.0057793925791419804,0.00173218083817428003,0.99998179891984095846,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012741499999999,-1.1831773631682800385,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +124 ,0 ,-2.3923955220711099478,1.30004366485893996241,0.00000000000000000000,-1.0000000000000000000,-0.0065906820792121598,0.00168283181589195997,0.99997686522579598555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045591500000,0.00000330793999999999,-1.1831314253577100981,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +125 ,0 ,-2.4099110916169999008,1.26429576803964005549,0.00000000000000000000,-1.0000000000000000000,-0.0074017950165226296,0.00162954190738257009,0.99997127859939305416,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046783100000,0.00000335089000000000,-1.1830704118158299475,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +126 ,0 ,-2.1412665643240798019,1.70515446663949998828,0.00000000000000000000,-1.0000000000000000000,0.00321463061575191994,0.00278080619016279981,0.99999096659266695219,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013132899999999,-1.1826282583726899222,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +127 ,0 ,-2.1596935426222398923,1.67009091541543996939,0.00000000000000000000,-1.0000000000000000000,0.00239954863155816995,0.00277510833640736993,0.99999327044739905190,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000007678580,-0.0000000429295000000,-1.1827750992083601033,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +128 ,0 ,-2.1780394898614998666,1.63497817485537000337,0.00000000000000000000,-1.0000000000000000000,0.00158431763067912005,0.00276545083449276007,0.99999492109676602069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046236200000,0.00000333125000000000,-1.1829070093977001043,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +129 ,0 ,-2.1963044647597498304,1.59981618267990999271,0.00000000000000000000,-1.0000000000000000000,0.00076896708720575602,0.00275183139663919993,0.99999591804845999742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046238300000,0.00000333131999999999,-1.1830239788128000810,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +130 ,0 ,-2.2144885254813200248,1.56460487521937996469,0.00000000000000000000,-1.0000000000000000000,-0.0000464734909742993,0.00273424801977522995,0.99999626085699999666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045457200000,0.00000330307000000000,-1.1831259970839500539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +131 ,0 ,-2.2325917296202502093,1.52934418741857003354,0.00000000000000000000,-1.0000000000000000000,-0.0008619745657049160,0.00271269898606917980,0.99999594912382394618,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019611199999999,-1.1832130536201899140,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +132 ,0 ,-2.2506141341835999014,1.49403405284306001199,0.00000000000000000000,-1.0000000000000000000,-0.0016775065720991599,0.00268718286340980001,0.99999498249739204869,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045462200000,0.00000330325000000000,-1.1832851375869499754,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +133 ,0 ,-2.2685557955751400882,1.45867440368478007428,0.00000000000000000000,-1.0000000000000000000,-0.0024930399220861698,0.00265769850583069981,0.99999336067325894639,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012709800000000,-1.1833422379222600095,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +134 ,0 ,-2.2864167695789001655,1.42326517076758007895,0.00000000000000000000,-1.0000000000000000000,-0.0033085450079655600,0.00262424505388458980,0.99999108339416098445,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012710999999999,-1.1833843433371400433,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +135 ,0 ,-2.3041971113427499595,1.38780628355533997009,0.00000000000000000000,-1.0000000000000000000,-0.0041239922059687402,0.00258682193497238987,0.99998815045007505286,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019611100000000,-1.1834114423095301038,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +136 ,0 ,-2.3218968753621300749,1.35229767015722002199,0.00000000000000000000,-1.0000000000000000000,-0.0049393518798265196,0.00254542886361330995,0.99998456167828297935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046663300000,0.00000334659999999999,-1.1834235230809300176,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +137 ,0 ,-2.3395161154640500278,1.31673925733442009899,0.00000000000000000000,-1.0000000000000000000,-0.0057545943843418803,0.00250006584166378997,0.99998031696341904694,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019611000000000,-1.1834205736804499498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +138 ,0 ,-2.3570548847909300604,1.28113097050825008871,0.00000000000000000000,-1.0000000000000000000,-0.0065696900689667797,0.00245073315848742985,0.99997541623751096118,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020039899999999,-1.1834025819036899651,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +139 ,0 ,-2.3745132357845402104,1.24547273376749001450,0.00000000000000000000,-1.0000000000000000000,-0.0073846092813825998,0.00239743139107445992,0.99996985948001804178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045486000000,0.00000330411000000000,-1.1833695353189999099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +140 ,0 ,-2.1067014634433798292,1.68519569450810990929,0.00000000000000000000,-1.0000000000000000000,0.00328167333886619002,0.00355032439836088994,0.99998831284008704578,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003350440,-0.0000000283581000000,-1.1825784508654400006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +141 ,0 ,-2.1250711870097198641,1.65022017996778003201,0.00000000000000000000,-1.0000000000000000000,0.00246277777516357978,0.00354495586785757987,0.99999068396336798780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000021222300,-0.0000000713696000000,-1.1827530030882400513,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +142 ,0 ,-2.1433598698670599524,1.61519560919575999591,0.00000000000000000000,-1.0000000000000000000,0.00164373000081150010,0.00353559947191367995,0.99999239881514001559,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019597300000000,-1.1829126453706100274,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +143 ,0 ,-2.1615675717519500231,1.58012191993202999462,0.00000000000000000000,-1.0000000000000000000,0.00082455976889342298,0.00352225288283886019,0.99999345689650298574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045345700000,0.00000329900999999999,-1.1830573676153299800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +144 ,0 ,-2.1796943518464999556,1.54499904851413005779,0.00000000000000000000,-1.0000000000000000000,0.00000529686689801008,0.00350491406105136018,0.99999385775581994817,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045347900000,0.00000329909000000000,-1.1831871594779399536,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +145 ,0 ,-2.1977402687616898191,1.50982692987928990291,0.00000000000000000000,-1.0000000000000000000,-0.0008140288868597210,0.00348358125561304019,0.99999360098882994485,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019597099999999,-1.1833020103977101022,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +146 ,0 ,-2.2157053805205499941,1.47460549757393000191,0.00000000000000000000,-1.0000000000000000000,-0.0016333876468265500,0.00345825300472186016,0.99999268623873005523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045352900000,0.00000329928000000000,-1.1834019095655299302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +147 ,0 ,-2.2335897445413901429,1.43933468375667006355,0.00000000000000000000,-1.0000000000000000000,-0.0024527495438084597,0.00342892813614676002,0.99999111319626898808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046545500000,0.00000334236999999999,-1.1834868459453700140,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +148 ,0 ,-2.2513934176213199478,1.40401441920577996214,0.00000000000000000000,-1.0000000000000000000,-0.0032720846885760900,0.00339560576760950015,0.99998888159982202150,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019880499999999,-1.1835568082701699577,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +149 ,0 ,-2.2691164559196401739,1.36864463332584995747,0.00000000000000000000,-1.0000000000000000000,-0.0040913631754770701,0.00335828530711768016,0.99998599123545794942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000007699220,-0.0000000429867000000,-1.1836117850359599845,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +150 ,0 ,-2.2867589149413700688,1.33322525415345993771,0.00000000000000000000,-1.0000000000000000000,-0.0049105550860548902,0.00331696645324324997,0.99998244193700502879,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013400399999999,-1.1836517645115200991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +151 ,0 ,-2.3043208495209599462,1.29775620836581007111,0.00000000000000000000,-1.0000000000000000000,-0.0057296304926727102,0.00327164919534822995,0.99997823358609194688,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012971899999999,-1.1836767347406300654,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +152 ,0 ,-2.3218023138059900034,1.26223742128515992177,0.00000000000000000000,-1.0000000000000000000,-0.0065485594621419304,0.00322233381375653001,0.99997336611220000168,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013119499999999,-1.1836866835302499723,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +153 ,0 ,-2.3392033612410201293,1.22666881688952988938,0.00000000000000000000,-1.0000000000000000000,-0.0073673120593538898,0.00316902087987652996,0.99996783949269196778,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045376600000,0.00000330013999999999,-1.1836815984673900725,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +154 ,0 ,-2.0722254502728700842,1.66525642694701003776,0.00000000000000000000,-1.0000000000000000000,0.00334918283775462004,0.00432353830564907986,0.99998504488359196695,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046013600000,0.00000332321999999999,-1.1825416953369098926,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +155 ,0 ,-2.0905378357736998928,1.63036891131461003645,0.00000000000000000000,-1.0000000000000000000,0.00252644666535318997,0.00431850306048587023,0.99998748372095302983,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012934899999999,-1.1827439531907699699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +156 ,0 ,-2.1087691706506102029,1.59543247336735993791,0.00000000000000000000,-1.0000000000000000000,0.00170355504191794008,0.00430945146397771015,0.99998926320651004839,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046017100000,0.00000332335000000000,-1.1829313218304400301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +157 ,0 ,-2.1269195156694098436,1.56044705086777990565,0.00000000000000000000,-1.0000000000000000000,0.00088053800282811896,0.00429638114785929961,0.99999038283468399956,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012936500000000,-1.1831037911881598923,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +158 ,0 ,-2.1449889310409600007,1.52541258016066993974,0.00000000000000000000,-1.0000000000000000000,0.00005742561848761209,0.00427929003541350008,0.99999084214761302380,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012937299999999,-1.1832613509637899262,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +159 ,0 ,-2.1629774764039000345,1.49032899618028991106,0.00000000000000000000,-1.0000000000000000000,-0.0007657520093043710,0.00425817634202951995,0.99999064073525201212,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046023700000,0.00000332358999999999,-1.1834039906079900639,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +160 ,0 ,-2.1808852108078999876,1.45519623245381990450,0.00000000000000000000,-1.0000000000000000000,-0.0015889647509934100,0.00423303857569367995,0.99998977823547596788,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013370099999999,-1.1835316993478999236,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +161 ,0 ,-2.1987121926967501117,1.42001422110949993005,0.00000000000000000000,-1.0000000000000000000,-0.0024121824529187599,0.00420387553743740028,0.99998825433416005381,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012656599999999,-1.1836444661681799761,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +162 ,0 ,-2.2164584798914801488,1.38478289288058009631,0.00000000000000000000,-1.0000000000000000000,-0.0032353749409703099,0.00417068632172707016,0.99998606876525897302,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020013600000000,-1.1837422798232599685,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +163 ,0 ,-2.2341241295735700944,1.34950217711383002594,0.00000000000000000000,-1.0000000000000000000,-0.0040585120242529497,0.00413347031680611019,0.99998322131088202002,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045252700000,0.00000329562999999999,-1.1838251288344299183,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +164 ,0 ,-2.2517091982684798168,1.31417200177548010309,0.00000000000000000000,-1.0000000000000000000,-0.0048815634987575398,0.00409222720497592982,0.99997971180135003521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000021266000,-0.0000000714426000000,-1.1838930014914699206,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +165 ,0 ,-2.2692137418289402006,1.27879229345777001292,0.00000000000000000000,-1.0000000000000000000,-0.0057044991510368497,0.00404695696282920003,0.99997554011524503181,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019582699999999,-1.1839458858495399695,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +166 ,0 ,-2.2866378154186199900,1.24336297738672008073,0.00000000000000000000,-1.0000000000000000000,-0.0065272887618864298,0.00399765986142535962,0.99997070617946204329,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000021261300,-0.0000000714340000000,-1.1839837697459600907,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +167 ,0 ,-2.3039814734956101105,1.20788397742946007618,0.00000000000000000000,-1.0000000000000000000,-0.0073499021100285298,0.00394433646641951032,0.99996520996923299318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003355480,-0.0000000283779000000,-1.1840066407711400398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +168 ,0 ,-2.0378385405981500611,1.64533662613836995092,0.00000000000000000000,-1.0000000000000000000,0.00341716371182618997,0.00510047381994188989,0.99998115390190200901,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045904100000,0.00000331927000000000,-1.1825180316563999038,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +169 ,0 ,-2.0560935039317098649,1.61053707134563994785,0.00000000000000000000,-1.0000000000000000000,0.00259055964765261001,0.00509577587410087011,0.99998366090099299885,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012624500000000,-1.1827479893837600233,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +170 ,0 ,-2.0742674064578898729,1.57568872897685996470,0.00000000000000000000,-1.0000000000000000000,0.00176379684491497000,0.00508703281920803041,0.99998550545384701226,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020000800000000,-1.1829630786492100202,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +171 ,0 ,-2.0923603099826801887,1.54079153681901992456,0.00000000000000000000,-1.0000000000000000000,0.00093690562463819297,0.00507424224574187961,0.99998668704812398999,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000021339900,-0.0000000715668000000,-1.1831632894181900450,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +172 ,0 ,-2.1103722757563700973,1.50584543122840996964,0.00000000000000000000,-1.0000000000000000000,0.00010991634350331199,0.00505740203922622026,0.99998720521965300811,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019568900000000,-1.1833486114169300407,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +173 ,0 ,-2.1283033644564000042,1.47085034713600992795,0.00000000000000000000,-1.0000000000000000000,-0.0007171406098342420,0.00503651038079038979,0.99998705955253697208,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019568900000000,-1.1835190341314500983,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +174 ,0 ,-2.1461536361700201958,1.43580621805289010417,0.00000000000000000000,-1.0000000000000000000,-0.0015442348184365501,0.00501156574767968980,0.99998624967925597850,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045134600000,0.00000329133000000000,-1.1836745468074199028,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +175 ,0 ,-2.1639231503773599385,1.40071297607797995432,0.00000000000000000000,-1.0000000000000000000,-0.0023713358407845800,0.00498256691370856964,0.99998477528074503073,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046328900000,0.00000333458999999999,-1.1838151384622499495,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +176 ,0 ,-2.1816119659342998460,1.36557055190149001511,0.00000000000000000000,-1.0000000000000000000,-0.0031984132144878998,0.00494951294965866993,0.99998263608648296774,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013062699999999,-1.1839407978707199298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +177 ,0 ,-2.1992201410556599938,1.33037887481404992762,0.00000000000000000000,-1.0000000000000000000,-0.0040254364600019699,0.00491240322362563024,0.99997983187455996567,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020000200000000,-1.1840515135772899935,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +178 ,0 ,-2.2167477332981699866,1.29513787271123992361,0.00000000000000000000,-1.0000000000000000000,-0.0048523750843515404,0.00487123740131189999,0.99997636247174404022,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013065099999999,-1.1841472738921099416,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +179 ,0 ,-2.2341947995439501717,1.25984747210338010603,0.00000000000000000000,-1.0000000000000000000,-0.0056791985848601497,0.00482601544626120974,0.99997222775352401225,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045150300000,0.00000329190000000000,-1.1842280668861300263,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +180 ,0 ,-2.2515613959836198176,1.22450759811921994213,0.00000000000000000000,-1.0000000000000000000,-0.0065058764528837104,0.00477673762004205033,0.99996742764416501891,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013067800000000,-1.1842938804134099939,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +181 ,0 ,-2.2688475780999599606,1.18911817451654000521,0.00000000000000000000,-1.0000000000000000000,-0.0073323781775480999,0.00472340448237374040,0.99996196211673904485,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020283799999999,-1.1843447020887700738,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +182 ,0 ,-2.0035407503765498837,1.62543625339795005935,0.00000000000000000000,-1.0000000000000000000,0.00348562061537297006,0.00588115708433873014,0.99997663094708200137,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019555000000000,-1.1825075000640499212,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +183 ,0 ,-2.0217382066635600779,1.59072462107984002877,0.00000000000000000000,-1.0000000000000000000,0.00265512111951330016,0.00587680050446747967,0.99997920655765204500,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019555000000000,-1.1827651519085999876,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +184 ,0 ,-2.0398545916873298544,1.55596433675660006379,0.00000000000000000000,-1.0000000000000000000,0.00182445954967525004,0.00586836978281241039,0.99998111661343103140,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046209200000,0.00000333027000000000,-1.1830079560679700456,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +185 ,0 ,-2.0578899683050200231,1.52115533824179993693,0.00000000000000000000,-1.0000000000000000000,0.00099366651592693706,0.00585586246790464979,0.99998236059523204488,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000021400800,-0.0000000716683000000,-1.1832359025368099914,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +186 ,0 ,-2.0758443988175701022,1.48629756190497008816,0.00000000000000000000,-1.0000000000000000000,0.00016277266463571098,0.00583927640686299036,0.99998293803249704847,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000021399400,-0.0000000716657000000,-1.1834489810764801109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +187 ,0 ,-2.0937179449521301499,1.45139094267678991911,0.00000000000000000000,-1.0000000000000000000,-0.0006681913252661230,0.00581860974597003983,0.99998284850340202201,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000007793590,-0.0000000432492000000,-1.1836471811993800606,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +188 ,0 ,-2.1115106678446498023,1.41643541405384998377,0.00000000000000000000,-1.0000000000000000000,-0.0014991947460265601,0.00579386093118855038,0.99998209163495699325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047009900000,0.00000335900999999999,-1.1838304921822100368,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +189 ,0 ,-2.1292226280227599666,1.38143090810697999337,0.00000000000000000000,-1.0000000000000000000,-0.0023302068648286800,0.00576502870862416038,0.99998066710309696514,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019838800000000,-1.1839989030655699853,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +190 ,0 ,-2.1468538853883400996,1.34637735548526005224,0.00000000000000000000,-1.0000000000000000000,-0.0031611969275535597,0.00573211212493524024,0.99997857463276296208,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013320900000000,-1.1841524026488099430,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +191 ,0 ,-2.1644044992005602168,1.31127468542422009889,0.00000000000000000000,-1.0000000000000000000,-0.0039921341625513600,0.00569511052768395965,0.99997581399797197398,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013037999999999,-1.1842909794971800963,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +192 ,0 ,-2.1818745280587301671,1.27612282575134994289,0.00000000000000000000,-1.0000000000000000000,-0.0048229877844187096,0.00565402356563571035,0.99997238502188201536,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019986799999999,-1.1844146219425499833,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +193 ,0 ,-2.1992640298853398661,1.24092170289403003202,0.00000000000000000000,-1.0000000000000000000,-0.0056537269977817604,0.00560885118900151039,0.99996828757684796951,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019554500000000,-1.1845233180808900641,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +194 ,0 ,-2.2165730619092900433,1.20567124188633001402,0.00000000000000000000,-1.0000000000000000000,-0.0064843210010842302,0.00555959364962266017,0.99996352158446599744,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045044900000,0.00000328804999999999,-1.1846170557747699447,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +195 ,0 ,-2.2338016806489400245,1.17037136637646010939,0.00000000000000000000,-1.0000000000000000000,-0.0073147389903787801,0.00550625150110633978,0.99995808701560595643,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012611200000000,-1.1846958226529999969,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +196 ,0 ,-2.4563588963705100809,1.88566694638418996810,0.00000000000000000000,-1.0000000000000000000,0.00263151831936288011,-0.0039827128367256299,0.99998860648999199352,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012940599999999,-1.1836574585472598997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +197 ,0 ,-2.4752975393920397806,1.84980941156582989748,0.00000000000000000000,-1.0000000000000000000,0.00184958271503832998,-0.0039912045009432598,0.99999032461839998386,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046436300000,0.00000333845000000000,-1.1835546378928301081,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +198 ,0 ,-2.4941552268770901257,1.81390152454616004895,0.00000000000000000000,-1.0000000000000000000,0.00106752486454876008,-0.0040034134425497303,0.99999141649889800032,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019739199999999,-1.1834367013678999125,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +199 ,0 ,-2.5129320088365498797,1.77794322296656992499,0.00000000000000000000,-1.0000000000000000000,0.00028537187233351599,-0.0040193416182956499,0.99999188169497199574,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013365100000000,-1.1833036385891100294,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/pm_ell_ip_200mirrormis.rayx.csv b/Intern/RayCore/tests/output/pm_ell_ip_200mirrormis.rayx.csv new file mode 100644 index 000000000..1f34de6bc --- /dev/null +++ b/Intern/RayCore/tests/output/pm_ell_ip_200mirrormis.rayx.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-2.4563588963684805932,1.88566694638255527571,0.00000000000000000000,1.00000000000000000000,0.00263151831936488589,-0.0039827128367267844,0.99998860648999166045,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163425414531957,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +1 ,0 ,-2.4752975393902545420,1.84980941156449962825,0.00000000000000000000,1.00000000000000000000,0.00184958271504007576,-0.0039912045009440960,0.99999032461839953978,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8164453621066058,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +2 ,0 ,-2.4941552268756161936,1.81390152454463460252,0.00000000000000000000,1.00000000000000000000,0.00106752486455018820,-0.0040034134425516549,0.99999141649889777827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165632986292621,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +3 ,0 ,-2.5129320088353086504,1.77794322296416229534,0.00000000000000000000,1.00000000000000000000,0.00028537187233473469,-0.0040193416182971062,0.99999188169497155165,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166963614112319,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +4 ,0 ,-2.5316279347338359606,1.74193444318630286105,0.00000000000000000000,1.00000000000000000000,-0.0004968491283678308,-0.0040389907287280953,0.99999171981313783597,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168445610608614,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +5 ,0 ,-2.5502430534742823731,1.70587512029571231053,0.00000000000000000000,1.00000000000000000000,-0.0012791109786305747,-0.0040623622177422963,0.99999093050303022867,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170079083974997,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +6 ,0 ,-2.5687774133834757606,1.66976518811218110904,0.00000000000000000000,1.00000000000000000000,-0.0020613864969566352,-0.0040894572721904371,0.99998951345748066099,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171864144715073,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +7 ,0 ,-2.5872310621970773247,1.63360457919263279968,0.00000000000000000000,1.00000000000000000000,-0.0028436484824048962,-0.0041202768215153340,0.99998746841259111839,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173800905497046,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +8 ,0 ,-2.6056040470449244317,1.59739322483633783278,0.00000000000000000000,1.00000000000000000000,-0.0036258697177221944,-0.0041548215374452111,0.99998479514779736732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8175889481044578,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +9 ,0 ,-2.6238964144361740515,1.56113105509286476113,0.00000000000000000000,1.00000000000000000000,-0.0044080229724812666,-0.0041930918337208860,0.99998149348592879626,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8178129988318687,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +10 ,0 ,-2.6421082102447828177,1.52481799876483181677,0.00000000000000000000,1.00000000000000000000,-0.0051900810062234367,-0.0042350878658758105,0.99997756329325571122,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8180522546426800,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +11 ,0 ,-2.6602394796950594724,1.48845398342343360198,0.00000000000000000000,1.00000000000000000000,-0.0059720165716059189,-0.0042808095310580334,0.99997300447953474389,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8183067276568181,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +12 ,0 ,-2.6782902673469255461,1.45203893540246253834,0.00000000000000000000,1.00000000000000000000,-0.0067538024175520395,-0.0043302564678921618,0.99996781699804071497,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8185764302088500,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +13 ,0 ,-2.6962606170819611861,1.41557277981587570359,0.00000000000000000000,1.00000000000000000000,-0.0075354112924045195,-0.0043834280563973242,0.99996200084559672127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8188613748479838,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +14 ,0 ,-2.4209926893512130341,1.86553106896933784675,0.00000000000000000000,1.00000000000000000000,0.00269455834696663001,-0.0032453276343184403,0.99999110356235720864,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165080796698021,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +15 ,0 ,-2.4398747945976229090,1.82976189824679780215,0.00000000000000000000,1.00000000000000000000,0.00190904146954132747,-0.0032535234204798513,0.99999288504769878738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165831371552485,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +16 ,0 ,-2.4586759368819404159,1.79394250151897760581,0.00000000000000000000,1.00000000000000000000,0.00112339953909263725,-0.0032654624197140801,0.99999403734655412101,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166732900190254,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +17 ,0 ,-2.4773961671432238595,1.75807281642715551583,0.00000000000000000000,1.00000000000000000000,0.00033765991131031434,-0.0032811466231821295,0.99999456001651410019,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167785486421053,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +18 ,0 ,-2.4960355357731871528,1.72215277931925125898,0.00000000000000000000,1.00000000000000000000,-0.0004481500288014714,-0.0033005777628465006,0.99999445265860520404,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168989235946355,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +19 ,0 ,-2.5145940926011767224,1.68618232526255629188,0.00000000000000000000,1.00000000000000000000,-0.0012340028700782586,-0.0033237573110208198,0.99999371491737587547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170344256868702,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +20 ,0 ,-2.5330718868789285913,1.65016138804005230156,0.00000000000000000000,1.00000000000000000000,-0.0020198711783571540,-0.0033506864799580722,0.99999234648097978794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171850659346091,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +21 ,0 ,-2.5514689672657717700,1.61408990016260722732,0.00000000000000000000,1.00000000000000000000,-0.0028057274996467103,-0.0033813662214919439,0.99999034708124767689,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173508555846638,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +22 ,0 ,-2.5697853818134226422,1.57796779287291588644,0.00000000000000000000,1.00000000000000000000,-0.0035915443633026370,-0.0034157972267118150,0.99998771649375395309,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8175318061003054,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +23 ,0 ,-2.5880211779513460079,1.54179499614881754254,0.00000000000000000000,1.00000000000000000000,-0.0043772942852100529,-0.0034539799256957039,0.99998445453787621062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8177279291521699,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +24 ,0 ,-2.6061764024718772070,1.50557143871475718199,0.00000000000000000000,1.00000000000000000000,-0.0051629497709703830,-0.0034959144872778666,0.99998056107684418769,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8179392366346291,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +25 ,0 ,-2.6242511015153913156,1.46929704804550942398,0.00000000000000000000,1.00000000000000000000,-0.0059484833190925857,-0.0035416008188665754,0.99997603601778506376,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8181657406512385,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +26 ,0 ,-2.6422453205559643940,1.43297175037291824040,0.00000000000000000000,1.00000000000000000000,-0.0067338674241880112,-0.0035910385663095126,0.99997087931175721031,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8184074535329273,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +27 ,0 ,-2.6601591043865115970,1.39659547069523881646,0.00000000000000000000,1.00000000000000000000,-0.0075190745801680348,-0.0036442271137978165,0.99996509095377983378,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8186643878052564,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +28 ,0 ,-2.3857154352895406645,1.84541499925858487607,0.00000000000000000000,1.00000000000000000000,0.00275802610325710361,-0.0025044697304674643,0.99999306043761293505,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166609093350416,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +29 ,0 ,-2.4045409259302092941,1.80973415733007692018,0.00000000000000000000,1.00000000000000000000,0.00196890308187101445,-0.0025123661107233226,0.99999490570561422320,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167082093896169,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +30 ,0 ,-2.4232854459495078991,1.77400321632360324919,0.00000000000000000000,1.00000000000000000000,0.00117965216018115458,-0.0025240318816503876,0.99999611883438921378,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167705843279691,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +31 ,0 ,-2.4419490472241891509,1.73822211388271763432,0.00000000000000000000,1.00000000000000000000,0.00039030094804181258,-0.0025394690693882927,0.99999669937556079357,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168480444819579,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +32 ,0 ,-2.4605317810827660451,1.70239078634852902816,0.00000000000000000000,1.00000000000000000000,-0.0003991229148532980,-0.0025586794378419657,0.99999664692459533377,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169406004126358,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +33 ,0 ,-2.4790336982903320439,1.66650916876601873362,0.00000000000000000000,1.00000000000000000000,-0.0011885917621694058,-0.0025816644882234807,0.99999596112089050858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170482628975150,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +34 ,0 ,-2.4974548490332457717,1.63057719488594821122,0.00000000000000000000,1.00000000000000000000,-0.0019780779041370950,-0.0026084254586347501,0.99999464164786000530,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171710429433005,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +35 ,0 ,-2.5157952829039165187,1.59459479717263929998,0.00000000000000000000,1.00000000000000000000,-0.0027675536307662537,-0.0026389633236952735,0.99999268823300746511,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173089517567859,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +36 ,0 ,-2.5340550488857140898,1.55856190681363648842,0.00000000000000000000,1.00000000000000000000,-0.0035569912150668447,-0.0026732787942173427,0.99999010064799376262,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174620007885096,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +37 ,0 ,-2.5522341953378786527,1.52247845371644796585,0.00000000000000000000,1.00000000000000000000,-0.0043463629162755574,-0.0027113723169272367,0.99998687870869562566,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8176302016963745,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +38 ,0 ,-2.5703327699806490791,1.48634436652852053306,0.00000000000000000000,1.00000000000000000000,-0.0051356409830878579,-0.0027532440742318552,0.99998302227525892593,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8178135663529246,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +39 ,0 ,-2.5883508198803171218,1.45015957263079586780,0.00000000000000000000,1.00000000000000000000,-0.0059247976568940798,-0.0027988939840323206,0.99997853125214219982,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8180121068544394,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +40 ,0 ,-2.6062883914344197044,1.41392399815068348090,0.00000000000000000000,1.00000000000000000000,-0.0067138051750194188,-0.0028483216995798120,0.99997340558815261957,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8182258355082012,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +41 ,0 ,-2.6241455303570635493,1.37763756797079883753,0.00000000000000000000,1.00000000000000000000,-0.0075026357739665771,-0.0029015266093853071,0.99996764527647530318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8184547648324951,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +42 ,0 ,-2.3505271485351810767,1.82531870675435525797,0.00000000000000000000,1.00000000000000000000,0.00282192572665979643,-0.0017601152230987226,0.99999446934950342313,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168009935889131,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +43 ,0 ,-2.3692959470519179276,1.78972615805503498798,0.00000000000000000000,1.00000000000000000000,0.00202917146144285633,-0.0017677086241239157,0.99999637882814373934,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168205419697187,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +44 ,0 ,-2.3879837670510837277,1.75408363794689448056,0.00000000000000000000,1.00000000000000000000,0.00123628640759781884,-0.0017790978381394841,0.99999765320064670781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168551446997298,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +45 ,0 ,-2.4065906613567205063,1.71839108407877994011,0.00000000000000000000,1.00000000000000000000,0.00044329843209850054,-0.0017942849268409075,0.99999829201259204936,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169048120962543,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +46 ,0 ,-2.4251166822438583459,1.68264843278474374166,0.00000000000000000000,1.00000000000000000000,-0.0003497645677075128,-0.0018132716866123407,0.99999829485381519500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169695546730508,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +47 ,0 ,-2.4435618814230455342,1.64685561908928645991,0.00000000000000000000,1.00000000000000000000,-0.0011428746673416653,-0.0018360596480587805,0.99999766135849710302,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170493832039937,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +48 ,0 ,-2.4619263100248378606,1.61101257671176689711,0.00000000000000000000,1.00000000000000000000,-0.0019360039184460999,-0.0018626500755780624,0.99999639120525019020,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171443086521321,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +49 ,0 ,-2.4802100185845685764,1.57511923807386144957,0.00000000000000000000,1.00000000000000000000,-0.0027291243520429311,-0.0018930439669859549,0.99999448411719271678,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172543422242597,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +50 ,0 ,-2.4984130570268856530,1.53917553430835396532,0.00000000000000000000,1.00000000000000000000,-0.0035222079818001527,-0.0019272420531792598,0.99999193986201773132,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173794953418109,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +51 ,0 ,-2.5165354746506038985,1.50318139525497596054,0.00000000000000000000,1.00000000000000000000,-0.0043152268073039972,-0.0019652447978555595,0.99998875825205479905,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8175197796426800,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +52 ,0 ,-2.5345773201136170271,1.46713674947979066942,0.00000000000000000000,1.00000000000000000000,-0.0051081528173364263,-0.0020070523972707419,0.99998493914432007301,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8176752069830399,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +53 ,0 ,-2.5525386414176969296,1.43104152427426156712,0.00000000000000000000,1.00000000000000000000,-0.0059009579931570323,-0.0020526647800490956,0.99998048244056447764,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8178457894464372,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +54 ,0 ,-2.5704194858937103873,1.39489564566301682546,0.00000000000000000000,1.00000000000000000000,-0.0066936143117889129,-0.0021020816070387790,0.99997538808730801473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8180315393201453,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +55 ,0 ,-2.5882199001866839083,1.35869903841179828773,0.00000000000000000000,1.00000000000000000000,-0.0074860937493071225,-0.0021553022712159437,0.99996965607587151581,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8182324691151734,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +56 ,0 ,-2.3154278435896422649,1.80524216018771088698,0.00000000000000000000,1.00000000000000000000,0.00288626140402676407,-0.0010122399967542920,0.99999532242170863227,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169282952749199,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +57 ,0 ,-2.3341398717680337249,1.76973786888770101555,0.00000000000000000000,1.00000000000000000000,0.00208985056348275815,-0.0010195267990816621,0.99999729654121005673,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169200977281434,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +58 ,0 ,-2.3527709132923613211,1.73418373460004726638,0.00000000000000000000,1.00000000000000000000,0.00129330600431019774,-0.0010306360842830548,0.99999863257348586831,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169269339832680,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +59 ,0 ,-2.3713210219438143333,1.69857969497698113592,0.00000000000000000000,1.00000000000000000000,0.00049665585359806455,-0.0010455699501996369,0.99999933005799690466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169488143084890,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +60 ,0 ,-2.3897902509537449766,1.66292568634960558071,0.00000000000000000000,1.00000000000000000000,-0.0003000717306462340,-0.0010643302262423801,0.99999938857887626930,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169857492193841,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +61 ,0 ,-2.4081786529878486113,1.62722164372293676137,0.00000000000000000000,1.00000000000000000000,-0.0010968485627853379,-0.0010869184729072221,0.99999880776502125812,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170377494334388,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +62 ,0 ,-2.4264862801309279305,1.59146750078967569308,0.00000000000000000000,1.00000000000000000000,-0.0018936464328497221,-0.0011133359813518782,0.99999758729017951264,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171048259173403,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +63 ,0 ,-2.4447131838708404671,1.55566318992716245972,0.00000000000000000000,1.00000000000000000000,-0.0026904371098424063,-0.0011435837729976547,0.99999572687302618057,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171869898396835,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +64 ,0 ,-2.4628594150834852705,1.51980864221174272188,0.00000000000000000000,1.00000000000000000000,-0.0034871923450514432,-0.0011776625992008535,0.99999322627723397083,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172842526073509,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +65 ,0 ,-2.4809250240170643841,1.48390378742067108319,0.00000000000000000000,1.00000000000000000000,-0.0042838838753682982,-0.0012155729409532578,0.99999008531153354972,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173966258364089,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +66 ,0 ,-2.4989100602769322989,1.44794855403921229886,0.00000000000000000000,1.00000000000000000000,-0.0050804834266117296,-0.0012573150086438598,0.99998630382976816388,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8175241213721164,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +67 ,0 ,-2.5168145728103592517,1.41194286926964163164,0.00000000000000000000,1.00000000000000000000,-0.0058769627168562795,-0.0013028887418599587,0.99998188173093982555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8176667512743733,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +68 ,0 ,-2.5346386098913327167,1.37588665903394136158,0.00000000000000000000,1.00000000000000000000,-0.0066732934597645166,-0.0013522938092394912,0.99997681895924661610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8178245278231770,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +69 ,0 ,-2.5523822191055165475,1.33977984798315574721,0.00000000000000000000,1.00000000000000000000,-0.0074694473679222600,-0.0014055296083698969,0.99997111550411199587,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8179974635149847,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +70 ,0 ,-2.2804175351064364107,1.78518532750631009342,0.00000000000000000000,1.00000000000000000000,0.00295103737131079818,-0.0002608197202881006,0.99999561166612471740,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170427768964145,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +71 ,0 ,-2.2990727140272855244,1.74976925750976741724,0.00000000000000000000,1.00000000000000000000,0.00215094438966584398,-0.0002677962576299565,0.99999765085893921323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170068391827953,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +72 ,0 ,-2.3176468979140412152,1.71430347370221092262,0.00000000000000000000,1.00000000000000000000,0.00135071471707213087,-0.0002786221981803408,0.99999904896925984054,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169859146819362,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +73 ,0 ,-2.3361401415148854709,1.67878791374879465791,0.00000000000000000000,1.00000000000000000000,0.00055037674377164235,-0.0002932996765251059,0.99999980553035094921,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169800136529374,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +74 ,0 ,-2.3545524990273278831,1.64322251397254648352,0.00000000000000000000,1.00000000000000000000,-0.0002500411085204996,-0.0003118305556543035,0.99999992012057126178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169891465640830,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +75 ,0 ,-2.3728840240823911855,1.60760720936630163713,0.00000000000000000000,1.00000000000000000000,-0.0010505103899511823,-0.0003342164264728748,0.99999939236346591098,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170133241219446,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +76 ,0 ,-2.3911347697288376501,1.57194193359063860704,0.00000000000000000000,1.00000000000000000000,-0.0018510026258732571,-0.0003604586073593811,0.99999822192785503549,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170525572604674,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +77 ,0 ,-2.4093047884172253958,1.53622661898450640904,0.00000000000000000000,1.00000000000000000000,-0.0026514893201970905,-0.0003905581437680772,0.99999640852791138456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171068571318755,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +78 ,0 ,-2.4273941319845224739,1.50046119657151644233,0.00000000000000000000,1.00000000000000000000,-0.0034519419587500919,-0.0004245158078869465,0.99999395192323148329,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171762351175857,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +79 ,0 ,-2.4454028516384260782,1.46464559606285771309,0.00000000000000000000,1.00000000000000000000,-0.0042523320126419041,-0.0004623320983409063,0.99999085191889902635,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172607028172933,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +80 ,0 ,-2.4633309979416968538,1.42877974586891354213,0.00000000000000000000,1.00000000000000000000,-0.0050526309416354170,-0.0005040072399354793,0.99998710836553772463,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173602720580674,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +81 ,0 ,-2.4811786207970811801,1.39286357309776720470,0.00000000000000000000,1.00000000000000000000,-0.0058528101975227880,-0.0005495411834655760,0.99998272115936082116,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174749548852560,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +82 ,0 ,-2.4989457694316352664,1.35689700357339493308,0.00000000000000000000,1.00000000000000000000,-0.0066528412275045937,-0.0005989336055548912,0.99997769024220617417,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8176047635624854,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +83 ,0 ,-2.5166324923817788850,1.32087996183148348450,0.00000000000000000000,1.00000000000000000000,-0.0074526954775728524,-0.0006521839085580088,0.99997201560157089605,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8177497105734801,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +84 ,0 ,-2.2454962378935370281,1.76514817586539618510,0.00000000000000000000,1.00000000000000000000,0.00301625791424840012,0.00049417015546310489,0.99999532898111709311,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171444006493402,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +85 ,0 ,-2.2640944879242357323,1.72982029080479238203,0.00000000000000000000,1.00000000000000000000,0.00221245698876286998,0.00048750759690458465,0.99999743368191496006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170807285223418,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +86 ,0 ,-2.2826117342938272436,1.69444282187839534437,0.00000000000000000000,1.00000000000000000000,0.00140851635703429563,0.00047696846142804207,0.99999889429076804781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170320490044105,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +87 ,0 ,-2.3010480327275200096,1.65901570676203835574,0.00000000000000000000,1.00000000000000000000,0.00060446467553795454,0.00046255057709222914,0.99999971033466794612,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169983723164477,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +88 ,0 ,-2.3194034383991222192,1.62353888177794924985,0.00000000000000000000,1.00000000000000000000,-0.0001996693672130501,0.00044425204676083518,0.99999988138612450061,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169797089085477,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +89 ,0 ,-2.3376780059149298018,1.58801228190419463359,0.00000000000000000000,1.00000000000000000000,-0.0010038570540496798,0.00042207124860248787,0.99999940706326229111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169760694654542,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +90 ,0 ,-2.3558717892977685259,1.55243584077546303845,0.00000000000000000000,1.00000000000000000000,-0.0018080696425382611,0.00039600683654179467,0.99999828702990933848,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169874648829136,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +91 ,0 ,-2.3739848419710503080,1.51680949069060244660,0.00000000000000000000,1.00000000000000000000,-0.0026122783683798682,0.00036605774066121788,0.99999652099567659657,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170139063004171,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +92 ,0 ,-2.3920172167429956111,1.48113316262132066469,0.00000000000000000000,1.00000000000000000000,-0.0034164544488170991,0.00033222316755256896,0.99999410871602945061,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170554050739156,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +93 ,0 ,-2.4099689657907532591,1.44540678621666063286,0.00000000000000000000,1.00000000000000000000,-0.0042205690860471932,0.00029450260062445406,0.99999104999235288726,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171119727849145,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +94 ,0 ,-2.4278401406447933652,1.40963028980818294577,0.00000000000000000000,1.00000000000000000000,-0.0050245934706411501,0.00025289580035587098,0.99998734467200589559,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171836212495691,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +95 ,0 ,-2.4456307921732967081,1.37380360041724092212,0.00000000000000000000,1.00000000000000000000,-0.0058284987849673702,0.00020740280449998215,0.99998299264837031685,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172703624841233,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +96 ,0 ,-2.4633409705666915456,1.33792664376618875010,0.00000000000000000000,1.00000000000000000000,-0.0066322562066194103,0.00015802392824347885,0.99997799386088903617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173722087449277,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +97 ,0 ,-2.4809707253221611189,1.30199934427705099615,0.00000000000000000000,1.00000000000000000000,-0.0074358369118468284,0.00010475976431039232,0.99997234829509784592,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174891725084307,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +98 ,0 ,-2.2106639669156424865,1.74513067161795487614,0.00000000000000000000,1.00000000000000000000,0.00308192736905372804,0.00125275440004510773,0.99999446614974096814,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172331283985840,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +99 ,0 ,-2.2292052077014075095,1.70989093485028220698,0.00000000000000000000,1.00000000000000000000,0.00227439245729781991,0.00124640958227731444,0.99999663679539618765,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171417276098509,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +100 ,0 ,-2.2476654359486341050,1.67460174493786162486,0.00000000000000000000,1.00000000000000000000,0.00146671478036478671,0.00123616075754069709,0.99999816032547517163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170652988010260,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +101 ,0 ,-2.2660447083697330405,1.63926303957162344815,0.00000000000000000000,1.00000000000000000000,0.00065892326408638433,0.00122200571591807305,0.99999903626061670269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170038521639071,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +102 ,0 ,-2.2843430811249487710,1.60387475507321664025,0.00000000000000000000,1.00000000000000000000,-0.0001489531330921856,0.00120394252555141938,0.99999926416740914092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169573981231224,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +103 ,0 ,-2.3025606098060502624,1.56843682640558301777,0.00000000000000000000,1.00000000000000000000,-0.0009568854235424001,0.00118196953315367675,0.99999884365848579204,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169259473233978,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +104 ,0 ,-2.3206973494202824959,1.53294918718107875399,0.00000000000000000000,1.00000000000000000000,-0.0017648445938916882,0.00115608536446508425,0.99999777439261805511,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169095106532040,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +105 ,0 ,-2.3387533543740888219,1.49741176966112354840,0.00000000000000000000,1.00000000000000000000,-0.0025728016084709350,0.00112628892466718074,0.99999605607479358226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169080992156523,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +106 ,0 ,-2.3567286784570660174,1.46182450476703418296,0.00000000000000000000,1.00000000000000000000,-0.0033807274127697437,0.00109257939874372531,0.99999368845629121871,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169217243503226,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +107 ,0 ,-2.3746233748262484120,1.42618732208324439092,0.00000000000000000000,1.00000000000000000000,-0.0041885929368984222,0.00105495625178692064,0.99999067133474595081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169503976205305,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +108 ,0 ,-2.3924374959899750159,1.39050014986692449525,0.00000000000000000000,1.00000000000000000000,-0.0049963690990553009,0.00101341922926299183,0.99998700455420508337,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169941308206034,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +109 ,0 ,-2.4101710937922362631,1.35476291505305046491,0.00000000000000000000,1.00000000000000000000,-0.0058040268089997078,0.00096796835721946162,0.99998268800517742249,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170529359576903,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +110 ,0 ,-2.4278242193969417073,1.31897554325967236721,0.00000000000000000000,1.00000000000000000000,-0.0066115369715283225,0.00091860394244711366,0.99997772162467257750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171268252590380,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +111 ,0 ,-2.4453969232724457327,1.28313795880162229146,0.00000000000000000000,1.00000000000000000000,-0.0074188704899551313,0.00086532657258927029,0.99997210539623360148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172158111956377,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +112 ,0 ,-2.1759207372965811977,1.72513278030467476220,0.00000000000000000000,1.00000000000000000000,0.00314805012312363791,0.00201495800577536745,0.99999301483793234801,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173089216652442,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +113 ,0 ,-2.1944048877516384443,1.68998115490939837535,0.00000000000000000000,1.00000000000000000000,0.00233675494021542062,0.00200893473972634526,0.99999525186750815031,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171897979718778,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +114 ,0 ,-2.2128080165367358667,1.65478020787695601079,0.00000000000000000000,1.00000000000000000000,0.00152531388887898488,0.00199897977731118992,0.99999683874369860170,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170856256092520,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +115 ,0 ,-2.2311301813617712141,1.61952987691190442021,0.00000000000000000000,1.00000000000000000000,0.00071375616746991550,0.00198509087000456720,0.99999777498071018566,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169964147273276,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +116 ,0 ,-2.2493714393838666332,1.58423009833855465977,0.00000000000000000000,1.00000000000000000000,-0.0000978889924568955,0.00196726605063828399,0.99999806013913428159,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169221757289051,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +117 ,0 ,-2.2675318471906389383,1.54888080711105646791,0.00000000000000000000,1.00000000000000000000,-0.0009095923296254710,0.00194550363392906279,0.99999769382604297707,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168629192314256,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +118 ,0 ,-2.2856114607839779218,1.51348193681630815987,0.00000000000000000000,1.00000000000000000000,-0.0017213245565271435,0.00191980221694237657,0.99999667569508388087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168186560997128,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +119 ,0 ,-2.3036103355637411738,1.47803341968017054597,0.00000000000000000000,1.00000000000000000000,-0.0025330563629173503,0.00189016067951307850,0.99999500544656128031,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167893974095932,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +120 ,0 ,-2.3215285263114697755,1.44253518657512258549,0.00000000000000000000,1.00000000000000000000,-0.0033447584193198758,0.00185657818461334479,0.99999268282750986003,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167751544824568,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +121 ,0 ,-2.3393660871743260365,1.40698716702472093054,0.00000000000000000000,1.00000000000000000000,-0.0041564013805382230,0.00181905417866952043,0.99998970763176298071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167759388616104,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +122 ,0 ,-2.3571230716489730561,1.37138928921206648681,0.00000000000000000000,1.00000000000000000000,-0.0049679558891727359,0.00177758839182863732,0.99998607970000885636,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167917623140965,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +123 ,0 ,-2.3747995325656350296,1.33574147998406100867,0.00000000000000000000,1.00000000000000000000,-0.0057793925791427887,0.00173218083817438845,0.99998179891984040335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168226368343312,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +124 ,0 ,-2.3923955220721411230,1.30004366485951483589,0.00000000000000000000,1.00000000000000000000,-0.0065906820792132224,0.00168283181589332715,0.99997686522579631862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168685746459232,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +125 ,0 ,-2.4099110916183126285,1.26429576803957033348,0.00000000000000000000,1.00000000000000000000,-0.0074017950165239584,0.00162954190738309355,0.99997127859939338723,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169295881871221,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +126 ,0 ,-2.1412665643218860012,1.70515446664061953718,0.00000000000000000000,1.00000000000000000000,0.00321463061575414993,0.00278080619016320097,0.99999096659266739628,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173717416284489,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +127 ,0 ,-2.1596935426203200947,1.67009091541624155041,0.00000000000000000000,1.00000000000000000000,0.00239954863156012282,0.00277510833640793892,0.99999327044739960701,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172249007966456,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +128 ,0 ,-2.1780394898597990049,1.63497817485578300633,0.00000000000000000000,1.00000000000000000000,0.00158431763068086475,0.00276545083449438204,0.99999492109676624274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170929906045785,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +129 ,0 ,-2.1963044647583478408,1.59981618268103908953,0.00000000000000000000,1.00000000000000000000,0.00076896708720718760,0.00275183139664025595,0.99999591804846055254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169760211894754,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +130 ,0 ,-2.2144885254802022522,1.56460487522002544835,0.00000000000000000000,1.00000000000000000000,-0.0000464734909731591,0.00273424801977603269,0.99999626085699999666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168740029159380,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +131 ,0 ,-2.2325917296193877881,1.52934418741926392293,0.00000000000000000000,1.00000000000000000000,-0.0008619745657040396,0.00271269898607014560,0.99999594912382483435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167869463795796,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +132 ,0 ,-2.2506141341830185886,1.49403405284425394583,0.00000000000000000000,1.00000000000000000000,-0.0016775065720985768,0.00268718286341086730,0.99999498249739215971,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167148624124820,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +133 ,0 ,-2.2685557955748323344,1.45867440368538292538,0.00000000000000000000,1.00000000000000000000,-0.0024930399220858675,0.00265769850583133515,0.99999336067325916843,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166577620795578,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +134 ,0 ,-2.2864167695788806256,1.42326517076847003373,0.00000000000000000000,1.00000000000000000000,-0.0033085450079655379,0.00262424505388528846,0.99999108339416076240,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166156566621793,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +135 ,0 ,-2.3041971113429622342,1.38780628355598012468,0.00000000000000000000,1.00000000000000000000,-0.0041239922059689605,0.00258682193497388997,0.99998815045007516388,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165885576927394,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +136 ,0 ,-2.3218968753626278989,1.35229767015730240053,0.00000000000000000000,1.00000000000000000000,-0.0049393518798270183,0.00254542886361437594,0.99998456167828297935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165764769219094,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +137 ,0 ,-2.3395161154648080881,1.31673925733487950928,0.00000000000000000000,1.00000000000000000000,-0.0057545943843426540,0.00250006584166491538,0.99998031696341860286,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165794263204588,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +138 ,0 ,-2.3570548847919474688,1.28113097050905100360,0.00000000000000000000,1.00000000000000000000,-0.0065696900689678284,0.00245073315848879985,0.99997541623751118322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165974180974444,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +139 ,0 ,-2.3745132357858711458,1.24547273376800848865,0.00000000000000000000,1.00000000000000000000,-0.0073846092813839329,0.00239743139107486888,0.99996985948001804178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166304646838398,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +140 ,0 ,-2.1067014634411278528,1.68519569450859529879,0.00000000000000000000,1.00000000000000000000,0.00328167333886849720,0.00355032439836240566,0.99998831284008693476,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174215491344511,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +141 ,0 ,-2.1250711870077476639,1.65022017996860670407,0.00000000000000000000,1.00000000000000000000,0.00246277777516560681,0.00354495586785890087,0.99999068396336820985,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172469969103985,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +142 ,0 ,-2.1433598698653759662,1.61519560919658622388,0.00000000000000000000,1.00000000000000000000,0.00164373000081322723,0.00353559947191487257,0.99999239881514045968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170873546296206,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +143 ,0 ,-2.1615675717505289377,1.58012191993295059155,0.00000000000000000000,1.00000000000000000000,0.00082455976889487625,0.00352225288284049994,0.99999345689650231960,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169426323875086,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +144 ,0 ,-2.1796943518453351096,1.54499904851539460182,0.00000000000000000000,1.00000000000000000000,0.00000529686689920441,0.00350491406105292576,0.99999385775582039226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168128405268362,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +145 ,0 ,-2.1977402687608229570,1.50982692987969313591,0.00000000000000000000,1.00000000000000000000,-0.0008140288868588135,0.00348358125561409534,0.99999360098882983383,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166979896050179,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +146 ,0 ,-2.2157053805199442564,1.47460549757493297740,0.00000000000000000000,1.00000000000000000000,-0.0016333876468259285,0.00345825300472327960,0.99999268623872961114,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165980904323077,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +147 ,0 ,-2.2335897445410717310,1.43933468375742412703,0.00000000000000000000,1.00000000000000000000,-0.0024527495438081249,0.00342892813614778003,0.99999111319626865501,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165131540554284,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +148 ,0 ,-2.2513934176212768711,1.40401441920602509938,0.00000000000000000000,1.00000000000000000000,-0.0032720846885760301,0.00339560576761043951,0.99998888159982135537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8164431917302863,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +149 ,0 ,-2.2691164559198755412,1.36864463332695085462,0.00000000000000000000,1.00000000000000000000,-0.0040913631754773234,0.00335828530711860520,0.99998599123545850453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163882149674464,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +150 ,0 ,-2.2867589149418598992,1.33322525415507753265,0.00000000000000000000,1.00000000000000000000,-0.0049105550860553690,0.00331696645324462951,0.99998244193700469573,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163482354921143,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +151 ,0 ,-2.3043208495217433195,1.29775620836706795380,0.00000000000000000000,1.00000000000000000000,-0.0057296304926735021,0.00327164919534897891,0.99997823358609161381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163232652605074,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +152 ,0 ,-2.3218023138070469357,1.26223742128611715607,0.00000000000000000000,1.00000000000000000000,-0.0065485594621430207,0.00322233381375711764,0.99997336611219977964,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163133164707687,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +153 ,0 ,-2.3392033612423586141,1.22666881689095741414,0.00000000000000000000,1.00000000000000000000,-0.0073673120593552585,0.00316902087987760419,0.99996783949269252289,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163184015356819,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +154 ,0 ,-2.0722254502706474177,1.66525642694883457828,0.00000000000000000000,1.00000000000000000000,0.00334918283775689513,0.00432353830564974860,0.99998504488359185593,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174583046657062,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +155 ,0 ,-2.0905378357717121495,1.63036891131571803903,0.00000000000000000000,1.00000000000000000000,0.00252644666535522524,0.00431850306048734474,0.99998748372095314085,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172560468119627,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +156 ,0 ,-2.1087691706489040122,1.59543247336805782410,0.00000000000000000000,1.00000000000000000000,0.00170355504191968824,0.00430945146397916124,0.99998926320651027044,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170686781704716,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +157 ,0 ,-2.1269195156679829850,1.56044705086883905842,0.00000000000000000000,1.00000000000000000000,0.00088053800282957483,0.00429638114786037774,0.99999038283468411059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168962088129774,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +158 ,0 ,-2.1449889310397978192,1.52541258016180658607,0.00000000000000000000,1.00000000000000000000,0.00005742561848879642,0.00427929003541486531,0.99999084214761269073,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167386490385979,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +159 ,0 ,-2.1629774764029945366,1.49032899618132574914,0.00000000000000000000,1.00000000000000000000,-0.0007657520093034267,0.00425817634203115146,0.99999064073525256723,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165960093956527,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +160 ,0 ,-2.1808852108072884767,1.45519623245511819931,0.00000000000000000000,1.00000000000000000000,-0.0015889647509927898,0.00423303857569540774,0.99998977823547630094,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8164683006525592,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +161 ,0 ,-2.1987121926964183771,1.42001422111020225713,0.00000000000000000000,1.00000000000000000000,-0.0024121824529184307,0.00420387553743881061,0.99998825433415949870,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163555338342121,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +162 ,0 ,-2.2164584798914139796,1.38478289288132572210,0.00000000000000000000,1.00000000000000000000,-0.0032353749409702588,0.00417068632172861060,0.99998606876525908404,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8162577201765088,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +163 ,0 ,-2.2341241295737988004,1.34950217711506970097,0.00000000000000000000,1.00000000000000000000,-0.0040585120242531830,0.00413347031680729847,0.99998322131088246411,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8161748711663676,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +164 ,0 ,-2.2517091982689705353,1.31417200177627435664,0.00000000000000000000,1.00000000000000000000,-0.0048815634987580446,0.00409222720497699407,0.99997971180134992419,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8161069985089852,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +165 ,0 ,-2.2692137418297400053,1.27879229345942313500,0.00000000000000000000,1.00000000000000000000,-0.0057044991510376771,0.00404695696282978117,0.99997554011524569794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8160541141514841,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +166 ,0 ,-2.2866378154196556060,1.24336297738757917130,0.00000000000000000000,1.00000000000000000000,-0.0065272887618875044,0.00399765986142681939,0.99997070617946193227,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8160162302556273,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +167 ,0 ,-2.3039814734969130682,1.20788397743084541247,0.00000000000000000000,1.00000000000000000000,-0.0073499021100298673,0.00394433646642115311,0.99996520996923332624,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8159933592323795,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +168 ,0 ,-2.0378385405958572285,1.64533662613968489907,0.00000000000000000000,1.00000000000000000000,0.00341716371182855830,0.00510047381994418579,0.99998115390190167595,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174819683426903,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +169 ,0 ,-2.0560935039297141280,1.61053707134771117992,0.00000000000000000000,1.00000000000000000000,0.00259055964765466046,0.00509577587410237758,0.99998366090099333192,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172520106163574,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +170 ,0 ,-2.0742674064561446023,1.57568872897907485963,0.00000000000000000000,1.00000000000000000000,0.00176379684491676218,0.00508703281921035841,0.99998550545384734533,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170369213530648,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +171 ,0 ,-2.0923603099812217998,1.54079153682025382643,0.00000000000000000000,1.00000000000000000000,0.00093690562463967215,0.00507424224574363775,0.99998668704812365692,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168367105827201,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +172 ,0 ,-2.1103722757552039190,1.50584543122973535389,0.00000000000000000000,1.00000000000000000000,0.00010991634350450684,0.00505740203922771820,0.99998720521965245300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166513885844324,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +173 ,0 ,-2.1283033644554940622,1.47085034713754114754,0.00000000000000000000,1.00000000000000000000,-0.0007171406098333234,0.00503651038079214186,0.99998705955253730515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8164809658719605,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +174 ,0 ,-2.1461536361693824837,1.43580621805440200589,0.00000000000000000000,1.00000000000000000000,-0.0015442348184358909,0.00501156574768207418,0.99998624967925564543,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163254531937127,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +175 ,0 ,-2.1639231503769891240,1.40071297607947164998,0.00000000000000000000,1.00000000000000000000,-0.0023713358407841740,0.00498256691371075279,0.99998477528074447562,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8161848615400231,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +176 ,0 ,-2.1816119659342243508,1.36557055190297815805,0.00000000000000000000,1.00000000000000000000,-0.0031984132144878244,0.00494951294966036042,0.99998263608648263467,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8160592021304182,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +177 ,0 ,-2.1992201410558469554,1.33037887481608563255,0.00000000000000000000,1.00000000000000000000,-0.0040254364600021625,0.00491240322362769717,0.99997983187456085385,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8159484864263504,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +178 ,0 ,-2.2167477332986473825,1.29513787271242453158,0.00000000000000000000,1.00000000000000000000,-0.0048523750843520513,0.00487123740131359742,0.99997636247174404022,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8158527261093695,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +179 ,0 ,-2.2341947995447068997,1.25984747210444081311,0.00000000000000000000,1.00000000000000000000,-0.0056791985848609416,0.00482601544626290977,0.99997222775352423429,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8157719331138650,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +180 ,0 ,-2.2515613959846625391,1.22450759812080756105,0.00000000000000000000,1.00000000000000000000,-0.0065058764528848041,0.00477673762004365148,0.99996742764416535198,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8157061195852293,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +181 ,0 ,-2.2688475781012589216,1.18911817451889811891,0.00000000000000000000,1.00000000000000000000,-0.0073323781775494435,0.00472340448237570410,0.99996196211673871179,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8156552979162370,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +182 ,0 ,-2.0035407503742526102,1.62543625339962982678,0.00000000000000000000,1.00000000000000000000,0.00348562061537536181,0.00588115708434078839,0.99997663094708133524,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174924999366339,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +183 ,0 ,-2.0217382066615501301,1.59072462108100465272,0.00000000000000000000,1.00000000000000000000,0.00265512111951540048,0.00587680050446925082,0.99997920655765215602,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172348480911750,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +184 ,0 ,-2.0398545916855792548,1.55596433675856227196,0.00000000000000000000,1.00000000000000000000,0.00182445954967705849,0.00586836978281458660,0.99998111661343103140,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169920439358975,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +185 ,0 ,-2.0578899683035793977,1.52115533824336957025,0.00000000000000000000,1.00000000000000000000,0.00099366651592838251,0.00585586246790620670,0.99998236059523182284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167640974588721,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +186 ,0 ,-2.0758443988164114735,1.48629756190684836347,0.00000000000000000000,1.00000000000000000000,0.00016277266463689621,0.00583927640686449003,0.99998293803249671540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165510189246560,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +187 ,0 ,-2.0937179449512099971,1.45139094267892998502,0.00000000000000000000,1.00000000000000000000,-0.0006681913252651840,0.00581860974597213018,0.99998284850340146689,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163528188033524,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +188 ,0 ,-2.1115106678440267451,1.41643541405569006741,0.00000000000000000000,1.00000000000000000000,-0.0014991947460259254,0.00579386093119039873,0.99998209163495710427,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8161695078179036,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +189 ,0 ,-2.1292226280223713885,1.38143090810800361900,0.00000000000000000000,1.00000000000000000000,-0.0023302068648282949,0.00576502870862664103,0.99998066710309774229,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8160010969331779,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +190 ,0 ,-2.1468538853882499495,1.34637735548778669780,0.00000000000000000000,1.00000000000000000000,-0.0031611969275534765,0.00573211212493750840,0.99997857463276307310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8158475973541499,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +191 ,0 ,-2.1644044992007649419,1.31127468542554503905,0.00000000000000000000,1.00000000000000000000,-0.0039921341625515915,0.00569511052768555472,0.99997581399797175194,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8157090205022541,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +192 ,0 ,-2.1818745280591937962,1.27612282575298463527,0.00000000000000000000,1.00000000000000000000,-0.0048229877844192213,0.00565402356563793340,0.99997238502188201536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8155853780572215,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +193 ,0 ,-2.1992640298860965941,1.24092170289664127658,0.00000000000000000000,1.00000000000000000000,-0.0056537269977825644,0.00560885118900348277,0.99996828757684819155,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8154766819188807,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +194 ,0 ,-2.2165730619103167775,1.20567124188750729452,0.00000000000000000000,1.00000000000000000000,-0.0064843210010853014,0.00555959364962443306,0.99996352158446566438,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8153829442235291,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +195 ,0 ,-2.2338016806502785094,1.17037136637793004467,0.00000000000000000000,1.00000000000000000000,-0.0073147389903801627,0.00550625150110777960,0.99995808701560551234,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8153041773439326,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +196 ,0 ,-2.4563588963684805932,1.88566694638255527571,0.00000000000000000000,1.00000000000000000000,0.00263151831936488589,-0.0039827128367267844,0.99998860648999166045,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163425414531957,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +197 ,0 ,-2.4752975393902545420,1.84980941156449962825,0.00000000000000000000,1.00000000000000000000,0.00184958271504007576,-0.0039912045009440960,0.99999032461839953978,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8164453621066058,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +198 ,0 ,-2.4941552268756161936,1.81390152454463460252,0.00000000000000000000,1.00000000000000000000,0.00106752486455018820,-0.0040034134425516549,0.99999141649889777827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165632986292621,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 +199 ,0 ,-2.5129320088353086504,1.77794322296416229534,0.00000000000000000000,1.00000000000000000000,0.00028537187233473469,-0.0040193416182971062,0.99999188169497155165,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166963614112319,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 diff --git a/Intern/RayCore/tests/output/toroid.rayui.csv b/Intern/RayCore/tests/output/toroid.rayui.csv new file mode 100644 index 000000000..efbf27525 --- /dev/null +++ b/Intern/RayCore/tests/output/toroid.rayui.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.0691513020354870000,-0.1384655869163929908,0.00000000000000000000,-1.0000000000000000000,0.00511999075325057003,0.00483541137152327001,0.99997520193830502499,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006875281230804829,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-0.0585239127486429991,-0.1290353201373639902,0.00000000000000000000,-1.0000000000000000000,0.00433260488091832991,0.00486832767963155024,0.99997876373478500333,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005892301059020610,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,-0.0478909000881459975,-0.1211781605232079978,0.00000000000000000000,-1.0000000000000000000,0.00354506650441355989,0.00489575905078607018,0.99998173185653504990,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005070598900829279,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,-0.0372532747502148028,-0.1148933466393450009,0.00000000000000000000,-1.0000000000000000000,0.00275740334975018005,0.00491770487711714991,0.99998410632644996187,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004411566849285010,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-0.0266120544724969994,-0.1101802693028850060,0.00000000000000000000,-1.0000000000000000000,0.00196964314415274018,0.00493416467234956013,0.99998588716284897426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003916318446499639,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-0.0159682624690277996,-0.1070384715963819954,0.00000000000000000000,-1.0000000000000000000,0.00118181361578715009,0.00494513807177832023,0.99998707437947798037,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003585688896237120,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,-0.0053229258654937695,-0.1054676488991640043,0.00000000000000000000,-1.0000000000000000000,0.00039394249349174702,0.00495062483227404030,0.99998766798550198231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003420234910436190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,0.00532292586549376958,-0.1054676488991640043,0.00000000000000000000,-1.0000000000000000000,-0.0003939424934917470,0.00495062483227404030,0.99998766798550198231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003420234910436190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,0.01596826246902779966,-0.1070384715963819954,0.00000000000000000000,-1.0000000000000000000,-0.0011818136157871500,0.00494513807177832023,0.99998707437947798037,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003585688896237120,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,0.02661205447249680167,-0.1101802693028850060,0.00000000000000000000,-1.0000000000000000000,-0.0019696431441527401,0.00493416467234956013,0.99998588716284897426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003916318446499639,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,0.03725327475021480289,-0.1148933466393450009,0.00000000000000000000,-1.0000000000000000000,-0.0027574033497501800,0.00491770487711714991,0.99998410632644996187,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004411566849285010,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,0.04789090008814599758,-0.1211781605232079978,0.00000000000000000000,-1.0000000000000000000,-0.0035450665044135598,0.00489575905078607018,0.99998173185653504990,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005070598900829279,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,0.05852391274864209708,-0.1290353201373639902,0.00000000000000000000,-1.0000000000000000000,-0.0043326048809183299,0.00486832767963155024,0.99997876373478500333,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005892301059020610,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,0.06915130203548700005,-0.1384655869163929908,0.00000000000000000000,-1.0000000000000000000,-0.0051199907532505700,0.00483541137152327001,0.99997520193830502499,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006875281230804829,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,-0.0577609925286904010,-0.1093267650906570020,0.00000000000000000000,-1.0000000000000000000,0.00510687780018120006,0.00407730460910770992,0.99997864746516396117,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005009720247244330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,-0.0488847118053232984,-0.0997882458956960011,0.00000000000000000000,-1.0000000000000000000,0.00432150890463304029,0.00411016569554754039,0.99998221539122500445,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004177670966782899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-0.0400034310725038977,-0.0918408709061324934,0.00000000000000000000,-1.0000000000000000000,0.00353598770522071991,0.00413755104784627007,0.99998518862144902819,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003481740195638849,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-0.0311180476951338005,-0.0854838814252695949,0.00000000000000000000,-1.0000000000000000000,0.00275034189153588017,0.00415946005856430035,0.99998756717846304375,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002923322431342970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,-0.0222294660750379999,-0.0807166704695631981,0.00000000000000000000,-1.0000000000000000000,0.00196459915438245997,0.00417589224178066976,0.99998935108037401153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002503533096387399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,-0.0133385960867904006,-0.0775387827674141050,0.00000000000000000000,-1.0000000000000000000,0.00117878718550683009,0.00418684723305162969,0.99999054034076595431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002223208807663470,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +20 ,0 ,-0.0044463515140700203,-0.0759499147982660993,0.00000000000000000000,-1.0000000000000000000,0.00039293367732863099,0.00419232478942483006,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002082907230942510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +21 ,0 ,0.00444635151407002035,-0.0759499147982660993,0.00000000000000000000,-1.0000000000000000000,-0.0003929336773286309,0.00419232478942483006,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002082907230942510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +22 ,0 ,0.01333859608679040069,-0.0775387827674141050,0.00000000000000000000,-1.0000000000000000000,-0.0011787871855068300,0.00418684723305162969,0.99999054034076595431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002223208807663470,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +23 ,0 ,0.02222946607503839891,-0.0807166704695631981,0.00000000000000000000,-1.0000000000000000000,-0.0019645991543824599,0.00417589224178066976,0.99998935108037401153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002503533096387399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +24 ,0 ,0.03111804769513380058,-0.0854838814252695949,0.00000000000000000000,-1.0000000000000000000,-0.0027503418915358801,0.00415946005856430035,0.99998756717846304375,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002923322431342970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +25 ,0 ,0.04000343107250389773,-0.0918408709061324934,0.00000000000000000000,-1.0000000000000000000,-0.0035359877052207199,0.00413755104784627007,0.99998518862144902819,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003481740195638849,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +26 ,0 ,0.04888471180532329846,-0.0997882458956960011,0.00000000000000000000,-1.0000000000000000000,-0.0043215089046330402,0.00411016569554754039,0.99998221539122500445,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004177670966782899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +27 ,0 ,0.05776099252869040107,-0.1093267650906570020,0.00000000000000000000,-1.0000000000000000000,-0.0051068778001812000,0.00407730460910770992,0.99997864746516396117,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005009720247244330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +28 ,0 ,-0.0464610105416242979,-0.0849975978430772965,0.00000000000000000000,-1.0000000000000000000,0.00509375016303548026,0.00331795763403813998,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003545005472460619,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +29 ,0 ,-0.0393219420521547027,-0.0753509896778355031,0.00000000000000000000,-1.0000000000000000000,0.00431040050436462974,0.00335076355300085006,0.99998509630449194940,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002864567493361390,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +30 ,0 ,-0.0321784968116300973,-0.0673135355299713938,0.00000000000000000000,-1.0000000000000000000,0.00352689874163562020,0.00337810293159821004,0.99998807463181804688,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002294975150789469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +31 ,0 ,-0.0250314588727910992,-0.0608844794425590987,0.00000000000000000000,-1.0000000000000000000,0.00274327252810932986,0.00339997516283250004,0.99999045726683200019,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001837625285361359,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +32 ,0 ,-0.0178816193207143002,-0.0560632166163559028,0.00000000000000000000,-1.0000000000000000000,0.00195954951826028981,0.00341637976112851978,0.99999224422743104856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001493635206770699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +33 ,0 ,-0.0107297747097802997,-0.0528492934225174987,0.00000000000000000000,-1.0000000000000000000,0.00117575736750669991,0.00342731636230744979,0.99999343552703701121,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001263842979142280,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +34 ,0 ,-0.0035767255009469000,-0.0512424074334947021,0.00000000000000000000,-1.0000000000000000000,0.00039192373194079700,0.00343278472359046004,0.99999403117460095025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001148807194795149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +35 ,0 ,0.00357672550094690006,-0.0512424074334947021,0.00000000000000000000,-1.0000000000000000000,-0.0003919237319407970,0.00343278472359046004,0.99999403117460095025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001148807194795149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +36 ,0 ,0.01072977470978029972,-0.0528492934225174987,0.00000000000000000000,-1.0000000000000000000,-0.0011757573675066999,0.00342731636230744979,0.99999343552703701121,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001263842979142280,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +37 ,0 ,0.01788161932071469922,-0.0560632166163559028,0.00000000000000000000,-1.0000000000000000000,-0.0019595495182602898,0.00341637976112851978,0.99999224422743104856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001493635206770699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +38 ,0 ,0.02503145887279109929,-0.0608844794425590987,0.00000000000000000000,-1.0000000000000000000,-0.0027432725281093298,0.00339997516283250004,0.99999045726683200019,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001837625285361359,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +39 ,0 ,0.03217849681163009734,-0.0673135355299713938,0.00000000000000000000,-1.0000000000000000000,-0.0035268987416356202,0.00337810293159821004,0.99998807463181804688,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002294975150789469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +40 ,0 ,0.03932194205215380072,-0.0753509896778355031,0.00000000000000000000,-1.0000000000000000000,-0.0043104005043646401,0.00335076355300085006,0.99998509630449194940,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002864567493361390,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +41 ,0 ,0.04646101054162429799,-0.0849975978430772965,0.00000000000000000000,-1.0000000000000000000,-0.0050937501630354802,0.00331795763403813998,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003545005472460619,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +42 ,0 ,-0.0352516439989943031,-0.0655011979605548966,0.00000000000000000000,-1.0000000000000000000,0.00508060774906991027,0.00255736347909710009,0.99998382352762904545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002409662868103620,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +43 ,0 ,-0.0298358470831549989,-0.0557466618369688998,0.00000000000000000000,-1.0000000000000000000,0.00429927960163709998,0.00259011428476171997,0.99998740367211602642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001881521592395069,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +44 ,0 ,-0.0244162965861974001,-0.0476192627268762977,0.00000000000000000000,-1.0000000000000000000,0.00351779954945020002,0.00261740773480795014,0.99999038708533605213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001438838844478600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +45 ,0 ,-0.0189936632645885984,-0.0411182474018447971,0.00000000000000000000,-1.0000000000000000000,0.00273619520953058978,0.00263924322267979983,0.99999277378938400406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001083013777360970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +46 ,0 ,-0.0135686249026815992,-0.0362430132398103982,0.00000000000000000000,-1.0000000000000000000,0.00195449420011470018,0.00265562026314864006,0.99999456380194395865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000815165665244421,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +47 ,0 ,-0.0081418647507447393,-0.0329931082469517023,0.00000000000000000000,-1.0000000000000000000,0.00117272414038376991,0.00266653849229652991,0.99999575713627897322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000636133914895253,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +48 ,0 ,-0.0027140699631844102,-0.0313682310867159988,0.00000000000000000000,-1.0000000000000000000,0.00039091265019390797,0.00267199766752120992,0.99999635380123497174,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000546478172509523,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +49 ,0 ,0.00271406996318441021,-0.0313682310867159988,0.00000000000000000000,-1.0000000000000000000,-0.0003909126501939079,0.00267199766752120992,0.99999635380123497174,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000546478172509523,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +50 ,0 ,0.00814186475074473933,-0.0329931082469517023,0.00000000000000000000,-1.0000000000000000000,-0.0011727241403837699,0.00266653849229652991,0.99999575713627897322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000636133914895253,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +51 ,0 ,0.01356862490268180045,-0.0362430132398103982,0.00000000000000000000,-1.0000000000000000000,-0.0019544942001147001,0.00265562026314864006,0.99999456380194395865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000815165665244421,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +52 ,0 ,0.01899366326458859846,-0.0411182474018447971,0.00000000000000000000,-1.0000000000000000000,-0.0027361952095305897,0.00263924322267979983,0.99999277378938400406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001083013777360970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +53 ,0 ,0.02441629658619740017,-0.0476192627268762977,0.00000000000000000000,-1.0000000000000000000,-0.0035177995494502000,0.00261740773480795014,0.99999038708533605213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001438838844478600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +54 ,0 ,0.02983584708315410033,-0.0557466618369688998,0.00000000000000000000,-1.0000000000000000000,-0.0042992796016370999,0.00259011428476171997,0.99998740367211602642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001881521592395069,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +55 ,0 ,0.03525164399899430311,-0.0655011979605548966,0.00000000000000000000,-1.0000000000000000000,-0.0050806077490699102,0.00255736347909710009,0.99998382352762904545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002409662868103620,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +56 ,0 ,-0.0241331842480994006,-0.0508609450882622007,0.00000000000000000000,-1.0000000000000000000,0.00506745046530147034,0.00179551514632003998,0.99998554843114695334,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001531398100951259,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +57 ,0 ,-0.0204266733882399013,-0.0409986395723440991,0.00000000000000000000,-1.0000000000000000000,0.00428814611777175985,0.00182821089285268006,0.99998913466487404644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001156244004505420,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +58 ,0 ,-0.0167170320461402996,-0.0327814276622308969,0.00000000000000000000,-1.0000000000000000000,0.00350869006429054995,0.00185545845949438995,0.99999212315294605524,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000841046196455863,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +59 ,0 ,-0.0130048176946449007,-0.0262085588385216998,0.00000000000000000000,-1.0000000000000000000,0.00272910988573079986,0.00187725724011881004,0.99999451391719396120,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000587206258160222,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +60 ,0 ,-0.0092905948302861602,-0.0212794326542181007,0.00000000000000000000,-1.0000000000000000000,0.00194943316418206007,0.00189360674984840010,0.99999630697508801180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000395845274852036,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +61 ,0 ,-0.0055749334121419896,-0.0179935987412232004,0.00000000000000000000,-1.0000000000000000000,0.00116968748267979997,0.00190450662502467007,0.99999750233973494495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000267804209670430,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +62 ,0 ,-0.0018584073010747799,-0.0163507568490892998,0.00000000000000000000,-1.0000000000000000000,0.00038990042493520300,0.00190995662321969002,0.99999810001987299301,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000203643520535479,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +63 ,0 ,0.00185840730107477997,-0.0163507568490892998,0.00000000000000000000,-1.0000000000000000000,-0.0003899004249352030,0.00190995662321969002,0.99999810001987299301,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000203643520535479,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +64 ,0 ,0.00557493341214198960,-0.0179935987412232004,0.00000000000000000000,-1.0000000000000000000,-0.0011696874826797999,0.00190450662502467007,0.99999750233973494495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000267804209670430,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +65 ,0 ,0.00929059483028616024,-0.0212794326542181007,0.00000000000000000000,-1.0000000000000000000,-0.0019494331641820600,0.00189360674984840010,0.99999630697508801180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000395845274852036,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +66 ,0 ,0.01300481769464490074,-0.0262085588385216998,0.00000000000000000000,-1.0000000000000000000,-0.0027291098857307998,0.00187725724011881004,0.99999451391719396120,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000587206258160222,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +67 ,0 ,0.01671703204614029963,-0.0327814276622308969,0.00000000000000000000,-1.0000000000000000000,-0.0035086900642905499,0.00185545845949438995,0.99999212315294605524,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000841046196455863,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +68 ,0 ,0.02042667338823990139,-0.0409986395723440991,0.00000000000000000000,-1.0000000000000000000,-0.0042881461177717598,0.00182821089285268006,0.99998913466487404644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001156244004505420,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +69 ,0 ,0.02413318424809940063,-0.0508609450882622007,0.00000000000000000000,-1.0000000000000000000,-0.0050674504653014703,0.00179551514632003998,0.99998554843114695334,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001531398100951259,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +70 ,0 ,-0.0131059260823142998,-0.0411004881235816979,0.00000000000000000000,-1.0000000000000000000,0.00505427821850702990,0.00103240560681800005,0.99998669411665297435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000837085160583228,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +71 ,0 ,-0.0110946703732456991,-0.0311305693342600990,0.00000000000000000000,-1.0000000000000000000,0.00427699997388695987,0.00106504634838954989,0.99999028642657294962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000615613813579330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +72 ,0 ,-0.0090809072270157092,-0.0228236747346212999,0.00000000000000000000,-1.0000000000000000000,0.00349957022161663001,0.00109224807676316991,0.99999327997862197392,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000428480609571124,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +73 ,0 ,-0.0070650808425507501,-0.0161790565194964014,0.00000000000000000000,-1.0000000000000000000,0.00272201650651188002,0.00111401018625559007,0.99999567479436801686,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000277089477549453,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +74 ,0 ,-0.0050476424381729100,-0.0111961163957836999,0.00000000000000000000,-1.0000000000000000000,0.00194436637460642996,0.00113033219232972002,0.99999747089107005049,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000162563454750852,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +75 ,0 ,-0.0030290486915984802,-0.0078744056239890003,0.00000000000000000000,-1.0000000000000000000,0.00116664737288116999,0.00114121373159283999,0.99999866828167605081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000085744870830239,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +76 ,0 ,-0.0010097601799682900,-0.0062136250328894701,0.00000000000000000000,-1.0000000000000000000,0.00038888704899347098,0.00114665456178814008,0.99999926697482099946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000047195218257911,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +77 ,0 ,0.00100976017996829000,-0.0062136250328894701,0.00000000000000000000,-1.0000000000000000000,-0.0003888870489934709,0.00114665456178814008,0.99999926697482099946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000047195218257911,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +78 ,0 ,0.00302904869159848020,-0.0078744056239890003,0.00000000000000000000,-1.0000000000000000000,-0.0011666473728811699,0.00114121373159283999,0.99999866828167605081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000085744870830239,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +79 ,0 ,0.00504764243817202012,-0.0111961163957836999,0.00000000000000000000,-1.0000000000000000000,-0.0019443663746064299,0.00113033219232972002,0.99999747089107005049,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000162563454750852,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +80 ,0 ,0.00706508084255075014,-0.0161790565194964014,0.00000000000000000000,-1.0000000000000000000,-0.0027220165065118800,0.00111401018625559007,0.99999567479436801686,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000277089477549453,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +81 ,0 ,0.00908090722701570922,-0.0228236747346212999,0.00000000000000000000,-1.0000000000000000000,-0.0034995702216166300,0.00109224807676316991,0.99999327997862197392,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000428480609571124,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +82 ,0 ,0.01109467037324569915,-0.0311305693342600990,0.00000000000000000000,-1.0000000000000000000,-0.0042769999738869598,0.00106504634838954989,0.99999028642657294962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000615613813579330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +83 ,0 ,0.01310592608231429985,-0.0411004881235816979,0.00000000000000000000,-1.0000000000000000000,-0.0050542782185070299,0.00103240560681800005,0.99998669411665297435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000837085160583228,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +84 ,0 ,-0.0021701677651400101,-0.0362437476570783012,0.00000000000000000000,-1.0000000000000000000,0.00504109091522312018,0.00026802780063103797,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000252754572329649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +85 ,0 ,-0.0018400903799431500,-0.0261663692328015992,0.00000000000000000000,-1.0000000000000000000,0.00426584109089738015,0.00030061359139585397,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000185666882543955,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +86 ,0 ,-0.0015081285665319299,-0.0177699200075248989,0.00000000000000000000,-1.0000000000000000000,0.00349043995672192013,0.00032776952664412300,0.99999385467914003733,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000127182294136218,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +87 ,0 ,-0.0011746132561110099,-0.0110536548548784991,0.00000000000000000000,-1.0000000000000000000,0.00271491502154621016,0.00034949500111161602,0.99999625353781695924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000078707186048632,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +88 ,0 ,-0.0008398823954327560,-0.0060169776463137600,0.00000000000000000000,-1.0000000000000000000,0.00193929379543940003,0.00036578953061691698,0.99999805266690100502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000041366560026290,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +89 ,0 ,-0.0005042793873859530,-0.0026594412515151800,0.00000000000000000000,-1.0000000000000000000,0.00116360378941876996,0.00037665275202092301,0.99999925207918305414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000016004094050003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +90 ,0 ,-0.0001681515320923749,-0.0009807475807314110,0.00000000000000000000,-1.0000000000000000000,0.00038787251517899098,0.00038208442324511000,0.99999985178319195089,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000003182238970111,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +91 ,0 ,0.00016815153209237499,-0.0009807475807314110,0.00000000000000000000,-1.0000000000000000000,-0.0003878725151789909,0.00038208442324511000,0.99999985178319195089,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000003182238970111,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +92 ,0 ,0.00050427938738595301,-0.0026594412515151800,0.00000000000000000000,-1.0000000000000000000,-0.0011636037894187699,0.00037665275202092301,0.99999925207918305414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000016004094050003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +93 ,0 ,0.00083988239543231202,-0.0060169776463137600,0.00000000000000000000,-1.0000000000000000000,-0.0019392937954394000,0.00036578953061691698,0.99999805266690100502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000041366560026290,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +94 ,0 ,0.00117461325611100991,-0.0110536548548784991,0.00000000000000000000,-1.0000000000000000000,-0.0027149150215462101,0.00034949500111161602,0.99999625353781695924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000078707186048632,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +95 ,0 ,0.00150812856653192994,-0.0177699200075248989,0.00000000000000000000,-1.0000000000000000000,-0.0034904399567219201,0.00032776952664412300,0.99999385467914003733,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000127182294136218,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +96 ,0 ,0.00184009037994315003,-0.0261663692328015992,0.00000000000000000000,-1.0000000000000000000,-0.0042658410908973801,0.00030061359139585397,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000185666882543955,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +97 ,0 ,0.00217016776514001013,-0.0362437476570783012,0.00000000000000000000,-1.0000000000000000000,-0.0050410909152231201,0.00026802780063103797,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000252754572329649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +98 ,0 ,0.00867378894596803999,-0.0363149184143784012,0.00000000000000000000,-1.0000000000000000000,0.00502788846174509040,-0.0004976253634616509,0.99998723627185004403,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002964183101994419,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +99 ,0 ,0.00733681129338403965,-0.0261302315219580985,0.00000000000000000000,-1.0000000000000000000,0.00425466938951398008,-0.0004650944693407880,0.99999084069581400946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002084162156279489,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +100 ,0 ,0.00600109507887492017,-0.0176443536542283015,0.00000000000000000000,-1.0000000000000000000,0.00348129920473297990,-0.0004379842820879940,0.99999384434386195952,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001376636487293579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +101 ,0 ,0.00466642263560945996,-0.0108565423700690000,0.00000000000000000000,-1.0000000000000000000,0.00270780538037644017,-0.0004162954065340119,0.99999624723703695039,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000827518999813037,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +102 ,0 ,0.00333256928516200996,-0.0057662036846696795,0.00000000000000000000,-1.0000000000000000000,0.00193421539063980997,-0.0004000283265169489,0.99999804939217795674,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000425540827109215,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +103 ,0 ,0.00199930489600830003,-0.0023728920789584701,0.00000000000000000000,-1.0000000000000000000,0.00116055671066785993,-0.0003891834049142560,0.99999925082191898351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000162250796620356,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +104 ,0 ,0.00066639544158880704,-0.0006763105347092900,0.00000000000000000000,-1.0000000000000000000,0.00038685681628350897,-0.0003837608836338440,0.99999985153468295973,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000032014042972150,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +105 ,0 ,-0.0006663954415888070,-0.0006763105347092900,0.00000000000000000000,-1.0000000000000000000,-0.0003868568162835089,-0.0003837608836338440,0.99999985153468295973,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000032014042972150,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +106 ,0 ,-0.0019993048960083000,-0.0023728920789584701,0.00000000000000000000,-1.0000000000000000000,-0.0011605567106678599,-0.0003891834049142560,0.99999925082191898351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000162250796620356,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +107 ,0 ,-0.0033325692851617900,-0.0057662036846696795,0.00000000000000000000,-1.0000000000000000000,-0.0019342153906398099,-0.0004000283265169489,0.99999804939217795674,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000425540827109215,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +108 ,0 ,-0.0046664226356094599,-0.0108565423700690000,0.00000000000000000000,-1.0000000000000000000,-0.0027078053803764401,-0.0004162954065340119,0.99999624723703695039,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000827518999813037,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +109 ,0 ,-0.0060010950788749201,-0.0176443536542283015,0.00000000000000000000,-1.0000000000000000000,-0.0034812992047329799,-0.0004379842820879940,0.99999384434386195952,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001376636487293579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +110 ,0 ,-0.0073368112933840396,-0.0261302315219580985,0.00000000000000000000,-1.0000000000000000000,-0.0042546693895139800,-0.0004650944693407880,0.99999084069581400946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002084162156279489,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +111 ,0 ,-0.0086737889459680399,-0.0363149184143784012,0.00000000000000000000,-1.0000000000000000000,-0.0050278884617450904,-0.0004976253634616509,0.99998723627185004403,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002964183101994419,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +112 ,0 ,0.01942563877513680051,-0.0413384717459934977,0.00000000000000000000,-1.0000000000000000000,0.00501467076412681969,-0.0012645610081005698,0.99998662689187201024,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008861254286784969,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +113 ,0 ,0.01643577637159939972,-0.0310466250516901014,0.00000000000000000000,-1.0000000000000000000,0.00424348479024315959,-0.0012320849564647399,0.99999023735409298119,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006423217803330770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +114 ,0 ,0.01344655241715080051,-0.0224714424491252000,0.00000000000000000000,-1.0000000000000000000,0.00347214790060916978,-0.0012050204720752699,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004417390425714980,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +115 ,0 ,0.01045786250927660011,-0.0156121841737741993,0.00000000000000000000,-1.0000000000000000000,0.00270068753241512003,-0.0011833681593253499,0.99999565295387704555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002829660218139910,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +116 ,0 ,0.00746959523778390008,-0.0104682583740509996,0.00000000000000000000,-1.0000000000000000000,0.00192913112407363997,-0.0011671285017129100,0.99999745812885298956,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001648739475967890,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +117 ,0 ,0.00448163374228727033,-0.0070392211367769101,0.00000000000000000000,-1.0000000000000000000,0.00115750611494795001,-0.0011563018618550599,0.99999866157190298032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000866162201873522,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +118 ,0 ,0.00149385726950967989,-0.0053247765085211503,0.00000000000000000000,-1.0000000000000000000,0.00038583994508018898,-0.0011508884814914500,0.99999926329134802838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000476284503747593,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +119 ,0 ,-0.0014938572695096798,-0.0053247765085211503,0.00000000000000000000,-1.0000000000000000000,-0.0003858399450801889,-0.0011508884814914500,0.99999926329134802838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000476284503747593,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +120 ,0 ,-0.0044816337422872703,-0.0070392211367769101,0.00000000000000000000,-1.0000000000000000000,-0.0011575061149479500,-0.0011563018618550599,0.99999866157190298032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000866162201873522,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +121 ,0 ,-0.0074695952377841203,-0.0104682583740509996,0.00000000000000000000,-1.0000000000000000000,-0.0019291311240736399,-0.0011671285017129100,0.99999745812885298956,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001648739475967890,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +122 ,0 ,-0.0104578625092766001,-0.0156121841737741993,0.00000000000000000000,-1.0000000000000000000,-0.0027006875324151200,-0.0011833681593253499,0.99999565295387704555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002829660218139910,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +123 ,0 ,-0.0134465524171508005,-0.0224714424491252000,0.00000000000000000000,-1.0000000000000000000,-0.0034721479006091697,-0.0012050204720752699,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004417390425714980,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +124 ,0 ,-0.0164357763715993997,-0.0310466250516901014,0.00000000000000000000,-1.0000000000000000000,-0.0042434847902431595,-0.0012320849564647399,0.99999023735409298119,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006423217803330770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +125 ,0 ,-0.0194256387751368005,-0.0413384717459934977,0.00000000000000000000,-1.0000000000000000000,-0.0050146707641268196,-0.0012645610081005698,0.99998662689187201024,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008861254286784969,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +126 ,0 ,0.03008507290358690064,-0.0513391581335573971,0.00000000000000000000,-1.0000000000000000000,0.00500143772818009962,-0.0020327862875212702,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015929378218970698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +127 ,0 ,0.02545654358181699897,-0.0409402977946283011,0.00000000000000000000,-1.0000000000000000000,0.00423228721338655012,-0.0020003650242103598,0.99998904308233005355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011926154593311400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +128 ,0 ,0.02082802970359680025,-0.0322759322777586010,0.00000000000000000000,-1.0000000000000000000,0.00346298597914238004,-0.0019733461975441598,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008616048194198809,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +129 ,0 ,0.01619954013401070022,-0.0253453244766038005,0.00000000000000000000,-1.0000000000000000000,0.00269356142694451980,-0.0019517304114895200,0.99999446772231703750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005984924280255649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +130 ,0 ,0.01157107673412080019,-0.0201478846690005992,0.00000000000000000000,-1.0000000000000000000,0.00192404095951378994,-0.0019355181491999299,0.99999627591100603840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004021474501314510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +131 ,0 ,0.00694263591767940984,-0.0166831705406366992,0.00000000000000000000,-1.0000000000000000000,0.00115445198052272998,-0.0019247097730322199,0.99999748136328503456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002717219479109190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +132 ,0 ,0.00231421020761291007,-0.0149508872007284993,0.00000000000000000000,-1.0000000000000000000,0.00038482189432357698,-0.0019193055245567398,0.99999808408737100862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002066505282982690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +133 ,0 ,-0.0023142102076129100,-0.0149508872007284993,0.00000000000000000000,-1.0000000000000000000,-0.0003848218943235769,-0.0019193055245567398,0.99999808408737100862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002066505282982690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +134 ,0 ,-0.0069426359176794098,-0.0166831705406366992,0.00000000000000000000,-1.0000000000000000000,-0.0011544519805227299,-0.0019247097730322199,0.99999748136328503456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002717219479109190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +135 ,0 ,-0.0115710767341217005,-0.0201478846690005992,0.00000000000000000000,-1.0000000000000000000,-0.0019240409595137899,-0.0019355181491999299,0.99999627591100603840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004021474501314510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +136 ,0 ,-0.0161995401340107002,-0.0253453244766038005,0.00000000000000000000,-1.0000000000000000000,-0.0026935614269445198,-0.0019517304114895200,0.99999446772231703750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005984924280255649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +137 ,0 ,-0.0208280297035968002,-0.0322759322777586010,0.00000000000000000000,-1.0000000000000000000,-0.0034629859791423800,-0.0019733461975441598,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008616048194198809,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +138 ,0 ,-0.0254565435818169989,-0.0409402977946283011,0.00000000000000000000,-1.0000000000000000000,-0.0042322872133865501,-0.0020003650242103598,0.99998904308233005355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011926154593311400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +139 ,0 ,-0.0300850729035869006,-0.0513391581335573971,0.00000000000000000000,-1.0000000000000000000,-0.0050014377281800996,-0.0020327862875212702,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015929378218970698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +140 ,0 ,0.04065177894479800324,-0.0663420097337179964,0.00000000000000000000,-1.0000000000000000000,0.00498818925947424988,-0.0028023083877208600,0.99998363238385601370,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00024943181517755901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +141 ,0 ,0.03439884863241800261,-0.0558362793825009015,0.00000000000000000000,-1.0000000000000000000,0.00422107657904061996,-0.0027699418585717902,0.99998725488608797284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019367541267456498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +142 ,0 ,0.02814531072381989962,-0.0470828506633486978,0.00000000000000000000,-1.0000000000000000000,0.00345381337495648992,-0.0027429686444921399,0.99999027360079195680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014747132161119200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +143 ,0 ,0.02189128735807480130,-0.0400809891211312968,0.00000000000000000000,-1.0000000000000000000,0.00268642701311631003,-0.0027213893490188900,0.99999268854822798147,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011067794889640899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +144 ,0 ,0.01563689367383139933,-0.0348301071533212019,0.00000000000000000000,-1.0000000000000000000,0.00191894486063988998,-0.0027052044549645301,0.99999449974461296353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008318202355894749,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +145 ,0 ,0.00938223936519944068,-0.0313297640335842980,0.00000000000000000000,-1.0000000000000000000,0.00115139428559990009,-0.0026944143244310701,0.99999570720210895213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006489860095371109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +146 ,0 ,0.00312743023744210986,-0.0295796659328350988,0.00000000000000000000,-1.0000000000000000000,0.00038380265674957001,-0.0026890191988159502,0.99999631092883001226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005577104548137869,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +147 ,0 ,-0.0031274302374421098,-0.0295796659328350988,0.00000000000000000000,-1.0000000000000000000,-0.0003838026567495700,-0.0026890191988159502,0.99999631092883001226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005577104548137869,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +148 ,0 ,-0.0093822393651994406,-0.0313297640335842980,0.00000000000000000000,-1.0000000000000000000,-0.0011513942855999000,-0.0026944143244310701,0.99999570720210895213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006489860095371109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +149 ,0 ,-0.0156368936738313993,-0.0348301071533212019,0.00000000000000000000,-1.0000000000000000000,-0.0019189448606398899,-0.0027052044549645301,0.99999449974461296353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008318202355894749,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +150 ,0 ,-0.0218912873580748013,-0.0400809891211312968,0.00000000000000000000,-1.0000000000000000000,-0.0026864270131163100,-0.0027213893490188900,0.99999268854822798147,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011067794889640899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +151 ,0 ,-0.0281453107238198996,-0.0470828506633486978,0.00000000000000000000,-1.0000000000000000000,-0.0034538133749564899,-0.0027429686444921399,0.99999027360079195680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014747132161119200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +152 ,0 ,-0.0343988486324188977,-0.0558362793825009015,0.00000000000000000000,-1.0000000000000000000,-0.0042210765790406199,-0.0027699418585717902,0.99998725488608797284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019367541267456498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +153 ,0 ,-0.0406517789447980032,-0.0663420097337179964,0.00000000000000000000,-1.0000000000000000000,-0.0049881892594742498,-0.0028023083877208600,0.99998363238385601370,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00024943181517755901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +154 ,0 ,0.05112544091951939928,-0.0863723429355535976,0.00000000000000000000,-1.0000000000000000000,0.00497492526333551988,-0.0035731345266403501,0.99998124123819398523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036686330099655600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +155 ,0 ,0.04326242419188459920,-0.0757598836704511946,0.00000000000000000000,-1.0000000000000000000,0.00420985280709623016,-0.0035408226774800198,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029530986580539298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +156 ,0 ,0.03539817677627119657,-0.0669175093479173060,0.00000000000000000000,-1.0000000000000000000,0.00344463002250720981,-0.0035138950308439601,0.99998789345957594942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00023594202491494800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +157 ,0 ,0.02753293409536939836,-0.0598444881556660993,0.00000000000000000000,-1.0000000000000000000,0.00267928423995129980,-0.0034923521898372099,0.99999031240914704188,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018861794262647898,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +158 ,0 ,0.01966692457493859902,-0.0545402346039413968,0.00000000000000000000,-1.0000000000000000000,0.00191384279103806991,-0.0034761946369314400,0.99999212660731395807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015322415799801100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +159 ,0 ,0.01180037119889370059,-0.0510043095473914978,0.00000000000000000000,-1.0000000000000000000,0.00114833300833110996,-0.0034654227339727897,0.99999333606608498126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012967557381671199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +160 ,0 ,0.00393349306421808975,-0.0492364202124239980,0.00000000000000000000,-1.0000000000000000000,0.00038278222507536900,-0.0034600367221897499,0.99999394079346703989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011791546126005399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +161 ,0 ,-0.0039334930642180897,-0.0492364202124239980,0.00000000000000000000,-1.0000000000000000000,-0.0003827822250753690,-0.0034600367221897499,0.99999394079346703989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011791546126005399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +162 ,0 ,-0.0118003711988937005,-0.0510043095473914978,0.00000000000000000000,-1.0000000000000000000,-0.0011483330083311099,-0.0034654227339727897,0.99999333606608498126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012967557381671199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +163 ,0 ,-0.0196669245749385990,-0.0545402346039413968,0.00000000000000000000,-1.0000000000000000000,-0.0019138427910380699,-0.0034761946369314400,0.99999212660731395807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015322415799801100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +164 ,0 ,-0.0275329340953693983,-0.0598444881556660993,0.00000000000000000000,-1.0000000000000000000,-0.0026792842399512998,-0.0034923521898372099,0.99999031240914704188,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018861794262647898,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +165 ,0 ,-0.0353981767762711965,-0.0669175093479173060,0.00000000000000000000,-1.0000000000000000000,-0.0034446300225072098,-0.0035138950308439601,0.99998789345957594942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00023594202491494800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +166 ,0 ,-0.0432624241918845992,-0.0757598836704511946,0.00000000000000000000,-1.0000000000000000000,-0.0042098528070962301,-0.0035408226774800198,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029530986580539298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +167 ,0 ,-0.0511254409195193992,-0.0863723429355535976,0.00000000000000000000,-1.0000000000000000000,-0.0049749252633355198,-0.0035731345266403501,0.99998124123819398523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036686330099655600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +168 ,0 ,0.06150573923037769979,-0.1114557609710779967,0.00000000000000000000,-1.0000000000000000000,0.00496164564484674001,-0.0043452719543262997,0.99997825010553997859,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00051951655677839902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +169 ,0 ,0.05204699986743400313,-0.1007367113309689948,0.00000000000000000000,-1.0000000000000000000,0.00419861581723810980,-0.0043130147309824199,0.99998188460049097781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043209263230892198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +170 ,0 ,0.04258640665483909987,-0.0918055068772467980,0.00000000000000000000,-1.0000000000000000000,0.00343543585608166012,-0.0042861326066397902,0.99998491331007399729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035949983066529999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +171 ,0 ,0.03312430831183289792,-0.0846614184265215008,0.00000000000000000000,-1.0000000000000000000,0.00267213305633922986,-0.0042646261839777398,0.99998733625403501967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030159607013047201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +172 ,0 ,0.02366104656408540146,-0.0793038625887003967,0.00000000000000000000,-1.0000000000000000000,0.00190873471420085994,-0.0042484959451300997,0.99998915344817396189,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025826769706327500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +173 ,0 ,0.01419695769799590029,-0.0757324017991809067,0.00000000000000000000,-1.0000000000000000000,0.00114526812681179008,-0.0042377422516867695,0.99999036490434500823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022942946952753099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +174 ,0 ,0.00473237411488957974,-0.0739467443369958982,0.00000000000000000000,-1.0000000000000000000,0.00038176059199945101,-0.0042323653447002302,0.99999097063045494504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021502456183952698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +175 ,0 ,-0.0047323741148895797,-0.0739467443369958982,0.00000000000000000000,-1.0000000000000000000,-0.0003817605919994510,-0.0042323653447002302,0.99999097063045494504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021502456183952698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +176 ,0 ,-0.0141969576979959002,-0.0757324017991809067,0.00000000000000000000,-1.0000000000000000000,-0.0011452681268117900,-0.0042377422516867695,0.99999036490434500823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022942946952753099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +177 ,0 ,-0.0236610465640854014,-0.0793038625887003967,0.00000000000000000000,-1.0000000000000000000,-0.0019087347142008599,-0.0042484959451300997,0.99998915344817396189,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025826769706327500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +178 ,0 ,-0.0331243083118328979,-0.0846614184265215008,0.00000000000000000000,-1.0000000000000000000,-0.0026721330563392298,-0.0042646261839777398,0.99998733625403501967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030159607013047201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +179 ,0 ,-0.0425864066548390998,-0.0918055068772467980,0.00000000000000000000,-1.0000000000000000000,-0.0034354358560816601,-0.0042861326066397902,0.99998491331007399729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035949983066529999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +180 ,0 ,-0.0520469998674348982,-0.1007367113309689948,0.00000000000000000000,-1.0000000000000000000,-0.0041986158172381202,-0.0043130147309824199,0.99998188460049097781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043209263230892198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +181 ,0 ,-0.0615057392303776997,-0.1114557609710779967,0.00000000000000000000,-1.0000000000000000000,-0.0049616456448467400,-0.0043452719543262997,0.99997825010553997859,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00051951655677839902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +182 ,0 ,0.07179235063644730241,-0.1416181565232350059,0.00000000000000000000,-1.0000000000000000000,0.00494835030884669020,-0.0051187279531199596,0.99997465590552003789,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00071541281863574102,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +183 ,0 ,0.06075230218330850140,-0.1307926524852600080,0.00000000000000000000,-1.0000000000000000000,0.00418736552894469985,-0.0050865253014042398,0.99997829637961899162,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00061204435087347497,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +184 ,0 ,0.04970977663105809879,-0.1217727312328750061,0.00000000000000000000,-1.0000000000000000000,0.00342623080979812021,-0.0050596886541970096,0.99998133007229694779,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00052616487528211997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +185 ,0 ,0.03866523601165990087,-0.1145576662003290058,0.00000000000000000000,-1.0000000000000000000,0.00266497341103844997,-0.0050382186137555903,0.99998375700304198421,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045763207140225902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +186 ,0 ,0.02761913536669659968,-0.1091468760940289967,0.00000000000000000000,-1.0000000000000000000,0.00190362059352694001,-0.0050221156618696100,0.99998557718744895961,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040633208391227499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +187 ,0 ,0.01657192430101180058,-0.1055399249197829930,0.00000000000000000000,-1.0000000000000000000,0.00114219961908110993,-0.0050113801598746197,0.99998679063721795934,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00037217952922219399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +188 ,0 ,0.00552404853617355015,-0.1037365220023700046,0.00000000000000000000,-1.0000000000000000000,0.00038073775020152099,-0.0050060123486569104,0.99998739736015196388,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035511748205863097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +189 ,0 ,-0.0055240485361735501,-0.1037365220023700046,0.00000000000000000000,-1.0000000000000000000,-0.0003807377502015209,-0.0050060123486569104,0.99998739736015196388,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035511748205863097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +190 ,0 ,-0.0165719243010118005,-0.1055399249197829930,0.00000000000000000000,-1.0000000000000000000,-0.0011421996190811099,-0.0050113801598746197,0.99998679063721795934,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00037217952922219399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +191 ,0 ,-0.0276191353666963984,-0.1091468760940289967,0.00000000000000000000,-1.0000000000000000000,-0.0019036205935269400,-0.0050221156618696100,0.99998557718744895961,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040633208391227499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +192 ,0 ,-0.0386652360116599008,-0.1145576662003290058,0.00000000000000000000,-1.0000000000000000000,-0.0026649734110384499,-0.0050382186137555903,0.99998375700304198421,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045763207140225902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +193 ,0 ,-0.0497097766310580987,-0.1217727312328750061,0.00000000000000000000,-1.0000000000000000000,-0.0034262308097981202,-0.0050596886541970096,0.99998133007229694779,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00052616487528211997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +194 ,0 ,-0.0607523021833094034,-0.1307926524852600080,0.00000000000000000000,-1.0000000000000000000,-0.0041873655289446998,-0.0050865253014042398,0.99997829637961899162,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00061204435087347497,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +195 ,0 ,-0.0717923506364473024,-0.1416181565232350059,0.00000000000000000000,-1.0000000000000000000,-0.0049483503088466902,-0.0051187279531199596,0.99997465590552003789,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00071541281863574102,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +196 ,0 ,-0.0691513020354870000,-0.1384655869163929908,0.00000000000000000000,-1.0000000000000000000,0.00511999075325057003,0.00483541137152327001,0.99997520193830502499,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006875281230804829,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +197 ,0 ,-0.0585239127486429991,-0.1290353201373639902,0.00000000000000000000,-1.0000000000000000000,0.00433260488091832991,0.00486832767963155024,0.99997876373478500333,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005892301059020610,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +198 ,0 ,-0.0478909000881459975,-0.1211781605232079978,0.00000000000000000000,-1.0000000000000000000,0.00354506650441355989,0.00489575905078607018,0.99998173185653504990,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005070598900829279,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +199 ,0 ,-0.0372532747502148028,-0.1148933466393450009,0.00000000000000000000,-1.0000000000000000000,0.00275740334975018005,0.00491770487711714991,0.99998410632644996187,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004411566849285010,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/toroid.rayx.csv b/Intern/RayCore/tests/output/toroid.rayx.csv new file mode 100644 index 000000000..3eaed04e5 --- /dev/null +++ b/Intern/RayCore/tests/output/toroid.rayx.csv @@ -0,0 +1,201 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.0691513020354815460,-0.1384655869166047381,0.00000000000000000000,1.00000000000000000000,0.00511999075325057263,0.00483541137152350766,0.99997520193830535806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993124718785111,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-0.0585239127486374202,-0.1290353201369802971,0.00000000000000000000,1.00000000000000000000,0.00433260488091832558,0.00486832767963134727,0.99997876373478533640,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994107698967127,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,-0.0478909000881478155,-0.1211781605236761233,0.00000000000000000000,1.00000000000000000000,0.00354506650441356466,0.00489575905078617167,0.99998173185653516092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994929401091212,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,-0.0372532747502124089,-0.1148933466396456354,0.00000000000000000000,1.00000000000000000000,0.00275740334975018265,0.00491770487711727915,0.99998410632644962880,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995588433175726,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-0.0266120544724905531,-0.1101802693022423534,0.00000000000000000000,1.00000000000000000000,0.00196964314415273150,0.00493416467234817669,0.99998588716284930733,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996083681544405,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-0.0159682624690252045,-0.1070384715957757582,0.00000000000000000000,1.00000000000000000000,0.00118181361578715139,0.00494513807177834191,0.99998707437947820242,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996414311135595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,-0.0053229258654932803,-0.1054676488989859245,0.00000000000000000000,1.00000000000000000000,0.00039394249349174680,0.00495062483227414872,0.99998766798550153822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996579765102069,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,0.00532292586549328039,-0.1054676488989859245,0.00000000000000000000,1.00000000000000000000,-0.0003939424934917468,0.00495062483227414872,0.99998766798550153822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996579765102069,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,0.01596826246902520451,-0.1070384715957757582,0.00000000000000000000,1.00000000000000000000,-0.0011818136157871513,0.00494513807177834191,0.99998707437947820242,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996414311135595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,0.02661205447249015421,-0.1101802693022423534,0.00000000000000000000,1.00000000000000000000,-0.0019696431441527323,0.00493416467234817669,0.99998588716284930733,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996083681544405,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,0.03725327475021240897,-0.1148933466396456354,0.00000000000000000000,1.00000000000000000000,-0.0027574033497501826,0.00491770487711727915,0.99998410632644962880,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995588433175726,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,0.04789090008814781557,-0.1211781605236761233,0.00000000000000000000,1.00000000000000000000,-0.0035450665044135646,0.00489575905078617167,0.99998173185653516092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994929401091212,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,0.05852391274863742026,-0.1290353201369802971,0.00000000000000000000,1.00000000000000000000,-0.0043326048809183255,0.00486832767963134727,0.99997876373478533640,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994107698967127,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,0.06915130203548154608,-0.1384655869166047381,0.00000000000000000000,1.00000000000000000000,-0.0051199907532505726,0.00483541137152350766,0.99997520193830535806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993124718785111,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,-0.0577609925286916292,-0.1093267650908639199,0.00000000000000000000,1.00000000000000000000,0.00510687780018119746,0.00407730460910759977,0.99997864746516385014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994990279737976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,-0.0488847118053255744,-0.0997882458961587143,0.00000000000000000000,1.00000000000000000000,0.00432150890463304376,0.00411016569554786999,0.99998221539122467138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995822329037764,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-0.0400034310725046957,-0.0918408709060117428,0.00000000000000000000,1.00000000000000000000,0.00353598770522071600,0.00413755104784618854,0.99998518862144880614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996518259795266,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-0.0311180476951321699,-0.0854838814254137713,0.00000000000000000000,1.00000000000000000000,0.00275034189153587887,0.00415946005856411473,0.99998756717846259967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997076677591394,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,-0.0222294660750391379,-0.0807166704701236664,0.00000000000000000000,1.00000000000000000000,0.00196459915438246257,0.00417589224178094731,0.99998935108037378949,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997496466894517,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,-0.0133385960867913894,-0.0775387827678029190,0.00000000000000000000,1.00000000000000000000,0.00117878718550683205,0.00418684723305186041,0.99999054034076628738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997776791169599,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +20 ,0 ,-0.0044463515140699544,-0.0759499147988377393,0.00000000000000000000,1.00000000000000000000,0.00039293367732863159,0.00419232478942523946,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997917092769057,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,0 ,0.00444635151406995443,-0.0759499147988377393,0.00000000000000000000,1.00000000000000000000,-0.0003929336773286315,0.00419232478942523946,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997917092769057,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,0 ,0.01333859608679138948,-0.0775387827678029190,0.00000000000000000000,1.00000000000000000000,-0.0011787871855068320,0.00418684723305186041,0.99999054034076628738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997776791169599,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +23 ,0 ,0.02222946607503895749,-0.0807166704701236664,0.00000000000000000000,1.00000000000000000000,-0.0019645991543824634,0.00417589224178094731,0.99998935108037378949,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997496466894517,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +24 ,0 ,0.03111804769513216994,-0.0854838814254137713,0.00000000000000000000,1.00000000000000000000,-0.0027503418915358788,0.00415946005856411473,0.99998756717846259967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997076677591394,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,0 ,0.04000343107250469570,-0.0918408709060117428,0.00000000000000000000,1.00000000000000000000,-0.0035359877052207160,0.00413755104784618854,0.99998518862144880614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996518259795266,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,0 ,0.04888471180532557441,-0.0997882458961587143,0.00000000000000000000,1.00000000000000000000,-0.0043215089046330437,0.00411016569554786999,0.99998221539122467138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995822329037764,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +27 ,0 ,0.05776099252869162925,-0.1093267650908639199,0.00000000000000000000,1.00000000000000000000,-0.0051068778001811974,0.00407730460910759977,0.99997864746516385014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994990279737976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +28 ,0 ,-0.0464610105416149929,-0.0849975978430929368,0.00000000000000000000,1.00000000000000000000,0.00509375016303547853,0.00331795763403769719,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996454994543455,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +29 ,0 ,-0.0393219420521473961,-0.0753509896782248861,0.00000000000000000000,1.00000000000000000000,0.00431040050436464101,0.00335076355300120308,0.99998509630449161633,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997135432531649,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,0 ,-0.0321784968116239980,-0.0673135355290724879,0.00000000000000000000,1.00000000000000000000,0.00352689874163562063,0.00337810293159805001,0.99998807463181760279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997705024834431,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,0 ,-0.0250314588727935799,-0.0608844794426780175,0.00000000000000000000,1.00000000000000000000,0.00274327252810932639,0.00339997516283276545,0.99999045726683222223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998162374722596,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +32 ,0 ,-0.0178816193207116218,-0.0560632166159977449,0.00000000000000000000,1.00000000000000000000,0.00195954951826028721,0.00341637976112846818,0.99999224422743049345,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998506364809145,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +33 ,0 ,-0.0107297747097852905,-0.0528492934238696254,0.00000000000000000000,1.00000000000000000000,0.00117575736750670381,0.00342731636230940786,0.99999343552703645610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998736157031089,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +34 ,0 ,-0.0035767255009463367,-0.0512424074335438850,0.00000000000000000000,1.00000000000000000000,0.00039192373194079597,0.00343278472359009228,0.99999403117460128331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998851192813162,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +35 ,0 ,0.00357672550094633671,-0.0512424074335438850,0.00000000000000000000,1.00000000000000000000,-0.0003919237319407959,0.00343278472359009228,0.99999403117460128331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998851192813162,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,0 ,0.01072977470978529052,-0.0528492934238696254,0.00000000000000000000,1.00000000000000000000,-0.0011757573675067038,0.00342731636230940786,0.99999343552703645610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998736157031089,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,0 ,0.01788161932071163917,-0.0560632166159977449,0.00000000000000000000,1.00000000000000000000,-0.0019595495182602876,0.00341637976112846818,0.99999224422743049345,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998506364809145,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +38 ,0 ,0.02503145887279357995,-0.0608844794426780175,0.00000000000000000000,1.00000000000000000000,-0.0027432725281093263,0.00339997516283276545,0.99999045726683222223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998162374722596,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +39 ,0 ,0.03217849681162399805,-0.0673135355290724879,0.00000000000000000000,1.00000000000000000000,-0.0035268987416356206,0.00337810293159805001,0.99998807463181760279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997705024834431,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +40 ,0 ,0.03932194205214743082,-0.0753509896782248861,0.00000000000000000000,1.00000000000000000000,-0.0043104005043646418,0.00335076355300120308,0.99998509630449161633,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997135432531649,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,0 ,0.04646101054161499294,-0.0849975978430929368,0.00000000000000000000,1.00000000000000000000,-0.0050937501630354785,0.00331795763403769719,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996454994543455,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +42 ,0 ,-0.0352516439989982166,-0.0655011979610730099,0.00000000000000000000,1.00000000000000000000,0.00508060774906991894,0.00255736347909776579,0.99998382352762871239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997590337152360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +43 ,0 ,-0.0298358470831469671,-0.0557466618369392499,0.00000000000000000000,1.00000000000000000000,0.00429927960163709044,0.00259011428476110328,0.99998740367211536028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998118478415563,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,0 ,-0.0244162965861969005,-0.0476192627273722551,0.00000000000000000000,1.00000000000000000000,0.00351779954945019655,0.00261740773480791458,0.99999038708533583008,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998561161173711,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,0 ,-0.0189936632645890911,-0.0411182474019981050,0.00000000000000000000,1.00000000000000000000,0.00273619520953059455,0.00263924322268011208,0.99999277378938411509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998916986223775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,0 ,-0.0135686249026792434,-0.0362430132397585785,0.00000000000000000000,1.00000000000000000000,0.00195449420011470321,0.00265562026314863225,0.99999456380194351456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999184834359766,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +47 ,0 ,-0.0081418647507434990,-0.0329931082467662256,0.00000000000000000000,1.00000000000000000000,0.00117272414038376731,0.00266653849229657327,0.99999575713627864015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999363866081694,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +48 ,0 ,-0.0027140699631842315,-0.0313682310870676966,0.00000000000000000000,1.00000000000000000000,0.00039091265019390803,0.00267199766752118693,0.99999635380123463868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999453521850227,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +49 ,0 ,0.00271406996318423153,-0.0313682310870676966,0.00000000000000000000,1.00000000000000000000,-0.0003909126501939080,0.00267199766752118693,0.99999635380123463868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999453521850227,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +50 ,0 ,0.00814186475074349901,-0.0329931082467662256,0.00000000000000000000,1.00000000000000000000,-0.0011727241403837673,0.00266653849229657327,0.99999575713627864015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999363866081694,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +51 ,0 ,0.01356862490267948286,-0.0362430132397585785,0.00000000000000000000,1.00000000000000000000,-0.0019544942001147036,0.00265562026314863225,0.99999456380194351456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999184834359766,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,0 ,0.01899366326458909112,-0.0411182474019981050,0.00000000000000000000,1.00000000000000000000,-0.0027361952095305945,0.00263924322268011208,0.99999277378938411509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998916986223775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +53 ,0 ,0.02441629658619690057,-0.0476192627273722551,0.00000000000000000000,1.00000000000000000000,-0.0035177995494501965,0.00261740773480791458,0.99999038708533583008,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998561161173711,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +54 ,0 ,0.02983584708314785532,-0.0557466618369392499,0.00000000000000000000,1.00000000000000000000,-0.0042992796016370904,0.00259011428476110328,0.99998740367211536028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998118478415563,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +55 ,0 ,0.03525164399899821665,-0.0655011979610730099,0.00000000000000000000,1.00000000000000000000,-0.0050806077490699189,0.00255736347909776579,0.99998382352762871239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997590337152360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +56 ,0 ,-0.0241331842480904737,-0.0508609450884720121,0.00000000000000000000,1.00000000000000000000,0.00506745046530147381,0.00179551514632005234,0.99998554843114662027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998468601916101,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +57 ,0 ,-0.0204266733882428261,-0.0409986395724077842,0.00000000000000000000,1.00000000000000000000,0.00428814611777176592,0.00182821089285328591,0.99998913466487393542,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998843755984125,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +58 ,0 ,-0.0167170320461315739,-0.0327814276616158611,0.00000000000000000000,1.00000000000000000000,0.00350869006429054561,0.00185545845949406078,0.99999212315294638830,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999158953814912,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +59 ,0 ,-0.0130048176946463700,-0.0262085588385477276,0.00000000000000000000,1.00000000000000000000,0.00272910988573079899,0.00187725724011885211,0.99999451391719418325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999412793749797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +60 ,0 ,-0.0092905948302787789,-0.0212794326528603881,0.00000000000000000000,1.00000000000000000000,0.00194943316418205074,0.00189360674984721745,0.99999630697508834487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999604154727421,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +61 ,0 ,-0.0055749334121439828,-0.0179935987421909263,0.00000000000000000000,1.00000000000000000000,0.00116968748267980279,0.00190450662502623675,0.99999750233973472290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999732195828983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,0 ,-0.0018584073010751223,-0.0163507568495243477,0.00000000000000000000,1.00000000000000000000,0.00038990042493520279,0.00190995662321962584,0.99999810001987288199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999796356478327,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +63 ,0 ,0.00185840730107512236,-0.0163507568495243477,0.00000000000000000000,1.00000000000000000000,-0.0003899004249352027,0.00190995662321962584,0.99999810001987288199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999796356478327,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +64 ,0 ,0.00557493341214398280,-0.0179935987421909263,0.00000000000000000000,1.00000000000000000000,-0.0011696874826798027,0.00190450662502623675,0.99999750233973472290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999732195828983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +65 ,0 ,0.00929059483027857950,-0.0212794326528603881,0.00000000000000000000,1.00000000000000000000,-0.0019494331641820513,0.00189360674984721745,0.99999630697508834487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999604154727421,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +66 ,0 ,0.01300481769464637005,-0.0262085588385477276,0.00000000000000000000,1.00000000000000000000,-0.0027291098857307989,0.00187725724011885211,0.99999451391719418325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999412793749797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,0 ,0.01671703204613157398,-0.0327814276616158611,0.00000000000000000000,1.00000000000000000000,-0.0035086900642905456,0.00185545845949406078,0.99999212315294638830,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999158953814912,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +68 ,0 ,0.02042667338824371431,-0.0409986395724077842,0.00000000000000000000,1.00000000000000000000,-0.0042881461177717659,0.00182821089285328591,0.99998913466487393542,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998843755984125,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +69 ,0 ,0.02413318424809047374,-0.0508609450884720121,0.00000000000000000000,1.00000000000000000000,-0.0050674504653014738,0.00179551514632005234,0.99998554843114662027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998468601916101,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +70 ,0 ,-0.0131059260823182602,-0.0411004881237069172,0.00000000000000000000,1.00000000000000000000,0.00505427821850702729,0.00103240560681797902,0.99998669411665308537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999162914828048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +71 ,0 ,-0.0110946703732476316,-0.0311305693336752092,0.00000000000000000000,1.00000000000000000000,0.00427699997388696333,0.00106504634838992741,0.99999028642657261656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999384386155725,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +72 ,0 ,-0.0090809072270111677,-0.0228236747346513765,0.00000000000000000000,1.00000000000000000000,0.00349957022161662177,0.00109224807676278545,0.99999327997862186290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999571519401797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +73 ,0 ,-0.0070650808425428502,-0.0161790565189359816,0.00000000000000000000,1.00000000000000000000,0.00272201650651187872,0.00111401018625538385,0.99999567479436768380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999722910542914,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +74 ,0 ,-0.0050476424381723002,-0.0111961163963447338,0.00000000000000000000,1.00000000000000000000,0.00194436637460643321,0.00113033219233001015,0.99999747089106971742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999837436535017,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +75 ,0 ,-0.0030290486915975655,-0.0078744056242051434,0.00000000000000000000,1.00000000000000000000,0.00116664737288117302,0.00114121373159281895,0.99999866828167593979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999914255113253,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +76 ,0 ,-0.0010097601799680078,-0.0062136250326939304,0.00000000000000000000,1.00000000000000000000,0.00038888704899347098,0.00114665456178830033,0.99999926697482066639,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999952804791973,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +77 ,0 ,0.00100976017996800789,-0.0062136250326939304,0.00000000000000000000,1.00000000000000000000,-0.0003888870489934709,0.00114665456178830033,0.99999926697482066639,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999952804791973,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +78 ,0 ,0.00302904869159756557,-0.0078744056242051434,0.00000000000000000000,1.00000000000000000000,-0.0011666473728811730,0.00114121373159281895,0.99999866828167593979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999914255113253,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +79 ,0 ,0.00504764243817210425,-0.0111961163963447338,0.00000000000000000000,1.00000000000000000000,-0.0019443663746064340,0.00113033219233001015,0.99999747089106971742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999837436535017,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +80 ,0 ,0.00706508084254285021,-0.0161790565189359816,0.00000000000000000000,1.00000000000000000000,-0.0027220165065118787,0.00111401018625538385,0.99999567479436768380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999722910542914,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +81 ,0 ,0.00908090722701116771,-0.0228236747346513765,0.00000000000000000000,1.00000000000000000000,-0.0034995702216166217,0.00109224807676278545,0.99999327997862186290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999571519401797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +82 ,0 ,0.01109467037324679550,-0.0311305693336752092,0.00000000000000000000,1.00000000000000000000,-0.0042769999738869650,0.00106504634838992741,0.99999028642657261656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999384386155725,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +83 ,0 ,0.01310592608231826022,-0.0411004881237069172,0.00000000000000000000,1.00000000000000000000,-0.0050542782185070272,0.00103240560681797902,0.99998669411665308537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999162914828048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +84 ,0 ,-0.0021701677651352838,-0.0362437476573020667,0.00000000000000000000,1.00000000000000000000,0.00504109091522312278,0.00026802780063152662,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999747245437902,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +85 ,0 ,-0.0018400903799371704,-0.0261663692330218050,0.00000000000000000000,1.00000000000000000000,0.00426584109089738362,0.00030061359139585278,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999814333150425,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +86 ,0 ,-0.0015081285665318371,-0.0177699200076863982,0.00000000000000000000,1.00000000000000000000,0.00349043995672192360,0.00032776952664430016,0.99999385467914014835,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999872817716095,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +87 ,0 ,-0.0011746132561055047,-0.0110536548544858739,0.00000000000000000000,1.00000000000000000000,0.00271491502154620712,0.00034949500111104432,0.99999625353781662617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999921292801445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +88 ,0 ,-0.0008398823954302222,-0.0060169776464253331,0.00000000000000000000,1.00000000000000000000,0.00193929379543939612,0.00036578953061679604,0.99999805266690089400,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999958633452479,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +89 ,0 ,-0.0005042793873899099,-0.0026594412529892205,0.00000000000000000000,1.00000000000000000000,0.00116360378941877712,0.00037665275202271964,0.99999925207918294312,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999983995912771,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +90 ,0 ,-0.0001681515320926823,-0.0009807475809615502,0.00000000000000000000,1.00000000000000000000,0.00038787251517899163,0.00038208442324539368,0.99999985178319161782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999996817750798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,0 ,0.00016815153209268231,-0.0009807475809615502,0.00000000000000000000,1.00000000000000000000,-0.0003878725151789916,0.00038208442324539368,0.99999985178319161782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999996817750798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +92 ,0 ,0.00050427938738990991,-0.0026594412529892205,0.00000000000000000000,1.00000000000000000000,-0.0011636037894187771,0.00037665275202271964,0.99999925207918294312,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999983995912771,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +93 ,0 ,0.00083988239542981206,-0.0060169776464253331,0.00000000000000000000,1.00000000000000000000,-0.0019392937954393974,0.00036578953061679604,0.99999805266690089400,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999958633452479,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +94 ,0 ,0.00117461325610550477,-0.0110536548544858739,0.00000000000000000000,1.00000000000000000000,-0.0027149150215462071,0.00034949500111104432,0.99999625353781662617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999921292801445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +95 ,0 ,0.00150812856653183714,-0.0177699200076863982,0.00000000000000000000,1.00000000000000000000,-0.0034904399567219236,0.00032776952664430016,0.99999385467914014835,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999872817716095,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +96 ,0 ,0.00184009037993719298,-0.0261663692330218050,0.00000000000000000000,1.00000000000000000000,-0.0042658410908973844,0.00030061359139585278,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999814333150425,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +97 ,0 ,0.00217016776513528387,-0.0362437476573020667,0.00000000000000000000,1.00000000000000000000,-0.0050410909152231227,0.00026802780063152662,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999747245437902,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +98 ,0 ,0.00867378894596583863,-0.0363149184144127001,0.00000000000000000000,1.00000000000000000000,0.00502788846174509300,-0.0004976253634616102,0.99998723627185037710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000296418329526,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +99 ,0 ,0.00733681129338948929,-0.0261302315220993917,0.00000000000000000000,1.00000000000000000000,0.00425466938951398615,-0.0004650944693405224,0.99999084069581356537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000208416240639,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +100 ,0 ,0.00600109507889677856,-0.0176443536524477084,0.00000000000000000000,1.00000000000000000000,0.00348129920473295171,-0.0004379842820900633,0.99999384434386162645,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000137663664645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +101 ,0 ,0.00466642263561978069,-0.0108565423691527902,0.00000000000000000000,1.00000000000000000000,0.00270780538037642673,-0.0004162954065354200,0.99999624723703628426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000082751903391,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +102 ,0 ,0.00333256928516520098,-0.0057662036849406095,0.00000000000000000000,1.00000000000000000000,0.00193421539063980520,-0.0004000283265173431,0.99999804939217762367,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042554092942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +103 ,0 ,0.00199930489600901430,-0.0023728920789259969,0.00000000000000000000,1.00000000000000000000,0.00116055671066785386,-0.0003891834049146128,0.99999925082191853942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000016225076251,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +104 ,0 ,0.00066639544158892500,-0.0006763105351176216,0.00000000000000000000,1.00000000000000000000,0.00038685681628350946,-0.0003837608836337441,0.99999985153468262666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000003201421350,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +105 ,0 ,-0.0006663954415889250,-0.0006763105351176216,0.00000000000000000000,1.00000000000000000000,-0.0003868568162835094,-0.0003837608836337441,0.99999985153468262666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000003201421350,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +106 ,0 ,-0.0019993048960090143,-0.0023728920789259969,0.00000000000000000000,1.00000000000000000000,-0.0011605567106678538,-0.0003891834049146128,0.99999925082191853942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000016225076251,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +107 ,0 ,-0.0033325692851654039,-0.0057662036849406095,0.00000000000000000000,1.00000000000000000000,-0.0019342153906398060,-0.0004000283265173431,0.99999804939217762367,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042554092942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +108 ,0 ,-0.0046664226356197806,-0.0108565423691527902,0.00000000000000000000,1.00000000000000000000,-0.0027078053803764267,-0.0004162954065354200,0.99999624723703628426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000082751903391,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +109 ,0 ,-0.0060010950788967785,-0.0176443536524477084,0.00000000000000000000,1.00000000000000000000,-0.0034812992047329517,-0.0004379842820900633,0.99999384434386162645,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000137663664645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +110 ,0 ,-0.0073368112933894702,-0.0261302315220993917,0.00000000000000000000,1.00000000000000000000,-0.0042546693895139870,-0.0004650944693405224,0.99999084069581356537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000208416240639,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +111 ,0 ,-0.0086737889459658386,-0.0363149184144127001,0.00000000000000000000,1.00000000000000000000,-0.0050278884617450930,-0.0004976253634616102,0.99998723627185037710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000296418329526,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +112 ,0 ,0.01942563877513757419,-0.0413384717463330594,0.00000000000000000000,1.00000000000000000000,0.00501467076412681796,-0.0012645610081007162,0.99998662689187178820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000886125435499,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +113 ,0 ,0.01643577637158456436,-0.0310466250533483548,0.00000000000000000000,1.00000000000000000000,0.00424348479024318648,-0.0012320849564629514,0.99999023735409264812,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000642321792838,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +114 ,0 ,0.01344655241715156726,-0.0224714424495627770,0.00000000000000000000,1.00000000000000000000,0.00347214790060917585,-0.0012050204720749234,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000441739066445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +115 ,0 ,0.01045786250927579000,-0.0156121841746222032,0.00000000000000000000,1.00000000000000000000,0.00270068753241511786,-0.0011833681593252140,0.99999565295387715657,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000282966029772,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +116 ,0 ,0.00746959523778303012,-0.0104682583751428102,0.00000000000000000000,1.00000000000000000000,0.00192913112407364106,-0.0011671285017129055,0.99999745812885254547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000164873963512,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +117 ,0 ,0.00448163374228885153,-0.0070392211369284486,0.00000000000000000000,1.00000000000000000000,0.00115750611494795023,-0.0011563018618554463,0.99999866157190309134,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000086616237240,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +118 ,0 ,0.00149385726951012181,-0.0053247765085518731,0.00000000000000000000,1.00000000000000000000,0.00038583994508018844,-0.0011508884814915984,0.99999926329134836144,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000047628454922,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +119 ,0 ,-0.0014938572695101218,-0.0053247765085518731,0.00000000000000000000,1.00000000000000000000,-0.0003858399450801884,-0.0011508884814915984,0.99999926329134836144,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000047628454922,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +120 ,0 ,-0.0044816337422888515,-0.0070392211369284486,0.00000000000000000000,1.00000000000000000000,-0.0011575061149479502,-0.0011563018618554463,0.99999866157190309134,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000086616237240,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +121 ,0 ,-0.0074695952377830223,-0.0104682583751428102,0.00000000000000000000,1.00000000000000000000,-0.0019291311240736414,-0.0011671285017129055,0.99999745812885254547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000164873963512,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +122 ,0 ,-0.0104578625092757900,-0.0156121841746222032,0.00000000000000000000,1.00000000000000000000,-0.0027006875324151178,-0.0011833681593252140,0.99999565295387715657,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000282966029772,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +123 ,0 ,-0.0134465524171515672,-0.0224714424495627770,0.00000000000000000000,1.00000000000000000000,-0.0034721479006091758,-0.0012050204720749234,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000441739066445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +124 ,0 ,-0.0164357763715854247,-0.0310466250533483548,0.00000000000000000000,1.00000000000000000000,-0.0042434847902431882,-0.0012320849564629514,0.99999023735409264812,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000642321792838,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +125 ,0 ,-0.0194256387751375741,-0.0413384717463330594,0.00000000000000000000,1.00000000000000000000,-0.0050146707641268179,-0.0012645610081007162,0.99998662689187178820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000886125435499,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +126 ,0 ,0.03008507290358788249,-0.0513391581338997690,0.00000000000000000000,1.00000000000000000000,0.00500143772818010135,-0.0020327862875208677,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001592937824170,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +127 ,0 ,0.02545654358182089863,-0.0409402977951373800,0.00000000000000000000,1.00000000000000000000,0.00423228721338655185,-0.0020003650242100437,0.99998904308232949844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001192615454783,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +128 ,0 ,0.02082802970359465613,-0.0322759322780291277,0.00000000000000000000,1.00000000000000000000,0.00346298597914238134,-0.0019733461975443822,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000861604821693,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +129 ,0 ,0.01619954013400299805,-0.0253453244778393885,0.00000000000000000000,1.00000000000000000000,0.00269356142694453497,-0.0019517304114879381,0.99999446772231692648,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000598492424614,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +130 ,0 ,0.01157107673412261818,-0.0201478846692347939,0.00000000000000000000,1.00000000000000000000,0.00192404095951379146,-0.0019355181491995687,0.99999627591100559431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000402147470595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +131 ,0 ,0.00694263591767913922,-0.0166831705412857946,0.00000000000000000000,1.00000000000000000000,0.00115445198052272694,-0.0019247097730319103,0.99999748136328514558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000271721946774,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +132 ,0 ,0.00231421020761353414,-0.0149508872007979055,0.00000000000000000000,1.00000000000000000000,0.00038482189432357703,-0.0019193055245568452,0.99999808408737089759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000206650529435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +133 ,0 ,-0.0023142102076135341,-0.0149508872007979055,0.00000000000000000000,1.00000000000000000000,-0.0003848218943235770,-0.0019193055245568452,0.99999808408737089759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000206650529435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +134 ,0 ,-0.0069426359176791392,-0.0166831705412857946,0.00000000000000000000,1.00000000000000000000,-0.0011544519805227269,-0.0019247097730319103,0.99999748136328514558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000271721946774,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +135 ,0 ,-0.0115710767341221740,-0.0201478846692347939,0.00000000000000000000,1.00000000000000000000,-0.0019240409595137914,-0.0019355181491995687,0.99999627591100559431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000402147470595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +136 ,0 ,-0.0161995401340029980,-0.0253453244778393885,0.00000000000000000000,1.00000000000000000000,-0.0026935614269445349,-0.0019517304114879381,0.99999446772231692648,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000598492424614,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +137 ,0 ,-0.0208280297035946561,-0.0322759322780291277,0.00000000000000000000,1.00000000000000000000,-0.0034629859791423813,-0.0019733461975443822,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000861604821693,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +138 ,0 ,-0.0254565435818208882,-0.0409402977951373800,0.00000000000000000000,1.00000000000000000000,-0.0042322872133865527,-0.0020003650242100437,0.99998904308232949844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001192615454783,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +139 ,0 ,-0.0300850729035878824,-0.0513391581338997690,0.00000000000000000000,1.00000000000000000000,-0.0050014377281801013,-0.0020327862875208677,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001592937824170,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +140 ,0 ,0.04065177894480398457,-0.0663420097339615794,0.00000000000000000000,1.00000000000000000000,0.00498818925947426029,-0.0028023083877204780,0.99998363238385623574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002494318177923,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +141 ,0 ,0.03439884863242140267,-0.0558362793822584219,0.00000000000000000000,1.00000000000000000000,0.00422107657904061996,-0.0027699418585719168,0.99998725488608786182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001936754124471,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +142 ,0 ,0.02814531072382245313,-0.0470828506634946575,0.00000000000000000000,1.00000000000000000000,0.00345381337495648645,-0.0027429686444921759,0.99999027360079162374,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001474713208153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +143 ,0 ,0.02189128735806861528,-0.0400809891224744446,0.00000000000000000000,1.00000000000000000000,0.00268642701311632607,-0.0027213893490169085,0.99999268854822831453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001106779491237,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +144 ,0 ,0.01563689367383414713,-0.0348301071534400374,0.00000000000000000000,1.00000000000000000000,0.00191894486063988456,-0.0027052044549649048,0.99999449974461274148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000831820252642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +145 ,0 ,0.00938223936520081458,-0.0313297640336747534,0.00000000000000000000,1.00000000000000000000,0.00115139428559989901,-0.0026944143244313988,0.99999570720210939622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000648986006126,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +146 ,0 ,0.00312743023744256696,-0.0295796659325841850,0.00000000000000000000,1.00000000000000000000,0.00038380265674957034,-0.0026890191988158799,0.99999631092882967919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000557710482098,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +147 ,0 ,-0.0031274302374425669,-0.0295796659325841850,0.00000000000000000000,1.00000000000000000000,-0.0003838026567495703,-0.0026890191988158799,0.99999631092882967919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000557710482098,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +148 ,0 ,-0.0093822393652008145,-0.0313297640336747534,0.00000000000000000000,1.00000000000000000000,-0.0011513942855998990,-0.0026944143244313988,0.99999570720210939622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000648986006126,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +149 ,0 ,-0.0156368936738339250,-0.0348301071534400374,0.00000000000000000000,1.00000000000000000000,-0.0019189448606398847,-0.0027052044549649048,0.99999449974461274148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000831820252642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +150 ,0 ,-0.0218912873580686152,-0.0400809891224744446,0.00000000000000000000,1.00000000000000000000,-0.0026864270131163260,-0.0027213893490169085,0.99999268854822831453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001106779491237,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +151 ,0 ,-0.0281453107238224531,-0.0470828506634946575,0.00000000000000000000,1.00000000000000000000,-0.0034538133749564864,-0.0027429686444921759,0.99999027360079162374,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001474713208153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +152 ,0 ,-0.0343988486324213957,-0.0558362793822584219,0.00000000000000000000,1.00000000000000000000,-0.0042210765790406208,-0.0027699418585719168,0.99998725488608786182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001936754124471,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +153 ,0 ,-0.0406517789448039845,-0.0663420097339615794,0.00000000000000000000,1.00000000000000000000,-0.0049881892594742602,-0.0028023083877204780,0.99998363238385623574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002494318177923,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +154 ,0 ,0.05112544091953231950,-0.0863723429352390992,0.00000000000000000000,1.00000000000000000000,0.00497492526333551295,-0.0035731345266406398,0.99998124123819365216,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003668633034976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +155 ,0 ,0.04326242419188671556,-0.0757598836707088080,0.00000000000000000000,1.00000000000000000000,0.00420985280709623276,-0.0035408226774800571,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002953098664875,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +156 ,0 ,0.03539817677627560971,-0.0669175093475321142,0.00000000000000000000,1.00000000000000000000,0.00344463002250721588,-0.0035138950308438200,0.99998789345957583840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002359420250286,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +157 ,0 ,0.02753293409537677788,-0.0598444881553492416,0.00000000000000000000,1.00000000000000000000,0.00267928423995130067,-0.0034923521898375855,0.99999031240914693086,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001886179452412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +158 ,0 ,0.01966692457493831799,-0.0545402346041753763,0.00000000000000000000,1.00000000000000000000,0.00191384279103807381,-0.0034761946369316438,0.99999212660731340296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001532241585664,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +159 ,0 ,0.01180037119889326691,-0.0510043095478574931,0.00000000000000000000,1.00000000000000000000,0.00114833300833110866,-0.0034654227339725842,0.99999333606608420410,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001296755726798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +160 ,0 ,0.00393349306421846532,-0.0492364202131529635,0.00000000000000000000,1.00000000000000000000,0.00038278222507536911,-0.0034600367221895344,0.99999394079346737296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001179154623969,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +161 ,0 ,-0.0039334930642184653,-0.0492364202131529635,0.00000000000000000000,1.00000000000000000000,-0.0003827822250753691,-0.0034600367221895344,0.99999394079346737296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001179154623969,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +162 ,0 ,-0.0118003711988932669,-0.0510043095478574931,0.00000000000000000000,1.00000000000000000000,-0.0011483330083311086,-0.0034654227339725842,0.99999333606608420410,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001296755726798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +163 ,0 ,-0.0196669245749383179,-0.0545402346041753763,0.00000000000000000000,1.00000000000000000000,-0.0019138427910380742,-0.0034761946369316438,0.99999212660731340296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001532241585664,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +164 ,0 ,-0.0275329340953767778,-0.0598444881553492416,0.00000000000000000000,1.00000000000000000000,-0.0026792842399513006,-0.0034923521898375855,0.99999031240914693086,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001886179452412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +165 ,0 ,-0.0353981767762756097,-0.0669175093475321142,0.00000000000000000000,1.00000000000000000000,-0.0034446300225072158,-0.0035138950308438200,0.99998789345957583840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002359420250286,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +166 ,0 ,-0.0432624241918849392,-0.0757598836707088080,0.00000000000000000000,1.00000000000000000000,-0.0042098528070962318,-0.0035408226774800571,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002953098664875,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +167 ,0 ,-0.0511254409195323195,-0.0863723429352390992,0.00000000000000000000,1.00000000000000000000,-0.0049749252633355129,-0.0035731345266406398,0.99998124123819365216,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003668633034976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +168 ,0 ,0.06150573923039394375,-0.1114557609702490625,0.00000000000000000000,1.00000000000000000000,0.00496164564484673394,-0.0043452719543268765,0.99997825010553986757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005195165576878,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +169 ,0 ,0.05204699986745520146,-0.1007367113297423927,0.00000000000000000000,1.00000000000000000000,0.00419861581723808639,-0.0043130147309842232,0.99998188460049075576,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004320926345826,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +170 ,0 ,0.04258640665483895415,-0.0918055068772783561,0.00000000000000000000,1.00000000000000000000,0.00343543585608166533,-0.0042861326066395075,0.99998491331007421933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003594998306652,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +171 ,0 ,0.03312430831183234281,-0.0846614184270701730,0.00000000000000000000,1.00000000000000000000,0.00267213305633923290,-0.0042646261839776279,0.99998733625403468661,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003015960719494,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +172 ,0 ,0.02366104656408118261,-0.0793038625894410958,0.00000000000000000000,1.00000000000000000000,0.00190873471420086081,-0.0042484959451296877,0.99998915344817351780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002582676970632,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +173 ,0 ,0.01419695769799116796,-0.0757324018003851517,0.00000000000000000000,1.00000000000000000000,0.00114526812681179355,-0.0042377422516848249,0.99999036490434511925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002294294699822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +174 ,0 ,0.00473237411488996746,-0.0739467443366051968,0.00000000000000000000,1.00000000000000000000,0.00038176059199945057,-0.0042323653447003794,0.99999097063045472300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002150245618395,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +175 ,0 ,-0.0047323741148899674,-0.0739467443366051968,0.00000000000000000000,1.00000000000000000000,-0.0003817605919994505,-0.0042323653447003794,0.99999097063045472300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002150245618395,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +176 ,0 ,-0.0141969576979911679,-0.0757324018003851517,0.00000000000000000000,1.00000000000000000000,-0.0011452681268117935,-0.0042377422516848249,0.99999036490434511925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002294294699822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +177 ,0 ,-0.0236610465640816267,-0.0793038625894410958,0.00000000000000000000,1.00000000000000000000,-0.0019087347142008616,-0.0042484959451296877,0.99998915344817351780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002582676970632,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +178 ,0 ,-0.0331243083118323428,-0.0846614184270701730,0.00000000000000000000,1.00000000000000000000,-0.0026721330563392329,-0.0042646261839776279,0.99998733625403468661,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003015960719494,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +179 ,0 ,-0.0425864066548389541,-0.0918055068772783561,0.00000000000000000000,1.00000000000000000000,-0.0034354358560816653,-0.0042861326066395075,0.99998491331007421933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003594998306652,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +180 ,0 ,-0.0520469998674552014,-0.1007367113297423927,0.00000000000000000000,1.00000000000000000000,-0.0041986158172380872,-0.0043130147309842232,0.99998188460049075576,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004320926345826,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +181 ,0 ,-0.0615057392303939437,-0.1114557609702490625,0.00000000000000000000,1.00000000000000000000,-0.0049616456448467339,-0.0043452719543268765,0.99997825010553986757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005195165576878,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +182 ,0 ,0.07179235063644029413,-0.1416181565235676287,0.00000000000000000000,1.00000000000000000000,0.00494835030884669888,-0.0051187279531195563,0.99997465590551981584,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007154128179536,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +183 ,0 ,0.06075230218331690440,-0.1307926524850087646,0.00000000000000000000,1.00000000000000000000,0.00418736552894469465,-0.0050865253014043838,0.99997829637961888060,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006120443504187,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +184 ,0 ,0.04970977663104799576,-0.1217727312345871781,0.00000000000000000000,1.00000000000000000000,0.00342623080979814233,-0.0050596886541950389,0.99998133007229705881,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005261648766463,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +185 ,0 ,0.03866523601166032414,-0.1145576662006838192,0.00000000000000000000,1.00000000000000000000,0.00266497341103845387,-0.0050382186137551106,0.99998375700304165114,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004576320716296,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +186 ,0 ,0.02761913536669712357,-0.1091468760944830085,0.00000000000000000000,1.00000000000000000000,0.00190362059352693893,-0.0050221156618697887,0.99998557718744840450,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004063320848217,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +187 ,0 ,0.01657192430101386490,-0.1055399249195162203,0.00000000000000000000,1.00000000000000000000,0.00114219961908111362,-0.0050113801598748834,0.99998679063721784832,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003721795292221,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +188 ,0 ,0.00552404853617350418,-0.1037365220024588641,0.00000000000000000000,1.00000000000000000000,0.00038073775020152082,-0.0050060123486569485,0.99998739736015196388,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003551174831954,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +189 ,0 ,-0.0055240485361735041,-0.1037365220024588641,0.00000000000000000000,1.00000000000000000000,-0.0003807377502015208,-0.0050060123486569485,0.99998739736015196388,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003551174831954,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +190 ,0 ,-0.0165719243010138649,-0.1055399249195162203,0.00000000000000000000,1.00000000000000000000,-0.0011421996190811136,-0.0050113801598748834,0.99998679063721784832,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003721795292221,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +191 ,0 ,-0.0276191353666966794,-0.1091468760944830085,0.00000000000000000000,1.00000000000000000000,-0.0019036205935269389,-0.0050221156618697887,0.99998557718744840450,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004063320848217,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +192 ,0 ,-0.0386652360116603241,-0.1145576662006838192,0.00000000000000000000,1.00000000000000000000,-0.0026649734110384538,-0.0050382186137551106,0.99998375700304165114,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004576320716296,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +193 ,0 ,-0.0497097766310479957,-0.1217727312345871781,0.00000000000000000000,1.00000000000000000000,-0.0034262308097981423,-0.0050596886541950389,0.99998133007229705881,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005261648766463,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +194 ,0 ,-0.0607523021833160162,-0.1307926524850087646,0.00000000000000000000,1.00000000000000000000,-0.0041873655289446946,-0.0050865253014043838,0.99997829637961888060,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006120443504187,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +195 ,0 ,-0.0717923506364402941,-0.1416181565235676287,0.00000000000000000000,1.00000000000000000000,-0.0049483503088466988,-0.0051187279531195563,0.99997465590551981584,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007154128179536,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +196 ,0 ,-0.0691513020354815460,-0.1384655869166047381,0.00000000000000000000,1.00000000000000000000,0.00511999075325057263,0.00483541137152350766,0.99997520193830535806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993124718785111,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +197 ,0 ,-0.0585239127486374202,-0.1290353201369802971,0.00000000000000000000,1.00000000000000000000,0.00433260488091832558,0.00486832767963134727,0.99997876373478533640,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994107698967127,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +198 ,0 ,-0.0478909000881478155,-0.1211781605236761233,0.00000000000000000000,1.00000000000000000000,0.00354506650441356466,0.00489575905078617167,0.99998173185653516092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994929401091212,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +199 ,0 ,-0.0372532747502124089,-0.1148933466396456354,0.00000000000000000000,1.00000000000000000000,0.00275740334975018265,0.00491770487711727915,0.99998410632644962880,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995588433175726,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RayCore/tests/output/toroid_swapped.rayui.csv b/Intern/RayCore/tests/output/toroid_swapped.rayui.csv new file mode 100644 index 000000000..2c8afaf18 --- /dev/null +++ b/Intern/RayCore/tests/output/toroid_swapped.rayui.csv @@ -0,0 +1,169 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.0577609925286904010,-0.1093267650906570020,0.00000000000000000000,-1.0000000000000000000,0.00510687780018120006,0.00407730460910770992,0.99997864746516396117,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005009720247244330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +1 ,0 ,-0.0488847118053232984,-0.0997882458956960011,0.00000000000000000000,-1.0000000000000000000,0.00432150890463304029,0.00411016569554754039,0.99998221539122500445,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004177670966782899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +2 ,0 ,-0.0400034310725038977,-0.0918408709061324934,0.00000000000000000000,-1.0000000000000000000,0.00353598770522071991,0.00413755104784627007,0.99998518862144902819,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003481740195638849,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +3 ,0 ,-0.0311180476951338005,-0.0854838814252695949,0.00000000000000000000,-1.0000000000000000000,0.00275034189153588017,0.00415946005856430035,0.99998756717846304375,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002923322431342970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +4 ,0 ,-0.0222294660750379999,-0.0807166704695631981,0.00000000000000000000,-1.0000000000000000000,0.00196459915438245997,0.00417589224178066976,0.99998935108037401153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002503533096387399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +5 ,0 ,-0.0133385960867904006,-0.0775387827674141050,0.00000000000000000000,-1.0000000000000000000,0.00117878718550683009,0.00418684723305162969,0.99999054034076595431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002223208807663470,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +6 ,0 ,-0.0044463515140700203,-0.0759499147982660993,0.00000000000000000000,-1.0000000000000000000,0.00039293367732863099,0.00419232478942483006,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002082907230942510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +7 ,0 ,0.00444635151407002035,-0.0759499147982660993,0.00000000000000000000,-1.0000000000000000000,-0.0003929336773286309,0.00419232478942483006,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002082907230942510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +8 ,0 ,0.01333859608679040069,-0.0775387827674141050,0.00000000000000000000,-1.0000000000000000000,-0.0011787871855068300,0.00418684723305162969,0.99999054034076595431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002223208807663470,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +9 ,0 ,0.02222946607503839891,-0.0807166704695631981,0.00000000000000000000,-1.0000000000000000000,-0.0019645991543824599,0.00417589224178066976,0.99998935108037401153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002503533096387399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +10 ,0 ,0.03111804769513380058,-0.0854838814252695949,0.00000000000000000000,-1.0000000000000000000,-0.0027503418915358801,0.00415946005856430035,0.99998756717846304375,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002923322431342970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +11 ,0 ,0.04000343107250389773,-0.0918408709061324934,0.00000000000000000000,-1.0000000000000000000,-0.0035359877052207199,0.00413755104784627007,0.99998518862144902819,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003481740195638849,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +12 ,0 ,0.04888471180532329846,-0.0997882458956960011,0.00000000000000000000,-1.0000000000000000000,-0.0043215089046330402,0.00411016569554754039,0.99998221539122500445,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004177670966782899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +13 ,0 ,0.05776099252869040107,-0.1093267650906570020,0.00000000000000000000,-1.0000000000000000000,-0.0051068778001812000,0.00407730460910770992,0.99997864746516396117,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005009720247244330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +14 ,0 ,-0.0464610105416242979,-0.0849975978430772965,0.00000000000000000000,-1.0000000000000000000,0.00509375016303548026,0.00331795763403813998,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003545005472460619,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +15 ,0 ,-0.0393219420521547027,-0.0753509896778355031,0.00000000000000000000,-1.0000000000000000000,0.00431040050436462974,0.00335076355300085006,0.99998509630449194940,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002864567493361390,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +16 ,0 ,-0.0321784968116300973,-0.0673135355299713938,0.00000000000000000000,-1.0000000000000000000,0.00352689874163562020,0.00337810293159821004,0.99998807463181804688,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002294975150789469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +17 ,0 ,-0.0250314588727910992,-0.0608844794425590987,0.00000000000000000000,-1.0000000000000000000,0.00274327252810932986,0.00339997516283250004,0.99999045726683200019,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001837625285361359,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +18 ,0 ,-0.0178816193207143002,-0.0560632166163559028,0.00000000000000000000,-1.0000000000000000000,0.00195954951826028981,0.00341637976112851978,0.99999224422743104856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001493635206770699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +19 ,0 ,-0.0107297747097802997,-0.0528492934225174987,0.00000000000000000000,-1.0000000000000000000,0.00117575736750669991,0.00342731636230744979,0.99999343552703701121,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001263842979142280,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +20 ,0 ,-0.0035767255009469000,-0.0512424074334947021,0.00000000000000000000,-1.0000000000000000000,0.00039192373194079700,0.00343278472359046004,0.99999403117460095025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001148807194795149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +21 ,0 ,0.00357672550094690006,-0.0512424074334947021,0.00000000000000000000,-1.0000000000000000000,-0.0003919237319407970,0.00343278472359046004,0.99999403117460095025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001148807194795149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +22 ,0 ,0.01072977470978029972,-0.0528492934225174987,0.00000000000000000000,-1.0000000000000000000,-0.0011757573675066999,0.00342731636230744979,0.99999343552703701121,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001263842979142280,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +23 ,0 ,0.01788161932071469922,-0.0560632166163559028,0.00000000000000000000,-1.0000000000000000000,-0.0019595495182602898,0.00341637976112851978,0.99999224422743104856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001493635206770699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +24 ,0 ,0.02503145887279109929,-0.0608844794425590987,0.00000000000000000000,-1.0000000000000000000,-0.0027432725281093298,0.00339997516283250004,0.99999045726683200019,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001837625285361359,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +25 ,0 ,0.03217849681163009734,-0.0673135355299713938,0.00000000000000000000,-1.0000000000000000000,-0.0035268987416356202,0.00337810293159821004,0.99998807463181804688,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002294975150789469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +26 ,0 ,0.03932194205215380072,-0.0753509896778355031,0.00000000000000000000,-1.0000000000000000000,-0.0043104005043646401,0.00335076355300085006,0.99998509630449194940,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002864567493361390,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +27 ,0 ,0.04646101054162429799,-0.0849975978430772965,0.00000000000000000000,-1.0000000000000000000,-0.0050937501630354802,0.00331795763403813998,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003545005472460619,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +28 ,0 ,-0.0352516439989943031,-0.0655011979605548966,0.00000000000000000000,-1.0000000000000000000,0.00508060774906991027,0.00255736347909710009,0.99998382352762904545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002409662868103620,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +29 ,0 ,-0.0298358470831549989,-0.0557466618369688998,0.00000000000000000000,-1.0000000000000000000,0.00429927960163709998,0.00259011428476171997,0.99998740367211602642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001881521592395069,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +30 ,0 ,-0.0244162965861974001,-0.0476192627268762977,0.00000000000000000000,-1.0000000000000000000,0.00351779954945020002,0.00261740773480795014,0.99999038708533605213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001438838844478600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +31 ,0 ,-0.0189936632645885984,-0.0411182474018447971,0.00000000000000000000,-1.0000000000000000000,0.00273619520953058978,0.00263924322267979983,0.99999277378938400406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001083013777360970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +32 ,0 ,-0.0135686249026815992,-0.0362430132398103982,0.00000000000000000000,-1.0000000000000000000,0.00195449420011470018,0.00265562026314864006,0.99999456380194395865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000815165665244421,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +33 ,0 ,-0.0081418647507447393,-0.0329931082469517023,0.00000000000000000000,-1.0000000000000000000,0.00117272414038376991,0.00266653849229652991,0.99999575713627897322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000636133914895253,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +34 ,0 ,-0.0027140699631844102,-0.0313682310867159988,0.00000000000000000000,-1.0000000000000000000,0.00039091265019390797,0.00267199766752120992,0.99999635380123497174,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000546478172509523,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +35 ,0 ,0.00271406996318441021,-0.0313682310867159988,0.00000000000000000000,-1.0000000000000000000,-0.0003909126501939079,0.00267199766752120992,0.99999635380123497174,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000546478172509523,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +36 ,0 ,0.00814186475074473933,-0.0329931082469517023,0.00000000000000000000,-1.0000000000000000000,-0.0011727241403837699,0.00266653849229652991,0.99999575713627897322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000636133914895253,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +37 ,0 ,0.01356862490268180045,-0.0362430132398103982,0.00000000000000000000,-1.0000000000000000000,-0.0019544942001147001,0.00265562026314864006,0.99999456380194395865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000815165665244421,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +38 ,0 ,0.01899366326458859846,-0.0411182474018447971,0.00000000000000000000,-1.0000000000000000000,-0.0027361952095305897,0.00263924322267979983,0.99999277378938400406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001083013777360970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +39 ,0 ,0.02441629658619740017,-0.0476192627268762977,0.00000000000000000000,-1.0000000000000000000,-0.0035177995494502000,0.00261740773480795014,0.99999038708533605213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001438838844478600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +40 ,0 ,0.02983584708315410033,-0.0557466618369688998,0.00000000000000000000,-1.0000000000000000000,-0.0042992796016370999,0.00259011428476171997,0.99998740367211602642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001881521592395069,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +41 ,0 ,0.03525164399899430311,-0.0655011979605548966,0.00000000000000000000,-1.0000000000000000000,-0.0050806077490699102,0.00255736347909710009,0.99998382352762904545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002409662868103620,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +42 ,0 ,-0.0241331842480994006,-0.0508609450882622007,0.00000000000000000000,-1.0000000000000000000,0.00506745046530147034,0.00179551514632003998,0.99998554843114695334,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001531398100951259,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +43 ,0 ,-0.0204266733882399013,-0.0409986395723440991,0.00000000000000000000,-1.0000000000000000000,0.00428814611777175985,0.00182821089285268006,0.99998913466487404644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001156244004505420,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +44 ,0 ,-0.0167170320461402996,-0.0327814276622308969,0.00000000000000000000,-1.0000000000000000000,0.00350869006429054995,0.00185545845949438995,0.99999212315294605524,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000841046196455863,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +45 ,0 ,-0.0130048176946449007,-0.0262085588385216998,0.00000000000000000000,-1.0000000000000000000,0.00272910988573079986,0.00187725724011881004,0.99999451391719396120,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000587206258160222,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +46 ,0 ,-0.0092905948302861602,-0.0212794326542181007,0.00000000000000000000,-1.0000000000000000000,0.00194943316418206007,0.00189360674984840010,0.99999630697508801180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000395845274852036,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +47 ,0 ,-0.0055749334121419896,-0.0179935987412232004,0.00000000000000000000,-1.0000000000000000000,0.00116968748267979997,0.00190450662502467007,0.99999750233973494495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000267804209670430,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +48 ,0 ,-0.0018584073010747799,-0.0163507568490892998,0.00000000000000000000,-1.0000000000000000000,0.00038990042493520300,0.00190995662321969002,0.99999810001987299301,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000203643520535479,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +49 ,0 ,0.00185840730107477997,-0.0163507568490892998,0.00000000000000000000,-1.0000000000000000000,-0.0003899004249352030,0.00190995662321969002,0.99999810001987299301,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000203643520535479,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +50 ,0 ,0.00557493341214198960,-0.0179935987412232004,0.00000000000000000000,-1.0000000000000000000,-0.0011696874826797999,0.00190450662502467007,0.99999750233973494495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000267804209670430,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +51 ,0 ,0.00929059483028616024,-0.0212794326542181007,0.00000000000000000000,-1.0000000000000000000,-0.0019494331641820600,0.00189360674984840010,0.99999630697508801180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000395845274852036,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +52 ,0 ,0.01300481769464490074,-0.0262085588385216998,0.00000000000000000000,-1.0000000000000000000,-0.0027291098857307998,0.00187725724011881004,0.99999451391719396120,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000587206258160222,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +53 ,0 ,0.01671703204614029963,-0.0327814276622308969,0.00000000000000000000,-1.0000000000000000000,-0.0035086900642905499,0.00185545845949438995,0.99999212315294605524,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000841046196455863,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +54 ,0 ,0.02042667338823990139,-0.0409986395723440991,0.00000000000000000000,-1.0000000000000000000,-0.0042881461177717598,0.00182821089285268006,0.99998913466487404644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001156244004505420,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +55 ,0 ,0.02413318424809940063,-0.0508609450882622007,0.00000000000000000000,-1.0000000000000000000,-0.0050674504653014703,0.00179551514632003998,0.99998554843114695334,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001531398100951259,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +56 ,0 ,-0.0131059260823142998,-0.0411004881235816979,0.00000000000000000000,-1.0000000000000000000,0.00505427821850702990,0.00103240560681800005,0.99998669411665297435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000837085160583228,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +57 ,0 ,-0.0110946703732456991,-0.0311305693342600990,0.00000000000000000000,-1.0000000000000000000,0.00427699997388695987,0.00106504634838954989,0.99999028642657294962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000615613813579330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +58 ,0 ,-0.0090809072270157092,-0.0228236747346212999,0.00000000000000000000,-1.0000000000000000000,0.00349957022161663001,0.00109224807676316991,0.99999327997862197392,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000428480609571124,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +59 ,0 ,-0.0070650808425507501,-0.0161790565194964014,0.00000000000000000000,-1.0000000000000000000,0.00272201650651188002,0.00111401018625559007,0.99999567479436801686,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000277089477549453,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +60 ,0 ,-0.0050476424381729100,-0.0111961163957836999,0.00000000000000000000,-1.0000000000000000000,0.00194436637460642996,0.00113033219232972002,0.99999747089107005049,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000162563454750852,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +61 ,0 ,-0.0030290486915984802,-0.0078744056239890003,0.00000000000000000000,-1.0000000000000000000,0.00116664737288116999,0.00114121373159283999,0.99999866828167605081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000085744870830239,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +62 ,0 ,-0.0010097601799682900,-0.0062136250328894701,0.00000000000000000000,-1.0000000000000000000,0.00038888704899347098,0.00114665456178814008,0.99999926697482099946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000047195218257911,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +63 ,0 ,0.00100976017996829000,-0.0062136250328894701,0.00000000000000000000,-1.0000000000000000000,-0.0003888870489934709,0.00114665456178814008,0.99999926697482099946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000047195218257911,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +64 ,0 ,0.00302904869159848020,-0.0078744056239890003,0.00000000000000000000,-1.0000000000000000000,-0.0011666473728811699,0.00114121373159283999,0.99999866828167605081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000085744870830239,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +65 ,0 ,0.00504764243817202012,-0.0111961163957836999,0.00000000000000000000,-1.0000000000000000000,-0.0019443663746064299,0.00113033219232972002,0.99999747089107005049,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000162563454750852,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +66 ,0 ,0.00706508084255075014,-0.0161790565194964014,0.00000000000000000000,-1.0000000000000000000,-0.0027220165065118800,0.00111401018625559007,0.99999567479436801686,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000277089477549453,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +67 ,0 ,0.00908090722701570922,-0.0228236747346212999,0.00000000000000000000,-1.0000000000000000000,-0.0034995702216166300,0.00109224807676316991,0.99999327997862197392,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000428480609571124,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +68 ,0 ,0.01109467037324569915,-0.0311305693342600990,0.00000000000000000000,-1.0000000000000000000,-0.0042769999738869598,0.00106504634838954989,0.99999028642657294962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000615613813579330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +69 ,0 ,0.01310592608231429985,-0.0411004881235816979,0.00000000000000000000,-1.0000000000000000000,-0.0050542782185070299,0.00103240560681800005,0.99998669411665297435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000837085160583228,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +70 ,0 ,-0.0021701677651400101,-0.0362437476570783012,0.00000000000000000000,-1.0000000000000000000,0.00504109091522312018,0.00026802780063103797,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000252754572329649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +71 ,0 ,-0.0018400903799431500,-0.0261663692328015992,0.00000000000000000000,-1.0000000000000000000,0.00426584109089738015,0.00030061359139585397,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000185666882543955,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +72 ,0 ,-0.0015081285665319299,-0.0177699200075248989,0.00000000000000000000,-1.0000000000000000000,0.00349043995672192013,0.00032776952664412300,0.99999385467914003733,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000127182294136218,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +73 ,0 ,-0.0011746132561110099,-0.0110536548548784991,0.00000000000000000000,-1.0000000000000000000,0.00271491502154621016,0.00034949500111161602,0.99999625353781695924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000078707186048632,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +74 ,0 ,-0.0008398823954327560,-0.0060169776463137600,0.00000000000000000000,-1.0000000000000000000,0.00193929379543940003,0.00036578953061691698,0.99999805266690100502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000041366560026290,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +75 ,0 ,-0.0005042793873859530,-0.0026594412515151800,0.00000000000000000000,-1.0000000000000000000,0.00116360378941876996,0.00037665275202092301,0.99999925207918305414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000016004094050003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +76 ,0 ,-0.0001681515320923749,-0.0009807475807314110,0.00000000000000000000,-1.0000000000000000000,0.00038787251517899098,0.00038208442324511000,0.99999985178319195089,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000003182238970111,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +77 ,0 ,0.00016815153209237499,-0.0009807475807314110,0.00000000000000000000,-1.0000000000000000000,-0.0003878725151789909,0.00038208442324511000,0.99999985178319195089,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000003182238970111,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +78 ,0 ,0.00050427938738595301,-0.0026594412515151800,0.00000000000000000000,-1.0000000000000000000,-0.0011636037894187699,0.00037665275202092301,0.99999925207918305414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000016004094050003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +79 ,0 ,0.00083988239543231202,-0.0060169776463137600,0.00000000000000000000,-1.0000000000000000000,-0.0019392937954394000,0.00036578953061691698,0.99999805266690100502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000041366560026290,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +80 ,0 ,0.00117461325611100991,-0.0110536548548784991,0.00000000000000000000,-1.0000000000000000000,-0.0027149150215462101,0.00034949500111161602,0.99999625353781695924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000078707186048632,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +81 ,0 ,0.00150812856653192994,-0.0177699200075248989,0.00000000000000000000,-1.0000000000000000000,-0.0034904399567219201,0.00032776952664412300,0.99999385467914003733,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000127182294136218,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +82 ,0 ,0.00184009037994315003,-0.0261663692328015992,0.00000000000000000000,-1.0000000000000000000,-0.0042658410908973801,0.00030061359139585397,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000185666882543955,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +83 ,0 ,0.00217016776514001013,-0.0362437476570783012,0.00000000000000000000,-1.0000000000000000000,-0.0050410909152231201,0.00026802780063103797,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000252754572329649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +84 ,0 ,0.00867378894596803999,-0.0363149184143784012,0.00000000000000000000,-1.0000000000000000000,0.00502788846174509040,-0.0004976253634616509,0.99998723627185004403,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002964183101994419,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +85 ,0 ,0.00733681129338403965,-0.0261302315219580985,0.00000000000000000000,-1.0000000000000000000,0.00425466938951398008,-0.0004650944693407880,0.99999084069581400946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002084162156279489,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +86 ,0 ,0.00600109507887492017,-0.0176443536542283015,0.00000000000000000000,-1.0000000000000000000,0.00348129920473297990,-0.0004379842820879940,0.99999384434386195952,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001376636487293579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +87 ,0 ,0.00466642263560945996,-0.0108565423700690000,0.00000000000000000000,-1.0000000000000000000,0.00270780538037644017,-0.0004162954065340119,0.99999624723703695039,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000827518999813037,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +88 ,0 ,0.00333256928516200996,-0.0057662036846696795,0.00000000000000000000,-1.0000000000000000000,0.00193421539063980997,-0.0004000283265169489,0.99999804939217795674,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000425540827109215,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +89 ,0 ,0.00199930489600830003,-0.0023728920789584701,0.00000000000000000000,-1.0000000000000000000,0.00116055671066785993,-0.0003891834049142560,0.99999925082191898351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000162250796620356,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +90 ,0 ,0.00066639544158880704,-0.0006763105347092900,0.00000000000000000000,-1.0000000000000000000,0.00038685681628350897,-0.0003837608836338440,0.99999985153468295973,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000032014042972150,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +91 ,0 ,-0.0006663954415888070,-0.0006763105347092900,0.00000000000000000000,-1.0000000000000000000,-0.0003868568162835089,-0.0003837608836338440,0.99999985153468295973,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000032014042972150,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +92 ,0 ,-0.0019993048960083000,-0.0023728920789584701,0.00000000000000000000,-1.0000000000000000000,-0.0011605567106678599,-0.0003891834049142560,0.99999925082191898351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000162250796620356,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +93 ,0 ,-0.0033325692851617900,-0.0057662036846696795,0.00000000000000000000,-1.0000000000000000000,-0.0019342153906398099,-0.0004000283265169489,0.99999804939217795674,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000425540827109215,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +94 ,0 ,-0.0046664226356094599,-0.0108565423700690000,0.00000000000000000000,-1.0000000000000000000,-0.0027078053803764401,-0.0004162954065340119,0.99999624723703695039,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000827518999813037,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +95 ,0 ,-0.0060010950788749201,-0.0176443536542283015,0.00000000000000000000,-1.0000000000000000000,-0.0034812992047329799,-0.0004379842820879940,0.99999384434386195952,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001376636487293579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +96 ,0 ,-0.0073368112933840396,-0.0261302315219580985,0.00000000000000000000,-1.0000000000000000000,-0.0042546693895139800,-0.0004650944693407880,0.99999084069581400946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002084162156279489,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +97 ,0 ,-0.0086737889459680399,-0.0363149184143784012,0.00000000000000000000,-1.0000000000000000000,-0.0050278884617450904,-0.0004976253634616509,0.99998723627185004403,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002964183101994419,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +98 ,0 ,0.01942563877513680051,-0.0413384717459934977,0.00000000000000000000,-1.0000000000000000000,0.00501467076412681969,-0.0012645610081005698,0.99998662689187201024,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008861254286784969,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +99 ,0 ,0.01643577637159939972,-0.0310466250516901014,0.00000000000000000000,-1.0000000000000000000,0.00424348479024315959,-0.0012320849564647399,0.99999023735409298119,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006423217803330770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +100 ,0 ,0.01344655241715080051,-0.0224714424491252000,0.00000000000000000000,-1.0000000000000000000,0.00347214790060916978,-0.0012050204720752699,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004417390425714980,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +101 ,0 ,0.01045786250927660011,-0.0156121841737741993,0.00000000000000000000,-1.0000000000000000000,0.00270068753241512003,-0.0011833681593253499,0.99999565295387704555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002829660218139910,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +102 ,0 ,0.00746959523778390008,-0.0104682583740509996,0.00000000000000000000,-1.0000000000000000000,0.00192913112407363997,-0.0011671285017129100,0.99999745812885298956,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001648739475967890,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +103 ,0 ,0.00448163374228727033,-0.0070392211367769101,0.00000000000000000000,-1.0000000000000000000,0.00115750611494795001,-0.0011563018618550599,0.99999866157190298032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000866162201873522,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +104 ,0 ,0.00149385726950967989,-0.0053247765085211503,0.00000000000000000000,-1.0000000000000000000,0.00038583994508018898,-0.0011508884814914500,0.99999926329134802838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000476284503747593,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +105 ,0 ,-0.0014938572695096798,-0.0053247765085211503,0.00000000000000000000,-1.0000000000000000000,-0.0003858399450801889,-0.0011508884814914500,0.99999926329134802838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000476284503747593,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +106 ,0 ,-0.0044816337422872703,-0.0070392211367769101,0.00000000000000000000,-1.0000000000000000000,-0.0011575061149479500,-0.0011563018618550599,0.99999866157190298032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000866162201873522,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +107 ,0 ,-0.0074695952377841203,-0.0104682583740509996,0.00000000000000000000,-1.0000000000000000000,-0.0019291311240736399,-0.0011671285017129100,0.99999745812885298956,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001648739475967890,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +108 ,0 ,-0.0104578625092766001,-0.0156121841737741993,0.00000000000000000000,-1.0000000000000000000,-0.0027006875324151200,-0.0011833681593253499,0.99999565295387704555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002829660218139910,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +109 ,0 ,-0.0134465524171508005,-0.0224714424491252000,0.00000000000000000000,-1.0000000000000000000,-0.0034721479006091697,-0.0012050204720752699,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004417390425714980,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +110 ,0 ,-0.0164357763715993997,-0.0310466250516901014,0.00000000000000000000,-1.0000000000000000000,-0.0042434847902431595,-0.0012320849564647399,0.99999023735409298119,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006423217803330770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +111 ,0 ,-0.0194256387751368005,-0.0413384717459934977,0.00000000000000000000,-1.0000000000000000000,-0.0050146707641268196,-0.0012645610081005698,0.99998662689187201024,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008861254286784969,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +112 ,0 ,0.03008507290358690064,-0.0513391581335573971,0.00000000000000000000,-1.0000000000000000000,0.00500143772818009962,-0.0020327862875212702,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015929378218970698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +113 ,0 ,0.02545654358181699897,-0.0409402977946283011,0.00000000000000000000,-1.0000000000000000000,0.00423228721338655012,-0.0020003650242103598,0.99998904308233005355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011926154593311400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +114 ,0 ,0.02082802970359680025,-0.0322759322777586010,0.00000000000000000000,-1.0000000000000000000,0.00346298597914238004,-0.0019733461975441598,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008616048194198809,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +115 ,0 ,0.01619954013401070022,-0.0253453244766038005,0.00000000000000000000,-1.0000000000000000000,0.00269356142694451980,-0.0019517304114895200,0.99999446772231703750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005984924280255649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +116 ,0 ,0.01157107673412080019,-0.0201478846690005992,0.00000000000000000000,-1.0000000000000000000,0.00192404095951378994,-0.0019355181491999299,0.99999627591100603840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004021474501314510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +117 ,0 ,0.00694263591767940984,-0.0166831705406366992,0.00000000000000000000,-1.0000000000000000000,0.00115445198052272998,-0.0019247097730322199,0.99999748136328503456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002717219479109190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +118 ,0 ,0.00231421020761291007,-0.0149508872007284993,0.00000000000000000000,-1.0000000000000000000,0.00038482189432357698,-0.0019193055245567398,0.99999808408737100862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002066505282982690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +119 ,0 ,-0.0023142102076129100,-0.0149508872007284993,0.00000000000000000000,-1.0000000000000000000,-0.0003848218943235769,-0.0019193055245567398,0.99999808408737100862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002066505282982690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +120 ,0 ,-0.0069426359176794098,-0.0166831705406366992,0.00000000000000000000,-1.0000000000000000000,-0.0011544519805227299,-0.0019247097730322199,0.99999748136328503456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002717219479109190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +121 ,0 ,-0.0115710767341217005,-0.0201478846690005992,0.00000000000000000000,-1.0000000000000000000,-0.0019240409595137899,-0.0019355181491999299,0.99999627591100603840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004021474501314510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +122 ,0 ,-0.0161995401340107002,-0.0253453244766038005,0.00000000000000000000,-1.0000000000000000000,-0.0026935614269445198,-0.0019517304114895200,0.99999446772231703750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005984924280255649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +123 ,0 ,-0.0208280297035968002,-0.0322759322777586010,0.00000000000000000000,-1.0000000000000000000,-0.0034629859791423800,-0.0019733461975441598,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008616048194198809,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +124 ,0 ,-0.0254565435818169989,-0.0409402977946283011,0.00000000000000000000,-1.0000000000000000000,-0.0042322872133865501,-0.0020003650242103598,0.99998904308233005355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011926154593311400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +125 ,0 ,-0.0300850729035869006,-0.0513391581335573971,0.00000000000000000000,-1.0000000000000000000,-0.0050014377281800996,-0.0020327862875212702,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015929378218970698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +126 ,0 ,0.04065177894479800324,-0.0663420097337179964,0.00000000000000000000,-1.0000000000000000000,0.00498818925947424988,-0.0028023083877208600,0.99998363238385601370,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00024943181517755901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +127 ,0 ,0.03439884863241800261,-0.0558362793825009015,0.00000000000000000000,-1.0000000000000000000,0.00422107657904061996,-0.0027699418585717902,0.99998725488608797284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019367541267456498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +128 ,0 ,0.02814531072381989962,-0.0470828506633486978,0.00000000000000000000,-1.0000000000000000000,0.00345381337495648992,-0.0027429686444921399,0.99999027360079195680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014747132161119200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +129 ,0 ,0.02189128735807480130,-0.0400809891211312968,0.00000000000000000000,-1.0000000000000000000,0.00268642701311631003,-0.0027213893490188900,0.99999268854822798147,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011067794889640899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +130 ,0 ,0.01563689367383139933,-0.0348301071533212019,0.00000000000000000000,-1.0000000000000000000,0.00191894486063988998,-0.0027052044549645301,0.99999449974461296353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008318202355894749,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +131 ,0 ,0.00938223936519944068,-0.0313297640335842980,0.00000000000000000000,-1.0000000000000000000,0.00115139428559990009,-0.0026944143244310701,0.99999570720210895213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006489860095371109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +132 ,0 ,0.00312743023744210986,-0.0295796659328350988,0.00000000000000000000,-1.0000000000000000000,0.00038380265674957001,-0.0026890191988159502,0.99999631092883001226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005577104548137869,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +133 ,0 ,-0.0031274302374421098,-0.0295796659328350988,0.00000000000000000000,-1.0000000000000000000,-0.0003838026567495700,-0.0026890191988159502,0.99999631092883001226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005577104548137869,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +134 ,0 ,-0.0093822393651994406,-0.0313297640335842980,0.00000000000000000000,-1.0000000000000000000,-0.0011513942855999000,-0.0026944143244310701,0.99999570720210895213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006489860095371109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +135 ,0 ,-0.0156368936738313993,-0.0348301071533212019,0.00000000000000000000,-1.0000000000000000000,-0.0019189448606398899,-0.0027052044549645301,0.99999449974461296353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008318202355894749,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +136 ,0 ,-0.0218912873580748013,-0.0400809891211312968,0.00000000000000000000,-1.0000000000000000000,-0.0026864270131163100,-0.0027213893490188900,0.99999268854822798147,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011067794889640899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +137 ,0 ,-0.0281453107238198996,-0.0470828506633486978,0.00000000000000000000,-1.0000000000000000000,-0.0034538133749564899,-0.0027429686444921399,0.99999027360079195680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014747132161119200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +138 ,0 ,-0.0343988486324188977,-0.0558362793825009015,0.00000000000000000000,-1.0000000000000000000,-0.0042210765790406199,-0.0027699418585717902,0.99998725488608797284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019367541267456498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +139 ,0 ,-0.0406517789447980032,-0.0663420097337179964,0.00000000000000000000,-1.0000000000000000000,-0.0049881892594742498,-0.0028023083877208600,0.99998363238385601370,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00024943181517755901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +140 ,0 ,0.05112544091951939928,-0.0863723429355535976,0.00000000000000000000,-1.0000000000000000000,0.00497492526333551988,-0.0035731345266403501,0.99998124123819398523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036686330099655600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +141 ,0 ,0.04326242419188459920,-0.0757598836704511946,0.00000000000000000000,-1.0000000000000000000,0.00420985280709623016,-0.0035408226774800198,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029530986580539298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +142 ,0 ,0.03539817677627119657,-0.0669175093479173060,0.00000000000000000000,-1.0000000000000000000,0.00344463002250720981,-0.0035138950308439601,0.99998789345957594942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00023594202491494800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +143 ,0 ,0.02753293409536939836,-0.0598444881556660993,0.00000000000000000000,-1.0000000000000000000,0.00267928423995129980,-0.0034923521898372099,0.99999031240914704188,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018861794262647898,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +144 ,0 ,0.01966692457493859902,-0.0545402346039413968,0.00000000000000000000,-1.0000000000000000000,0.00191384279103806991,-0.0034761946369314400,0.99999212660731395807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015322415799801100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +145 ,0 ,0.01180037119889370059,-0.0510043095473914978,0.00000000000000000000,-1.0000000000000000000,0.00114833300833110996,-0.0034654227339727897,0.99999333606608498126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012967557381671199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +146 ,0 ,0.00393349306421808975,-0.0492364202124239980,0.00000000000000000000,-1.0000000000000000000,0.00038278222507536900,-0.0034600367221897499,0.99999394079346703989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011791546126005399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +147 ,0 ,-0.0039334930642180897,-0.0492364202124239980,0.00000000000000000000,-1.0000000000000000000,-0.0003827822250753690,-0.0034600367221897499,0.99999394079346703989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011791546126005399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +148 ,0 ,-0.0118003711988937005,-0.0510043095473914978,0.00000000000000000000,-1.0000000000000000000,-0.0011483330083311099,-0.0034654227339727897,0.99999333606608498126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012967557381671199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +149 ,0 ,-0.0196669245749385990,-0.0545402346039413968,0.00000000000000000000,-1.0000000000000000000,-0.0019138427910380699,-0.0034761946369314400,0.99999212660731395807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015322415799801100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +150 ,0 ,-0.0275329340953693983,-0.0598444881556660993,0.00000000000000000000,-1.0000000000000000000,-0.0026792842399512998,-0.0034923521898372099,0.99999031240914704188,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018861794262647898,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +151 ,0 ,-0.0353981767762711965,-0.0669175093479173060,0.00000000000000000000,-1.0000000000000000000,-0.0034446300225072098,-0.0035138950308439601,0.99998789345957594942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00023594202491494800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +152 ,0 ,-0.0432624241918845992,-0.0757598836704511946,0.00000000000000000000,-1.0000000000000000000,-0.0042098528070962301,-0.0035408226774800198,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029530986580539298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +153 ,0 ,-0.0511254409195193992,-0.0863723429355535976,0.00000000000000000000,-1.0000000000000000000,-0.0049749252633355198,-0.0035731345266403501,0.99998124123819398523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036686330099655600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +154 ,0 ,0.06150573923037769979,-0.1114557609710779967,0.00000000000000000000,-1.0000000000000000000,0.00496164564484674001,-0.0043452719543262997,0.99997825010553997859,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00051951655677839902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +155 ,0 ,0.05204699986743400313,-0.1007367113309689948,0.00000000000000000000,-1.0000000000000000000,0.00419861581723810980,-0.0043130147309824199,0.99998188460049097781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043209263230892198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +156 ,0 ,0.04258640665483909987,-0.0918055068772467980,0.00000000000000000000,-1.0000000000000000000,0.00343543585608166012,-0.0042861326066397902,0.99998491331007399729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035949983066529999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +157 ,0 ,0.03312430831183289792,-0.0846614184265215008,0.00000000000000000000,-1.0000000000000000000,0.00267213305633922986,-0.0042646261839777398,0.99998733625403501967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030159607013047201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +158 ,0 ,0.02366104656408540146,-0.0793038625887003967,0.00000000000000000000,-1.0000000000000000000,0.00190873471420085994,-0.0042484959451300997,0.99998915344817396189,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025826769706327500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +159 ,0 ,0.01419695769799590029,-0.0757324017991809067,0.00000000000000000000,-1.0000000000000000000,0.00114526812681179008,-0.0042377422516867695,0.99999036490434500823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022942946952753099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +160 ,0 ,0.00473237411488957974,-0.0739467443369958982,0.00000000000000000000,-1.0000000000000000000,0.00038176059199945101,-0.0042323653447002302,0.99999097063045494504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021502456183952698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +161 ,0 ,-0.0047323741148895797,-0.0739467443369958982,0.00000000000000000000,-1.0000000000000000000,-0.0003817605919994510,-0.0042323653447002302,0.99999097063045494504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021502456183952698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +162 ,0 ,-0.0141969576979959002,-0.0757324017991809067,0.00000000000000000000,-1.0000000000000000000,-0.0011452681268117900,-0.0042377422516867695,0.99999036490434500823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022942946952753099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +163 ,0 ,-0.0236610465640854014,-0.0793038625887003967,0.00000000000000000000,-1.0000000000000000000,-0.0019087347142008599,-0.0042484959451300997,0.99998915344817396189,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025826769706327500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +164 ,0 ,-0.0331243083118328979,-0.0846614184265215008,0.00000000000000000000,-1.0000000000000000000,-0.0026721330563392298,-0.0042646261839777398,0.99998733625403501967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030159607013047201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +165 ,0 ,-0.0425864066548390998,-0.0918055068772467980,0.00000000000000000000,-1.0000000000000000000,-0.0034354358560816601,-0.0042861326066397902,0.99998491331007399729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035949983066529999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +166 ,0 ,-0.0520469998674348982,-0.1007367113309689948,0.00000000000000000000,-1.0000000000000000000,-0.0041986158172381202,-0.0043130147309824199,0.99998188460049097781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043209263230892198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 +167 ,0 ,-0.0615057392303776997,-0.1114557609710779967,0.00000000000000000000,-1.0000000000000000000,-0.0049616456448467400,-0.0043452719543262997,0.99997825010553997859,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00051951655677839902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RayCore/tests/output/toroid_swapped.rayx.csv b/Intern/RayCore/tests/output/toroid_swapped.rayx.csv new file mode 100644 index 000000000..d02f5b56d --- /dev/null +++ b/Intern/RayCore/tests/output/toroid_swapped.rayx.csv @@ -0,0 +1,169 @@ +Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam +0 ,0 ,-0.0577609925286916292,-0.1093267650908639199,0.00000000000000000000,1.00000000000000000000,0.00510687780018119746,0.00407730460910759977,0.99997864746516385014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994990279737976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +1 ,0 ,-0.0488847118053255744,-0.0997882458961587143,0.00000000000000000000,1.00000000000000000000,0.00432150890463304376,0.00411016569554786999,0.99998221539122467138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995822329037764,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +2 ,0 ,-0.0400034310725046957,-0.0918408709060117428,0.00000000000000000000,1.00000000000000000000,0.00353598770522071600,0.00413755104784618854,0.99998518862144880614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996518259795266,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +3 ,0 ,-0.0311180476951321699,-0.0854838814254137713,0.00000000000000000000,1.00000000000000000000,0.00275034189153587887,0.00415946005856411473,0.99998756717846259967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997076677591394,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +4 ,0 ,-0.0222294660750391379,-0.0807166704701236664,0.00000000000000000000,1.00000000000000000000,0.00196459915438246257,0.00417589224178094731,0.99998935108037378949,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997496466894517,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +5 ,0 ,-0.0133385960867913894,-0.0775387827678029190,0.00000000000000000000,1.00000000000000000000,0.00117878718550683205,0.00418684723305186041,0.99999054034076628738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997776791169599,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +6 ,0 ,-0.0044463515140699544,-0.0759499147988377393,0.00000000000000000000,1.00000000000000000000,0.00039293367732863159,0.00419232478942523946,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997917092769057,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +7 ,0 ,0.00444635151406995443,-0.0759499147988377393,0.00000000000000000000,1.00000000000000000000,-0.0003929336773286315,0.00419232478942523946,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997917092769057,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +8 ,0 ,0.01333859608679138948,-0.0775387827678029190,0.00000000000000000000,1.00000000000000000000,-0.0011787871855068320,0.00418684723305186041,0.99999054034076628738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997776791169599,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +9 ,0 ,0.02222946607503895749,-0.0807166704701236664,0.00000000000000000000,1.00000000000000000000,-0.0019645991543824634,0.00417589224178094731,0.99998935108037378949,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997496466894517,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +10 ,0 ,0.03111804769513216994,-0.0854838814254137713,0.00000000000000000000,1.00000000000000000000,-0.0027503418915358788,0.00415946005856411473,0.99998756717846259967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997076677591394,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +11 ,0 ,0.04000343107250469570,-0.0918408709060117428,0.00000000000000000000,1.00000000000000000000,-0.0035359877052207160,0.00413755104784618854,0.99998518862144880614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996518259795266,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +12 ,0 ,0.04888471180532557441,-0.0997882458961587143,0.00000000000000000000,1.00000000000000000000,-0.0043215089046330437,0.00411016569554786999,0.99998221539122467138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995822329037764,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +13 ,0 ,0.05776099252869162925,-0.1093267650908639199,0.00000000000000000000,1.00000000000000000000,-0.0051068778001811974,0.00407730460910759977,0.99997864746516385014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994990279737976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +14 ,0 ,-0.0464610105416149929,-0.0849975978430929368,0.00000000000000000000,1.00000000000000000000,0.00509375016303547853,0.00331795763403769719,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996454994543455,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +15 ,0 ,-0.0393219420521473961,-0.0753509896782248861,0.00000000000000000000,1.00000000000000000000,0.00431040050436464101,0.00335076355300120308,0.99998509630449161633,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997135432531649,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +16 ,0 ,-0.0321784968116239980,-0.0673135355290724879,0.00000000000000000000,1.00000000000000000000,0.00352689874163562063,0.00337810293159805001,0.99998807463181760279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997705024834431,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +17 ,0 ,-0.0250314588727935799,-0.0608844794426780175,0.00000000000000000000,1.00000000000000000000,0.00274327252810932639,0.00339997516283276545,0.99999045726683222223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998162374722596,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +18 ,0 ,-0.0178816193207116218,-0.0560632166159977449,0.00000000000000000000,1.00000000000000000000,0.00195954951826028721,0.00341637976112846818,0.99999224422743049345,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998506364809145,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +19 ,0 ,-0.0107297747097852905,-0.0528492934238696254,0.00000000000000000000,1.00000000000000000000,0.00117575736750670381,0.00342731636230940786,0.99999343552703645610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998736157031089,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +20 ,0 ,-0.0035767255009463367,-0.0512424074335438850,0.00000000000000000000,1.00000000000000000000,0.00039192373194079597,0.00343278472359009228,0.99999403117460128331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998851192813162,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +21 ,0 ,0.00357672550094633671,-0.0512424074335438850,0.00000000000000000000,1.00000000000000000000,-0.0003919237319407959,0.00343278472359009228,0.99999403117460128331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998851192813162,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +22 ,0 ,0.01072977470978529052,-0.0528492934238696254,0.00000000000000000000,1.00000000000000000000,-0.0011757573675067038,0.00342731636230940786,0.99999343552703645610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998736157031089,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +23 ,0 ,0.01788161932071163917,-0.0560632166159977449,0.00000000000000000000,1.00000000000000000000,-0.0019595495182602876,0.00341637976112846818,0.99999224422743049345,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998506364809145,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +24 ,0 ,0.02503145887279357995,-0.0608844794426780175,0.00000000000000000000,1.00000000000000000000,-0.0027432725281093263,0.00339997516283276545,0.99999045726683222223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998162374722596,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +25 ,0 ,0.03217849681162399805,-0.0673135355290724879,0.00000000000000000000,1.00000000000000000000,-0.0035268987416356206,0.00337810293159805001,0.99998807463181760279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997705024834431,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +26 ,0 ,0.03932194205214743082,-0.0753509896782248861,0.00000000000000000000,1.00000000000000000000,-0.0043104005043646418,0.00335076355300120308,0.99998509630449161633,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997135432531649,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +27 ,0 ,0.04646101054161499294,-0.0849975978430929368,0.00000000000000000000,1.00000000000000000000,-0.0050937501630354785,0.00331795763403769719,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996454994543455,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +28 ,0 ,-0.0352516439989982166,-0.0655011979610730099,0.00000000000000000000,1.00000000000000000000,0.00508060774906991894,0.00255736347909776579,0.99998382352762871239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997590337152360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +29 ,0 ,-0.0298358470831469671,-0.0557466618369392499,0.00000000000000000000,1.00000000000000000000,0.00429927960163709044,0.00259011428476110328,0.99998740367211536028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998118478415563,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +30 ,0 ,-0.0244162965861969005,-0.0476192627273722551,0.00000000000000000000,1.00000000000000000000,0.00351779954945019655,0.00261740773480791458,0.99999038708533583008,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998561161173711,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +31 ,0 ,-0.0189936632645890911,-0.0411182474019981050,0.00000000000000000000,1.00000000000000000000,0.00273619520953059455,0.00263924322268011208,0.99999277378938411509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998916986223775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +32 ,0 ,-0.0135686249026792434,-0.0362430132397585785,0.00000000000000000000,1.00000000000000000000,0.00195449420011470321,0.00265562026314863225,0.99999456380194351456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999184834359766,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +33 ,0 ,-0.0081418647507434990,-0.0329931082467662256,0.00000000000000000000,1.00000000000000000000,0.00117272414038376731,0.00266653849229657327,0.99999575713627864015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999363866081694,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +34 ,0 ,-0.0027140699631842315,-0.0313682310870676966,0.00000000000000000000,1.00000000000000000000,0.00039091265019390803,0.00267199766752118693,0.99999635380123463868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999453521850227,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +35 ,0 ,0.00271406996318423153,-0.0313682310870676966,0.00000000000000000000,1.00000000000000000000,-0.0003909126501939080,0.00267199766752118693,0.99999635380123463868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999453521850227,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +36 ,0 ,0.00814186475074349901,-0.0329931082467662256,0.00000000000000000000,1.00000000000000000000,-0.0011727241403837673,0.00266653849229657327,0.99999575713627864015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999363866081694,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +37 ,0 ,0.01356862490267948286,-0.0362430132397585785,0.00000000000000000000,1.00000000000000000000,-0.0019544942001147036,0.00265562026314863225,0.99999456380194351456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999184834359766,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +38 ,0 ,0.01899366326458909112,-0.0411182474019981050,0.00000000000000000000,1.00000000000000000000,-0.0027361952095305945,0.00263924322268011208,0.99999277378938411509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998916986223775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +39 ,0 ,0.02441629658619690057,-0.0476192627273722551,0.00000000000000000000,1.00000000000000000000,-0.0035177995494501965,0.00261740773480791458,0.99999038708533583008,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998561161173711,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +40 ,0 ,0.02983584708314785532,-0.0557466618369392499,0.00000000000000000000,1.00000000000000000000,-0.0042992796016370904,0.00259011428476110328,0.99998740367211536028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998118478415563,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +41 ,0 ,0.03525164399899821665,-0.0655011979610730099,0.00000000000000000000,1.00000000000000000000,-0.0050806077490699189,0.00255736347909776579,0.99998382352762871239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997590337152360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +42 ,0 ,-0.0241331842480904737,-0.0508609450884720121,0.00000000000000000000,1.00000000000000000000,0.00506745046530147381,0.00179551514632005234,0.99998554843114662027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998468601916101,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +43 ,0 ,-0.0204266733882428261,-0.0409986395724077842,0.00000000000000000000,1.00000000000000000000,0.00428814611777176592,0.00182821089285328591,0.99998913466487393542,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998843755984125,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +44 ,0 ,-0.0167170320461315739,-0.0327814276616158611,0.00000000000000000000,1.00000000000000000000,0.00350869006429054561,0.00185545845949406078,0.99999212315294638830,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999158953814912,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +45 ,0 ,-0.0130048176946463700,-0.0262085588385477276,0.00000000000000000000,1.00000000000000000000,0.00272910988573079899,0.00187725724011885211,0.99999451391719418325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999412793749797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +46 ,0 ,-0.0092905948302787789,-0.0212794326528603881,0.00000000000000000000,1.00000000000000000000,0.00194943316418205074,0.00189360674984721745,0.99999630697508834487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999604154727421,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +47 ,0 ,-0.0055749334121439828,-0.0179935987421909263,0.00000000000000000000,1.00000000000000000000,0.00116968748267980279,0.00190450662502623675,0.99999750233973472290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999732195828983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +48 ,0 ,-0.0018584073010751223,-0.0163507568495243477,0.00000000000000000000,1.00000000000000000000,0.00038990042493520279,0.00190995662321962584,0.99999810001987288199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999796356478327,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +49 ,0 ,0.00185840730107512236,-0.0163507568495243477,0.00000000000000000000,1.00000000000000000000,-0.0003899004249352027,0.00190995662321962584,0.99999810001987288199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999796356478327,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +50 ,0 ,0.00557493341214398280,-0.0179935987421909263,0.00000000000000000000,1.00000000000000000000,-0.0011696874826798027,0.00190450662502623675,0.99999750233973472290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999732195828983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +51 ,0 ,0.00929059483027857950,-0.0212794326528603881,0.00000000000000000000,1.00000000000000000000,-0.0019494331641820513,0.00189360674984721745,0.99999630697508834487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999604154727421,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +52 ,0 ,0.01300481769464637005,-0.0262085588385477276,0.00000000000000000000,1.00000000000000000000,-0.0027291098857307989,0.00187725724011885211,0.99999451391719418325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999412793749797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +53 ,0 ,0.01671703204613157398,-0.0327814276616158611,0.00000000000000000000,1.00000000000000000000,-0.0035086900642905456,0.00185545845949406078,0.99999212315294638830,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999158953814912,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +54 ,0 ,0.02042667338824371431,-0.0409986395724077842,0.00000000000000000000,1.00000000000000000000,-0.0042881461177717659,0.00182821089285328591,0.99998913466487393542,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998843755984125,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +55 ,0 ,0.02413318424809047374,-0.0508609450884720121,0.00000000000000000000,1.00000000000000000000,-0.0050674504653014738,0.00179551514632005234,0.99998554843114662027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998468601916101,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +56 ,0 ,-0.0131059260823182602,-0.0411004881237069172,0.00000000000000000000,1.00000000000000000000,0.00505427821850702729,0.00103240560681797902,0.99998669411665308537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999162914828048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +57 ,0 ,-0.0110946703732476316,-0.0311305693336752092,0.00000000000000000000,1.00000000000000000000,0.00427699997388696333,0.00106504634838992741,0.99999028642657261656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999384386155725,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +58 ,0 ,-0.0090809072270111677,-0.0228236747346513765,0.00000000000000000000,1.00000000000000000000,0.00349957022161662177,0.00109224807676278545,0.99999327997862186290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999571519401797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +59 ,0 ,-0.0070650808425428502,-0.0161790565189359816,0.00000000000000000000,1.00000000000000000000,0.00272201650651187872,0.00111401018625538385,0.99999567479436768380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999722910542914,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +60 ,0 ,-0.0050476424381723002,-0.0111961163963447338,0.00000000000000000000,1.00000000000000000000,0.00194436637460643321,0.00113033219233001015,0.99999747089106971742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999837436535017,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +61 ,0 ,-0.0030290486915975655,-0.0078744056242051434,0.00000000000000000000,1.00000000000000000000,0.00116664737288117302,0.00114121373159281895,0.99999866828167593979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999914255113253,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +62 ,0 ,-0.0010097601799680078,-0.0062136250326939304,0.00000000000000000000,1.00000000000000000000,0.00038888704899347098,0.00114665456178830033,0.99999926697482066639,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999952804791973,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +63 ,0 ,0.00100976017996800789,-0.0062136250326939304,0.00000000000000000000,1.00000000000000000000,-0.0003888870489934709,0.00114665456178830033,0.99999926697482066639,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999952804791973,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +64 ,0 ,0.00302904869159756557,-0.0078744056242051434,0.00000000000000000000,1.00000000000000000000,-0.0011666473728811730,0.00114121373159281895,0.99999866828167593979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999914255113253,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +65 ,0 ,0.00504764243817210425,-0.0111961163963447338,0.00000000000000000000,1.00000000000000000000,-0.0019443663746064340,0.00113033219233001015,0.99999747089106971742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999837436535017,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +66 ,0 ,0.00706508084254285021,-0.0161790565189359816,0.00000000000000000000,1.00000000000000000000,-0.0027220165065118787,0.00111401018625538385,0.99999567479436768380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999722910542914,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +67 ,0 ,0.00908090722701116771,-0.0228236747346513765,0.00000000000000000000,1.00000000000000000000,-0.0034995702216166217,0.00109224807676278545,0.99999327997862186290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999571519401797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +68 ,0 ,0.01109467037324679550,-0.0311305693336752092,0.00000000000000000000,1.00000000000000000000,-0.0042769999738869650,0.00106504634838992741,0.99999028642657261656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999384386155725,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +69 ,0 ,0.01310592608231826022,-0.0411004881237069172,0.00000000000000000000,1.00000000000000000000,-0.0050542782185070272,0.00103240560681797902,0.99998669411665308537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999162914828048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +70 ,0 ,-0.0021701677651352838,-0.0362437476573020667,0.00000000000000000000,1.00000000000000000000,0.00504109091522312278,0.00026802780063152662,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999747245437902,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +71 ,0 ,-0.0018400903799371704,-0.0261663692330218050,0.00000000000000000000,1.00000000000000000000,0.00426584109089738362,0.00030061359139585278,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999814333150425,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +72 ,0 ,-0.0015081285665318371,-0.0177699200076863982,0.00000000000000000000,1.00000000000000000000,0.00349043995672192360,0.00032776952664430016,0.99999385467914014835,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999872817716095,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +73 ,0 ,-0.0011746132561055047,-0.0110536548544858739,0.00000000000000000000,1.00000000000000000000,0.00271491502154620712,0.00034949500111104432,0.99999625353781662617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999921292801445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +74 ,0 ,-0.0008398823954302222,-0.0060169776464253331,0.00000000000000000000,1.00000000000000000000,0.00193929379543939612,0.00036578953061679604,0.99999805266690089400,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999958633452479,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +75 ,0 ,-0.0005042793873899099,-0.0026594412529892205,0.00000000000000000000,1.00000000000000000000,0.00116360378941877712,0.00037665275202271964,0.99999925207918294312,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999983995912771,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +76 ,0 ,-0.0001681515320926823,-0.0009807475809615502,0.00000000000000000000,1.00000000000000000000,0.00038787251517899163,0.00038208442324539368,0.99999985178319161782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999996817750798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +77 ,0 ,0.00016815153209268231,-0.0009807475809615502,0.00000000000000000000,1.00000000000000000000,-0.0003878725151789916,0.00038208442324539368,0.99999985178319161782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999996817750798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +78 ,0 ,0.00050427938738990991,-0.0026594412529892205,0.00000000000000000000,1.00000000000000000000,-0.0011636037894187771,0.00037665275202271964,0.99999925207918294312,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999983995912771,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +79 ,0 ,0.00083988239542981206,-0.0060169776464253331,0.00000000000000000000,1.00000000000000000000,-0.0019392937954393974,0.00036578953061679604,0.99999805266690089400,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999958633452479,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +80 ,0 ,0.00117461325610550477,-0.0110536548544858739,0.00000000000000000000,1.00000000000000000000,-0.0027149150215462071,0.00034949500111104432,0.99999625353781662617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999921292801445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +81 ,0 ,0.00150812856653183714,-0.0177699200076863982,0.00000000000000000000,1.00000000000000000000,-0.0034904399567219236,0.00032776952664430016,0.99999385467914014835,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999872817716095,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +82 ,0 ,0.00184009037993719298,-0.0261663692330218050,0.00000000000000000000,1.00000000000000000000,-0.0042658410908973844,0.00030061359139585278,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999814333150425,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +83 ,0 ,0.00217016776513528387,-0.0362437476573020667,0.00000000000000000000,1.00000000000000000000,-0.0050410909152231227,0.00026802780063152662,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999747245437902,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +84 ,0 ,0.00867378894596583863,-0.0363149184144127001,0.00000000000000000000,1.00000000000000000000,0.00502788846174509300,-0.0004976253634616102,0.99998723627185037710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000296418329526,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +85 ,0 ,0.00733681129338948929,-0.0261302315220993917,0.00000000000000000000,1.00000000000000000000,0.00425466938951398615,-0.0004650944693405224,0.99999084069581356537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000208416240639,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +86 ,0 ,0.00600109507889677856,-0.0176443536524477084,0.00000000000000000000,1.00000000000000000000,0.00348129920473295171,-0.0004379842820900633,0.99999384434386162645,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000137663664645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +87 ,0 ,0.00466642263561978069,-0.0108565423691527902,0.00000000000000000000,1.00000000000000000000,0.00270780538037642673,-0.0004162954065354200,0.99999624723703628426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000082751903391,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +88 ,0 ,0.00333256928516520098,-0.0057662036849406095,0.00000000000000000000,1.00000000000000000000,0.00193421539063980520,-0.0004000283265173431,0.99999804939217762367,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042554092942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +89 ,0 ,0.00199930489600901430,-0.0023728920789259969,0.00000000000000000000,1.00000000000000000000,0.00116055671066785386,-0.0003891834049146128,0.99999925082191853942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000016225076251,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +90 ,0 ,0.00066639544158892500,-0.0006763105351176216,0.00000000000000000000,1.00000000000000000000,0.00038685681628350946,-0.0003837608836337441,0.99999985153468262666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000003201421350,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +91 ,0 ,-0.0006663954415889250,-0.0006763105351176216,0.00000000000000000000,1.00000000000000000000,-0.0003868568162835094,-0.0003837608836337441,0.99999985153468262666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000003201421350,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +92 ,0 ,-0.0019993048960090143,-0.0023728920789259969,0.00000000000000000000,1.00000000000000000000,-0.0011605567106678538,-0.0003891834049146128,0.99999925082191853942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000016225076251,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +93 ,0 ,-0.0033325692851654039,-0.0057662036849406095,0.00000000000000000000,1.00000000000000000000,-0.0019342153906398060,-0.0004000283265173431,0.99999804939217762367,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042554092942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +94 ,0 ,-0.0046664226356197806,-0.0108565423691527902,0.00000000000000000000,1.00000000000000000000,-0.0027078053803764267,-0.0004162954065354200,0.99999624723703628426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000082751903391,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +95 ,0 ,-0.0060010950788967785,-0.0176443536524477084,0.00000000000000000000,1.00000000000000000000,-0.0034812992047329517,-0.0004379842820900633,0.99999384434386162645,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000137663664645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +96 ,0 ,-0.0073368112933894702,-0.0261302315220993917,0.00000000000000000000,1.00000000000000000000,-0.0042546693895139870,-0.0004650944693405224,0.99999084069581356537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000208416240639,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +97 ,0 ,-0.0086737889459658386,-0.0363149184144127001,0.00000000000000000000,1.00000000000000000000,-0.0050278884617450930,-0.0004976253634616102,0.99998723627185037710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000296418329526,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +98 ,0 ,0.01942563877513757419,-0.0413384717463330594,0.00000000000000000000,1.00000000000000000000,0.00501467076412681796,-0.0012645610081007162,0.99998662689187178820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000886125435499,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +99 ,0 ,0.01643577637158456436,-0.0310466250533483548,0.00000000000000000000,1.00000000000000000000,0.00424348479024318648,-0.0012320849564629514,0.99999023735409264812,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000642321792838,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +100 ,0 ,0.01344655241715156726,-0.0224714424495627770,0.00000000000000000000,1.00000000000000000000,0.00347214790060917585,-0.0012050204720749234,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000441739066445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +101 ,0 ,0.01045786250927579000,-0.0156121841746222032,0.00000000000000000000,1.00000000000000000000,0.00270068753241511786,-0.0011833681593252140,0.99999565295387715657,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000282966029772,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +102 ,0 ,0.00746959523778303012,-0.0104682583751428102,0.00000000000000000000,1.00000000000000000000,0.00192913112407364106,-0.0011671285017129055,0.99999745812885254547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000164873963512,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +103 ,0 ,0.00448163374228885153,-0.0070392211369284486,0.00000000000000000000,1.00000000000000000000,0.00115750611494795023,-0.0011563018618554463,0.99999866157190309134,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000086616237240,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +104 ,0 ,0.00149385726951012181,-0.0053247765085518731,0.00000000000000000000,1.00000000000000000000,0.00038583994508018844,-0.0011508884814915984,0.99999926329134836144,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000047628454922,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +105 ,0 ,-0.0014938572695101218,-0.0053247765085518731,0.00000000000000000000,1.00000000000000000000,-0.0003858399450801884,-0.0011508884814915984,0.99999926329134836144,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000047628454922,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +106 ,0 ,-0.0044816337422888515,-0.0070392211369284486,0.00000000000000000000,1.00000000000000000000,-0.0011575061149479502,-0.0011563018618554463,0.99999866157190309134,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000086616237240,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +107 ,0 ,-0.0074695952377830223,-0.0104682583751428102,0.00000000000000000000,1.00000000000000000000,-0.0019291311240736414,-0.0011671285017129055,0.99999745812885254547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000164873963512,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +108 ,0 ,-0.0104578625092757900,-0.0156121841746222032,0.00000000000000000000,1.00000000000000000000,-0.0027006875324151178,-0.0011833681593252140,0.99999565295387715657,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000282966029772,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +109 ,0 ,-0.0134465524171515672,-0.0224714424495627770,0.00000000000000000000,1.00000000000000000000,-0.0034721479006091758,-0.0012050204720749234,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000441739066445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +110 ,0 ,-0.0164357763715854247,-0.0310466250533483548,0.00000000000000000000,1.00000000000000000000,-0.0042434847902431882,-0.0012320849564629514,0.99999023735409264812,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000642321792838,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +111 ,0 ,-0.0194256387751375741,-0.0413384717463330594,0.00000000000000000000,1.00000000000000000000,-0.0050146707641268179,-0.0012645610081007162,0.99998662689187178820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000886125435499,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +112 ,0 ,0.03008507290358788249,-0.0513391581338997690,0.00000000000000000000,1.00000000000000000000,0.00500143772818010135,-0.0020327862875208677,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001592937824170,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +113 ,0 ,0.02545654358182089863,-0.0409402977951373800,0.00000000000000000000,1.00000000000000000000,0.00423228721338655185,-0.0020003650242100437,0.99998904308232949844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001192615454783,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +114 ,0 ,0.02082802970359465613,-0.0322759322780291277,0.00000000000000000000,1.00000000000000000000,0.00346298597914238134,-0.0019733461975443822,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000861604821693,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +115 ,0 ,0.01619954013400299805,-0.0253453244778393885,0.00000000000000000000,1.00000000000000000000,0.00269356142694453497,-0.0019517304114879381,0.99999446772231692648,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000598492424614,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +116 ,0 ,0.01157107673412261818,-0.0201478846692347939,0.00000000000000000000,1.00000000000000000000,0.00192404095951379146,-0.0019355181491995687,0.99999627591100559431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000402147470595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +117 ,0 ,0.00694263591767913922,-0.0166831705412857946,0.00000000000000000000,1.00000000000000000000,0.00115445198052272694,-0.0019247097730319103,0.99999748136328514558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000271721946774,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +118 ,0 ,0.00231421020761353414,-0.0149508872007979055,0.00000000000000000000,1.00000000000000000000,0.00038482189432357703,-0.0019193055245568452,0.99999808408737089759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000206650529435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +119 ,0 ,-0.0023142102076135341,-0.0149508872007979055,0.00000000000000000000,1.00000000000000000000,-0.0003848218943235770,-0.0019193055245568452,0.99999808408737089759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000206650529435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +120 ,0 ,-0.0069426359176791392,-0.0166831705412857946,0.00000000000000000000,1.00000000000000000000,-0.0011544519805227269,-0.0019247097730319103,0.99999748136328514558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000271721946774,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +121 ,0 ,-0.0115710767341221740,-0.0201478846692347939,0.00000000000000000000,1.00000000000000000000,-0.0019240409595137914,-0.0019355181491995687,0.99999627591100559431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000402147470595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +122 ,0 ,-0.0161995401340029980,-0.0253453244778393885,0.00000000000000000000,1.00000000000000000000,-0.0026935614269445349,-0.0019517304114879381,0.99999446772231692648,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000598492424614,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +123 ,0 ,-0.0208280297035946561,-0.0322759322780291277,0.00000000000000000000,1.00000000000000000000,-0.0034629859791423813,-0.0019733461975443822,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000861604821693,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +124 ,0 ,-0.0254565435818208882,-0.0409402977951373800,0.00000000000000000000,1.00000000000000000000,-0.0042322872133865527,-0.0020003650242100437,0.99998904308232949844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001192615454783,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +125 ,0 ,-0.0300850729035878824,-0.0513391581338997690,0.00000000000000000000,1.00000000000000000000,-0.0050014377281801013,-0.0020327862875208677,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001592937824170,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +126 ,0 ,0.04065177894480398457,-0.0663420097339615794,0.00000000000000000000,1.00000000000000000000,0.00498818925947426029,-0.0028023083877204780,0.99998363238385623574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002494318177923,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +127 ,0 ,0.03439884863242140267,-0.0558362793822584219,0.00000000000000000000,1.00000000000000000000,0.00422107657904061996,-0.0027699418585719168,0.99998725488608786182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001936754124471,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +128 ,0 ,0.02814531072382245313,-0.0470828506634946575,0.00000000000000000000,1.00000000000000000000,0.00345381337495648645,-0.0027429686444921759,0.99999027360079162374,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001474713208153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +129 ,0 ,0.02189128735806861528,-0.0400809891224744446,0.00000000000000000000,1.00000000000000000000,0.00268642701311632607,-0.0027213893490169085,0.99999268854822831453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001106779491237,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +130 ,0 ,0.01563689367383414713,-0.0348301071534400374,0.00000000000000000000,1.00000000000000000000,0.00191894486063988456,-0.0027052044549649048,0.99999449974461274148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000831820252642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +131 ,0 ,0.00938223936520081458,-0.0313297640336747534,0.00000000000000000000,1.00000000000000000000,0.00115139428559989901,-0.0026944143244313988,0.99999570720210939622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000648986006126,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +132 ,0 ,0.00312743023744256696,-0.0295796659325841850,0.00000000000000000000,1.00000000000000000000,0.00038380265674957034,-0.0026890191988158799,0.99999631092882967919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000557710482098,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +133 ,0 ,-0.0031274302374425669,-0.0295796659325841850,0.00000000000000000000,1.00000000000000000000,-0.0003838026567495703,-0.0026890191988158799,0.99999631092882967919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000557710482098,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +134 ,0 ,-0.0093822393652008145,-0.0313297640336747534,0.00000000000000000000,1.00000000000000000000,-0.0011513942855998990,-0.0026944143244313988,0.99999570720210939622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000648986006126,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +135 ,0 ,-0.0156368936738339250,-0.0348301071534400374,0.00000000000000000000,1.00000000000000000000,-0.0019189448606398847,-0.0027052044549649048,0.99999449974461274148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000831820252642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +136 ,0 ,-0.0218912873580686152,-0.0400809891224744446,0.00000000000000000000,1.00000000000000000000,-0.0026864270131163260,-0.0027213893490169085,0.99999268854822831453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001106779491237,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +137 ,0 ,-0.0281453107238224531,-0.0470828506634946575,0.00000000000000000000,1.00000000000000000000,-0.0034538133749564864,-0.0027429686444921759,0.99999027360079162374,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001474713208153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +138 ,0 ,-0.0343988486324213957,-0.0558362793822584219,0.00000000000000000000,1.00000000000000000000,-0.0042210765790406208,-0.0027699418585719168,0.99998725488608786182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001936754124471,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +139 ,0 ,-0.0406517789448039845,-0.0663420097339615794,0.00000000000000000000,1.00000000000000000000,-0.0049881892594742602,-0.0028023083877204780,0.99998363238385623574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002494318177923,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +140 ,0 ,0.05112544091953231950,-0.0863723429352390992,0.00000000000000000000,1.00000000000000000000,0.00497492526333551295,-0.0035731345266406398,0.99998124123819365216,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003668633034976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +141 ,0 ,0.04326242419188671556,-0.0757598836707088080,0.00000000000000000000,1.00000000000000000000,0.00420985280709623276,-0.0035408226774800571,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002953098664875,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +142 ,0 ,0.03539817677627560971,-0.0669175093475321142,0.00000000000000000000,1.00000000000000000000,0.00344463002250721588,-0.0035138950308438200,0.99998789345957583840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002359420250286,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +143 ,0 ,0.02753293409537677788,-0.0598444881553492416,0.00000000000000000000,1.00000000000000000000,0.00267928423995130067,-0.0034923521898375855,0.99999031240914693086,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001886179452412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +144 ,0 ,0.01966692457493831799,-0.0545402346041753763,0.00000000000000000000,1.00000000000000000000,0.00191384279103807381,-0.0034761946369316438,0.99999212660731340296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001532241585664,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +145 ,0 ,0.01180037119889326691,-0.0510043095478574931,0.00000000000000000000,1.00000000000000000000,0.00114833300833110866,-0.0034654227339725842,0.99999333606608420410,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001296755726798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +146 ,0 ,0.00393349306421846532,-0.0492364202131529635,0.00000000000000000000,1.00000000000000000000,0.00038278222507536911,-0.0034600367221895344,0.99999394079346737296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001179154623969,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +147 ,0 ,-0.0039334930642184653,-0.0492364202131529635,0.00000000000000000000,1.00000000000000000000,-0.0003827822250753691,-0.0034600367221895344,0.99999394079346737296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001179154623969,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +148 ,0 ,-0.0118003711988932669,-0.0510043095478574931,0.00000000000000000000,1.00000000000000000000,-0.0011483330083311086,-0.0034654227339725842,0.99999333606608420410,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001296755726798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +149 ,0 ,-0.0196669245749383179,-0.0545402346041753763,0.00000000000000000000,1.00000000000000000000,-0.0019138427910380742,-0.0034761946369316438,0.99999212660731340296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001532241585664,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +150 ,0 ,-0.0275329340953767778,-0.0598444881553492416,0.00000000000000000000,1.00000000000000000000,-0.0026792842399513006,-0.0034923521898375855,0.99999031240914693086,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001886179452412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +151 ,0 ,-0.0353981767762756097,-0.0669175093475321142,0.00000000000000000000,1.00000000000000000000,-0.0034446300225072158,-0.0035138950308438200,0.99998789345957583840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002359420250286,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +152 ,0 ,-0.0432624241918849392,-0.0757598836707088080,0.00000000000000000000,1.00000000000000000000,-0.0042098528070962318,-0.0035408226774800571,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002953098664875,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +153 ,0 ,-0.0511254409195323195,-0.0863723429352390992,0.00000000000000000000,1.00000000000000000000,-0.0049749252633355129,-0.0035731345266406398,0.99998124123819365216,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003668633034976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +154 ,0 ,0.06150573923039394375,-0.1114557609702490625,0.00000000000000000000,1.00000000000000000000,0.00496164564484673394,-0.0043452719543268765,0.99997825010553986757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005195165576878,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +155 ,0 ,0.05204699986745520146,-0.1007367113297423927,0.00000000000000000000,1.00000000000000000000,0.00419861581723808639,-0.0043130147309842232,0.99998188460049075576,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004320926345826,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +156 ,0 ,0.04258640665483895415,-0.0918055068772783561,0.00000000000000000000,1.00000000000000000000,0.00343543585608166533,-0.0042861326066395075,0.99998491331007421933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003594998306652,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +157 ,0 ,0.03312430831183234281,-0.0846614184270701730,0.00000000000000000000,1.00000000000000000000,0.00267213305633923290,-0.0042646261839776279,0.99998733625403468661,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003015960719494,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +158 ,0 ,0.02366104656408118261,-0.0793038625894410958,0.00000000000000000000,1.00000000000000000000,0.00190873471420086081,-0.0042484959451296877,0.99998915344817351780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002582676970632,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +159 ,0 ,0.01419695769799116796,-0.0757324018003851517,0.00000000000000000000,1.00000000000000000000,0.00114526812681179355,-0.0042377422516848249,0.99999036490434511925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002294294699822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +160 ,0 ,0.00473237411488996746,-0.0739467443366051968,0.00000000000000000000,1.00000000000000000000,0.00038176059199945057,-0.0042323653447003794,0.99999097063045472300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002150245618395,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +161 ,0 ,-0.0047323741148899674,-0.0739467443366051968,0.00000000000000000000,1.00000000000000000000,-0.0003817605919994505,-0.0042323653447003794,0.99999097063045472300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002150245618395,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +162 ,0 ,-0.0141969576979911679,-0.0757324018003851517,0.00000000000000000000,1.00000000000000000000,-0.0011452681268117935,-0.0042377422516848249,0.99999036490434511925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002294294699822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +163 ,0 ,-0.0236610465640816267,-0.0793038625894410958,0.00000000000000000000,1.00000000000000000000,-0.0019087347142008616,-0.0042484959451296877,0.99998915344817351780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002582676970632,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +164 ,0 ,-0.0331243083118323428,-0.0846614184270701730,0.00000000000000000000,1.00000000000000000000,-0.0026721330563392329,-0.0042646261839776279,0.99998733625403468661,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003015960719494,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +165 ,0 ,-0.0425864066548389541,-0.0918055068772783561,0.00000000000000000000,1.00000000000000000000,-0.0034354358560816653,-0.0042861326066395075,0.99998491331007421933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003594998306652,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +166 ,0 ,-0.0520469998674552014,-0.1007367113297423927,0.00000000000000000000,1.00000000000000000000,-0.0041986158172380872,-0.0043130147309842232,0.99998188460049075576,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004320926345826,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 +167 ,0 ,-0.0615057392303939437,-0.1114557609702490625,0.00000000000000000000,1.00000000000000000000,-0.0049616456448467339,-0.0043452719543268765,0.99997825010553986757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005195165576878,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Tests/setupTests.cpp b/Intern/RayCore/tests/setupTests.cpp similarity index 90% rename from Tests/setupTests.cpp rename to Intern/RayCore/tests/setupTests.cpp index 1f83fe4b8..7af5bdf67 100644 --- a/Tests/setupTests.cpp +++ b/Intern/RayCore/tests/setupTests.cpp @@ -56,16 +56,16 @@ RAYX::Ray parseCSVline(std::string line) { return ray; } -/// will look at Tests/input/.rml +/// will look at Intern/RayCore/tests/input/.rml RAYX::Beamline loadBeamline(std::string filename) { - std::string beamline_file = canonicalizeRepositoryPath("Tests/input/" + filename + ".rml").string(); + std::string beamline_file = canonicalizeRepositoryPath("Intern/RayCore/tests/input/" + filename + ".rml").string(); return RAYX::importBeamline(beamline_file); } -/// will write to Tests/output/.csv +/// will write to Intern/RayCore/tests/output.csv void writeToOutputCSV(const RAYX::Rays& rays, std::string filename) { - std::string f = canonicalizeRepositoryPath("Tests/output/" + filename + ".csv").string(); + std::string f = canonicalizeRepositoryPath("Intern/RayCore/tests/output/" + filename + ".csv").string(); writeCSV(rays, f); } @@ -106,11 +106,11 @@ std::vector extractLastHit(const RAYX::Rays& rays) { return outs; } -/// will look at Tests/input/.csv +/// will look at Intern/RayCore/tests/input/.csv /// the Ray-UI files are to be obtained by Export > RawRaysOutgoing (which are in /// element coordinates of the relevant element!) std::vector loadCSVRayUI(std::string filename) { - std::string file = canonicalizeRepositoryPath("Tests/input/" + filename + ".csv").string(); + std::string file = canonicalizeRepositoryPath("Intern/RayCore/tests/input/" + filename + ".csv").string(); std::ifstream f(file); std::string line; @@ -224,7 +224,7 @@ void compareLastAgainstRayUI(std::string filename, double t) { void compareAgainstCorrect(std::string filename, double tolerance) { auto a = traceRML(filename); - std::string f = canonicalizeRepositoryPath("Tests/input/" + filename + ".correct.csv").string(); + std::string f = canonicalizeRepositoryPath("Intern/RayCore/tests/input/" + filename + ".correct.csv").string(); auto b = loadCSV(f); writeToOutputCSV(a, filename + ".rayx"); diff --git a/Tests/setupTests.h b/Intern/RayCore/tests/setupTests.h similarity index 100% rename from Tests/setupTests.h rename to Intern/RayCore/tests/setupTests.h diff --git a/Tests/testIntegration.cpp b/Intern/RayCore/tests/testIntegration.cpp similarity index 100% rename from Tests/testIntegration.cpp rename to Intern/RayCore/tests/testIntegration.cpp diff --git a/Tests/testRml.cpp b/Intern/RayCore/tests/testRml.cpp similarity index 100% rename from Tests/testRml.cpp rename to Intern/RayCore/tests/testRml.cpp diff --git a/Tests/testSeeded.cpp b/Intern/RayCore/tests/testSeeded.cpp similarity index 100% rename from Tests/testSeeded.cpp rename to Intern/RayCore/tests/testSeeded.cpp diff --git a/Tests/testShader.cpp b/Intern/RayCore/tests/testShader.cpp similarity index 100% rename from Tests/testShader.cpp rename to Intern/RayCore/tests/testShader.cpp diff --git a/Tests/testSources.cpp b/Intern/RayCore/tests/testSources.cpp similarity index 100% rename from Tests/testSources.cpp rename to Intern/RayCore/tests/testSources.cpp diff --git a/Tests/testsPCH.h b/Intern/RayCore/tests/testsPCH.h similarity index 100% rename from Tests/testsPCH.h rename to Intern/RayCore/tests/testsPCH.h From 6b5beeb329aef3557ba5e548138a5312b3c51dcc Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Wed, 5 Apr 2023 14:14:50 +0200 Subject: [PATCH 04/19] No vma warnings --- Intern/RayCore/CMakeLists.txt | 2 +- Intern/RayCore/src/VulkanEngine/Init/Instance.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Intern/RayCore/CMakeLists.txt b/Intern/RayCore/CMakeLists.txt index 119c17418..c55568fa2 100644 --- a/Intern/RayCore/CMakeLists.txt +++ b/Intern/RayCore/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.2 FATAL_ERROR) # ---- Add tests ---- -add_subdirectory(Tests) +add_subdirectory(tests) # ------------------- project(RayCore) diff --git a/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp b/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp index 8776991ff..bf29c2047 100644 --- a/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp +++ b/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp @@ -3,7 +3,9 @@ #include "VulkanEngine/VulkanEngine.h" #define VMA_IMPLEMENTATION +#pragma warning(push, 0) #include "vk_mem_alloc.h" +#pragma warning(pop) namespace RAYX { VKAPI_ATTR VkBool32 VKAPI_CALL debugCallback(VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, VkDebugUtilsMessageTypeFlagsEXT messageType, From 136c5ed90957aadeaf0f373980d7184302e04049 Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Wed, 5 Apr 2023 14:27:34 +0200 Subject: [PATCH 05/19] target based warnings --- Intern/CMakeLists.txt | 28 ---------------------------- Intern/RayCore/CMakeLists.txt | 15 +++++++++++---- 2 files changed, 11 insertions(+), 32 deletions(-) diff --git a/Intern/CMakeLists.txt b/Intern/CMakeLists.txt index 4d79d45d0..6245deba0 100644 --- a/Intern/CMakeLists.txt +++ b/Intern/CMakeLists.txt @@ -3,34 +3,6 @@ cmake_minimum_required(VERSION 3.2 FATAL_ERROR) project(Intern) cmake_policy(SET CMP0054 NEW) -# Enable all warnings -if(MSVC) - message(STATUS "MSVC") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4") -else() - message(STATUS "GCC") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wpedantic") # -Wconversion -Wsign-conversion") -endif() - -if(WERROR STREQUAL "YES") - if(MSVC) - else() - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3 -Werror") # -O3 finds more errors! - endif() - - message(STATUS "Werror mode") -endif() - -if(VULKAN STREQUAL "NO") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D NO_VULKAN") - message(STATUS "Vulkan disabled") -endif() - -if(H5 STREQUAL "NO") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D NO_H5") - message(STATUS "H5 disabled") -endif() - # Release repo set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/bin/release) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/lib/release) diff --git a/Intern/RayCore/CMakeLists.txt b/Intern/RayCore/CMakeLists.txt index c55568fa2..9dd748d7e 100644 --- a/Intern/RayCore/CMakeLists.txt +++ b/Intern/RayCore/CMakeLists.txt @@ -4,14 +4,21 @@ cmake_minimum_required(VERSION 3.2 FATAL_ERROR) add_subdirectory(tests) # ------------------- +# ---- RayCore ---- project(RayCore) - - -# Source file globbing file(GLOB_RECURSE SOURCE ${RayCore_SOURCE_DIR}/src/*.cpp) - add_library(${PROJECT_NAME} SHARED ${SOURCE}) +# Enable all warnings +if(MSVC) + message(STATUS "MSVC") + target_compile_options(${PROJECT_NAME} PRIVATE /W4) # /WX) +else() + message(STATUS "GCC") + target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Wextra -pedantic -Werror) +endif() + + target_precompile_headers(${PROJECT_NAME} PUBLIC raycorePCH.h) set(CMAKE_PCH_INSTANTIATE_TEMPLATES ON) From 98f36877a7f85f50eab699aebc6c43f0ba0c583e Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Wed, 5 Apr 2023 14:36:32 +0200 Subject: [PATCH 06/19] Giving it another shot --- Intern/RayCore/CMakeLists.txt | 2 +- .../RayCore/src/VulkanEngine/Init/Instance.cpp | 16 +++++++++++++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/Intern/RayCore/CMakeLists.txt b/Intern/RayCore/CMakeLists.txt index 9dd748d7e..91676e600 100644 --- a/Intern/RayCore/CMakeLists.txt +++ b/Intern/RayCore/CMakeLists.txt @@ -63,7 +63,7 @@ endif() # Add Extern deps TODO(Jannis): the src include shouldn't be a SYSTEM include target_include_directories(${PROJECT_NAME} PUBLIC ${RayCore_SOURCE_DIR}/src - SYSTEM PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/glm/glm/ + PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/glm/glm/ PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/rapidxml-1.13/ PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/HighFive/include/ PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/VMA/include/ diff --git a/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp b/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp index bf29c2047..64a355559 100644 --- a/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp +++ b/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp @@ -3,9 +3,19 @@ #include "VulkanEngine/VulkanEngine.h" #define VMA_IMPLEMENTATION -#pragma warning(push, 0) -#include "vk_mem_alloc.h" -#pragma warning(pop) +// Disable all warning for VMA include +#ifdef _MSC_VER + #pragma warning(push, 0) + #include "vk_mem_alloc.h" + #pragma warning(pop) +#else + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wall" + #pragma GCC diagnostic ignored "-Wextra" + #pragma GCC diagnostic ignored "-Wpedantic" + #include "vk_mem_alloc.h" + #pragma GCC diagnostic pop +#endif namespace RAYX { VKAPI_ATTR VkBool32 VKAPI_CALL debugCallback(VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, VkDebugUtilsMessageTypeFlagsEXT messageType, From 43130c0b8461b9bc4900c7ef69d35700e9e5ec48 Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Wed, 5 Apr 2023 14:42:11 +0200 Subject: [PATCH 07/19] And another one --- Intern/RayCore/CMakeLists.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Intern/RayCore/CMakeLists.txt b/Intern/RayCore/CMakeLists.txt index 91676e600..dfb3cce51 100644 --- a/Intern/RayCore/CMakeLists.txt +++ b/Intern/RayCore/CMakeLists.txt @@ -63,10 +63,12 @@ endif() # Add Extern deps TODO(Jannis): the src include shouldn't be a SYSTEM include target_include_directories(${PROJECT_NAME} PUBLIC ${RayCore_SOURCE_DIR}/src - PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/glm/glm/ - PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/rapidxml-1.13/ - PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/HighFive/include/ - PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/VMA/include/ +) +target_include_directories(${PROJECT_NAME} PUBLIC + SYSTEM ${RayCore_SOURCE_DIR}/../../Extern/glm/glm/ + SYSTEM ${RayCore_SOURCE_DIR}/../../Extern/rapidxml-1.13/ + SYSTEM ${RayCore_SOURCE_DIR}/../../Extern/HighFive/include/ + SYSTEM ${RayCore_SOURCE_DIR}/../../Extern/VMA/include/ ) if(NOT VULKAN STREQUAL "NO") From fc706f9369b79c7a07d144a94a96af1fe66ff999 Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Wed, 5 Apr 2023 15:07:50 +0200 Subject: [PATCH 08/19] And another one --- Intern/RayCore/CMakeLists.txt | 15 +++++++-------- Intern/RayCore/src/VulkanEngine/Init/Instance.cpp | 14 +------------- 2 files changed, 8 insertions(+), 21 deletions(-) diff --git a/Intern/RayCore/CMakeLists.txt b/Intern/RayCore/CMakeLists.txt index dfb3cce51..7915e29e4 100644 --- a/Intern/RayCore/CMakeLists.txt +++ b/Intern/RayCore/CMakeLists.txt @@ -61,14 +61,13 @@ if(NOT H5 STREQUAL "NO") endif() # Add Extern deps TODO(Jannis): the src include shouldn't be a SYSTEM include -target_include_directories(${PROJECT_NAME} - PUBLIC ${RayCore_SOURCE_DIR}/src -) -target_include_directories(${PROJECT_NAME} PUBLIC - SYSTEM ${RayCore_SOURCE_DIR}/../../Extern/glm/glm/ - SYSTEM ${RayCore_SOURCE_DIR}/../../Extern/rapidxml-1.13/ - SYSTEM ${RayCore_SOURCE_DIR}/../../Extern/HighFive/include/ - SYSTEM ${RayCore_SOURCE_DIR}/../../Extern/VMA/include/ +target_include_directories(${PROJECT_NAME} PRIVATE ${RayCore_SOURCE_DIR}/src) +target_include_directories(${PROJECT_NAME} SYSTEM INTERFACE ${RayCore_SOURCE_DIR}/src) +target_include_directories(${PROJECT_NAME} SYSTEM PUBLIC + ${RayCore_SOURCE_DIR}/../../Extern/glm/glm/ + ${RayCore_SOURCE_DIR}/../../Extern/rapidxml-1.13/ + ${RayCore_SOURCE_DIR}/../../Extern/HighFive/include/ + ${RayCore_SOURCE_DIR}/../../Extern/VMA/include/ ) if(NOT VULKAN STREQUAL "NO") diff --git a/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp b/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp index 64a355559..af80a6a67 100644 --- a/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp +++ b/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp @@ -2,20 +2,8 @@ #include "VulkanEngine/VulkanEngine.h" #define VMA_IMPLEMENTATION +#include "vk_mem_alloc.h" -// Disable all warning for VMA include -#ifdef _MSC_VER - #pragma warning(push, 0) - #include "vk_mem_alloc.h" - #pragma warning(pop) -#else - #pragma GCC diagnostic push - #pragma GCC diagnostic ignored "-Wall" - #pragma GCC diagnostic ignored "-Wextra" - #pragma GCC diagnostic ignored "-Wpedantic" - #include "vk_mem_alloc.h" - #pragma GCC diagnostic pop -#endif namespace RAYX { VKAPI_ATTR VkBool32 VKAPI_CALL debugCallback(VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, VkDebugUtilsMessageTypeFlagsEXT messageType, From aeffceae5f89e65ebc7816970a9366bc69a8eb08 Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Wed, 5 Apr 2023 15:27:18 +0200 Subject: [PATCH 09/19] Comments and adding functionality back --- Intern/RayCore/CMakeLists.txt | 77 +++++++++++++++++++++++------------ 1 file changed, 51 insertions(+), 26 deletions(-) diff --git a/Intern/RayCore/CMakeLists.txt b/Intern/RayCore/CMakeLists.txt index 7915e29e4..124e1783d 100644 --- a/Intern/RayCore/CMakeLists.txt +++ b/Intern/RayCore/CMakeLists.txt @@ -4,25 +4,66 @@ cmake_minimum_required(VERSION 3.2 FATAL_ERROR) add_subdirectory(tests) # ------------------- -# ---- RayCore ---- + +# ---- Project ---- project(RayCore) file(GLOB_RECURSE SOURCE ${RayCore_SOURCE_DIR}/src/*.cpp) add_library(${PROJECT_NAME} SHARED ${SOURCE}) +# ----------------- + -# Enable all warnings +# ---- Warnings ---- if(MSVC) message(STATUS "MSVC") target_compile_options(${PROJECT_NAME} PRIVATE /W4) # /WX) else() message(STATUS "GCC") - target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Wextra -pedantic -Werror) + target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Wextra -pedantic) #-Werror) + + # Enable werror if requested (mostly used for CI) + if(WERROR STREQUAL "YES") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3 -Werror") # -O3 finds more errors! + message(STATUS "Werror mode") + endif() +endif() +# ------------------ + + +# ---- Disable Vulkan/H5 ---- +if(VULKAN STREQUAL "NO") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D NO_VULKAN") + message(STATUS "Vulkan disabled") +else() + find_package(Vulkan 1.3.216 REQUIRED) + target_link_libraries(${PROJECT_NAME} + PUBLIC Vulkan::Vulkan + ) +endif() +if(H5 STREQUAL "NO") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D NO_H5") + message(STATUS "H5 disabled") +else() + if(UNIX) + target_include_directories(${PROJECT_NAME} PUBLIC /usr/include/hdf5/serial) + target_link_directories(${PROJECT_NAME} PUBLIC /usr/lib/x86_64-linux-gnu/hdf5/serial) + target_link_libraries(${PROJECT_NAME} PUBLIC hdf5) + else() + find_package(HDF5 REQUIRED) + target_link_libraries(${PROJECT_NAME} + PUBLIC HDF5::HDF5 + ) + endif() endif() +# ------------------------- +# ---- PCH ---- target_precompile_headers(${PROJECT_NAME} PUBLIC raycorePCH.h) set(CMAKE_PCH_INSTANTIATE_TEMPLATES ON) +# ------------- + -# Set Compiler +# ---- Defines ---- if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") set(COMPILE_PLATFORM RAYX_PLATFORM_GCC) elseif(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") @@ -38,29 +79,10 @@ target_compile_definitions(${PROJECT_NAME} $<$:RAYX_DEBUG_MODE> $<$:RAYX_DEBUG_MODE> ) +# ----------------- -if(NOT VULKAN STREQUAL "NO") - find_package(Vulkan 1.3.216 REQUIRED) - target_link_libraries(${PROJECT_NAME} - PUBLIC Vulkan::Vulkan - ) -endif() - -# Link H5 Format -if(NOT H5 STREQUAL "NO") - if(UNIX) - target_include_directories(${PROJECT_NAME} PUBLIC /usr/include/hdf5/serial) - target_link_directories(${PROJECT_NAME} PUBLIC /usr/lib/x86_64-linux-gnu/hdf5/serial) - target_link_libraries(${PROJECT_NAME} PUBLIC hdf5) - else() - find_package(HDF5 REQUIRED) - target_link_libraries(${PROJECT_NAME} - PUBLIC HDF5::HDF5 - ) - endif() -endif() -# Add Extern deps TODO(Jannis): the src include shouldn't be a SYSTEM include +# ---- Dependencies ---- target_include_directories(${PROJECT_NAME} PRIVATE ${RayCore_SOURCE_DIR}/src) target_include_directories(${PROJECT_NAME} SYSTEM INTERFACE ${RayCore_SOURCE_DIR}/src) target_include_directories(${PROJECT_NAME} SYSTEM PUBLIC @@ -69,9 +91,11 @@ target_include_directories(${PROJECT_NAME} SYSTEM PUBLIC ${RayCore_SOURCE_DIR}/../../Extern/HighFive/include/ ${RayCore_SOURCE_DIR}/../../Extern/VMA/include/ ) +# ---------------------- + +# ---- Compile Shaders ---- if(NOT VULKAN STREQUAL "NO") - # Compile Shaders # The following code is used to always compile the shader. # This is most likely not an optimal solution, but it will work # until we find a better one. @@ -89,3 +113,4 @@ if(NOT VULKAN STREQUAL "NO") add_custom_target(COMPILE_SHADER ALL DEPENDS ${COMPILED_SHADER}) endif() +# ------------------------ From 62356580ddfa0450fbd8d9ff675a6504d483f3c6 Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Wed, 5 Apr 2023 15:44:34 +0200 Subject: [PATCH 10/19] Comments and let NO_VULKAN etc be inherited --- CMakeLists.txt | 14 +++++++++-- Intern/RayCore/CMakeLists.txt | 4 ++-- Intern/RayCore/tests/CMakeLists.txt | 37 ++++++++++------------------- 3 files changed, 26 insertions(+), 29 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d5f107858..4e0acfbbc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,17 +1,27 @@ cmake_minimum_required(VERSION 3.2 FATAL_ERROR) + +# ---- Project ---- project(RAYX) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) +# ----------------- + +# ---- Subdirectories ---- add_subdirectory(Intern) add_subdirectory(Extern) +# ------------------------ + +# ---- Options ---- option(WERROR "add -Werror option" "NO") # inactive per default option(VULKAN "include the VulkanTracer" "YES") # activated per default option(H5 "include the H5Writer" "YES") # active per default +# ------------------ + -# -------CodeCoverage------- +# ---- Code Coverage ---- option(BUILD_WITH_GCOV "Add Code Coverage to build" FALSE) set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/Extern/cmake) #set(BUILD_WITH_GCOV TRUE) @@ -28,4 +38,4 @@ if(CMAKE_COMPILER_IS_GNUCXX AND CMAKE_BUILD_TYPE STREQUAL "Debug" AND BUILD_WITH # setup_target_for_coverage_gcovr_html(NAME ${PROJECT_NAME}_coverage_gcovr_html # EXECUTABLE ${CMAKE_PROJECT_NAME}_tst) endif() -# --------------------------- +# ----------------------- diff --git a/Intern/RayCore/CMakeLists.txt b/Intern/RayCore/CMakeLists.txt index 124e1783d..a44688562 100644 --- a/Intern/RayCore/CMakeLists.txt +++ b/Intern/RayCore/CMakeLists.txt @@ -31,7 +31,7 @@ endif() # ---- Disable Vulkan/H5 ---- if(VULKAN STREQUAL "NO") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D NO_VULKAN") + target_compile_definitions(${PROJECT_NAME} PUBLIC NO_VULKAN) message(STATUS "Vulkan disabled") else() find_package(Vulkan 1.3.216 REQUIRED) @@ -40,7 +40,7 @@ else() ) endif() if(H5 STREQUAL "NO") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D NO_H5") + target_compile_definitions(${PROJECT_NAME} PUBLIC NO_H5) message(STATUS "H5 disabled") else() if(UNIX) diff --git a/Intern/RayCore/tests/CMakeLists.txt b/Intern/RayCore/tests/CMakeLists.txt index 12d3730d8..a0f47843a 100644 --- a/Intern/RayCore/tests/CMakeLists.txt +++ b/Intern/RayCore/tests/CMakeLists.txt @@ -1,46 +1,33 @@ cmake_minimum_required(VERSION 3.2 FATAL_ERROR) -project(RayTests) +# ---- Project ---- +project(RayTests) include(CTest) enable_testing() - set(BINARY ${CMAKE_PROJECT_NAME}_tst) - file(GLOB_RECURSE TEST_SOURCES LIST_DIRECTORIES false *.h *.cpp) set(SOURCES ${TEST_SOURCES}) add_executable(${BINARY} ${TEST_SOURCES}) add_test(NAME ${BINARY} COMMAND ${BINARY}) +# ----------------- + +# ---- PCH ---- target_precompile_headers(${BINARY} PRIVATE testsPCH.h) set(CMAKE_PCH_INSTANTIATE_TEMPLATES ON) +# ------------- + +# ---- Dependencies ---- target_link_libraries(${BINARY} PUBLIC RayCore gtest gmock) +# ---------------------- -#Clean Coverage Files + +# ---- Code Coverage ---- if(CMAKE_COMPILER_IS_GNUCXX AND CMAKE_BUILD_TYPE STREQUAL "Debug" AND BUILD_WITH_GCOV) FILE(GLOB_RECURSE GCNO_FILES ${CMAKE_BINARY_DIR}/*/*.gcno) FILE(GLOB_RECURSE GCDA_FILES ${CMAKE_BINARY_DIR}/*/*.gcda) set_property(TARGET ${BINARY} APPEND PROPERTY ADDITIONAL_CLEAN_FILES ${TARGET} ${GCNO_FILES} ${GCDA_FILES}) endif() - - -# TODO combine this with the Intern/CMakeFiles.txt, it does the same. -if(WERROR STREQUAL "YES") - if(MSVC) - else() - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3 -Werror") # -O3 finds more errors! - endif() - - message(STATUS "Werror mode") -endif() - -if(VULKAN STREQUAL "NO") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D NO_VULKAN") - message(STATUS "Vulkan disabled") -endif() - -if(H5 STREQUAL "NO") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D NO_H5") - message(STATUS "H5 disabled") -endif() +# ----------------------- \ No newline at end of file From 525c1e2b40dc0b71c0ad7d6dcbb5bb1955c29407 Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Wed, 5 Apr 2023 15:59:02 +0200 Subject: [PATCH 11/19] Comments and consistency --- Intern/CMakeLists.txt | 10 ++++++--- Intern/TerminalApp/CMakeLists.txt | 34 +++++++++++++++---------------- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/Intern/CMakeLists.txt b/Intern/CMakeLists.txt index 6245deba0..4dc92809f 100644 --- a/Intern/CMakeLists.txt +++ b/Intern/CMakeLists.txt @@ -1,18 +1,22 @@ cmake_minimum_required(VERSION 3.2 FATAL_ERROR) +# ---- Project ---- project(Intern) cmake_policy(SET CMP0054 NEW) +# ----------------- -# Release repo + +# ---- Build options ---- set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/bin/release) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/lib/release) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/lib/release) - -# Debug repo set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/bin/debug) set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/lib/debug) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/lib/debug) +# ----------------------- +# ---- Subdirectories ---- add_subdirectory(RayCore) add_subdirectory(TerminalApp) +# ------------------------ diff --git a/Intern/TerminalApp/CMakeLists.txt b/Intern/TerminalApp/CMakeLists.txt index 2de4fea04..0e1f8ca36 100644 --- a/Intern/TerminalApp/CMakeLists.txt +++ b/Intern/TerminalApp/CMakeLists.txt @@ -1,14 +1,15 @@ cmake_minimum_required(VERSION 3.2 FATAL_ERROR) + +# ---- Project ---- project(TerminalApp VERSION 0.5.0.0) add_executable(${PROJECT_NAME} main.cpp TerminalApp.cpp TerminalApp.h CommandParser.cpp) +# ------------------ -# GIT Versioning -message(STATUS "Resolving GIT Version...") -set(_build_version "unknown") +# ---- Git Info ---- +set(_build_version "unknown") find_package(Git) - if(GIT_FOUND) execute_process( COMMAND ${GIT_EXECUTABLE} rev-parse --short HEAD @@ -21,22 +22,19 @@ if(GIT_FOUND) else() message(STATUS "GIT not found") endif() - string(TIMESTAMP _time_stamp) - +# Config file for the project (e.g. git hash can be referenced in the code) configure_file(TerminalAppConfig.h.in TerminalAppConfig.h) +# ------------------ -# CLI11 (Command Parser) -# Ray X Core -# Python -target_link_libraries(${PROJECT_NAME} - PRIVATE CLI11::CLI11 - PRIVATE RayCore - PRIVATE ${PYTHON_LIBRARIES} +# ---- Dependencies ---- +target_link_libraries(${PROJECT_NAME} PRIVATE + CLI11::CLI11 + RayCore + ${PYTHON_LIBRARIES} ) - -target_include_directories(${PROJECT_NAME} - PRIVATE ${RayCore_SOURCE_DIR}/src - PRIVATE ${PROJECT_BINARY_DIR} -) \ No newline at end of file +target_include_directories(${PROJECT_NAME} PRIVATE + ${PROJECT_BINARY_DIR} +) +# ---------------------- \ No newline at end of file From ad1627fc3918633f08c58c851fb68a8d7d50c390 Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Wed, 5 Apr 2023 16:06:03 +0200 Subject: [PATCH 12/19] small addition for consistency --- Intern/RayCore/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Intern/RayCore/CMakeLists.txt b/Intern/RayCore/CMakeLists.txt index a44688562..fd9ad2e13 100644 --- a/Intern/RayCore/CMakeLists.txt +++ b/Intern/RayCore/CMakeLists.txt @@ -22,7 +22,7 @@ else() # Enable werror if requested (mostly used for CI) if(WERROR STREQUAL "YES") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3 -Werror") # -O3 finds more errors! + target_compile_options(${PROJECT_NAME} PRIVATE -O3 -Werror) message(STATUS "Werror mode") endif() endif() From f8b77b10b3c66e70eff57021713d82bdedf84c2f Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Wed, 5 Apr 2023 16:32:13 +0200 Subject: [PATCH 13/19] reduce msvc warning level and fix the rest --- Intern/RayCore/CMakeLists.txt | 2 +- Intern/RayCore/src/Tracer/CpuTracer.cpp | 2 +- Intern/RayCore/src/Tracer/Ray.h | 1 + Intern/RayCore/src/Tracer/VulkanTracer.cpp | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Intern/RayCore/CMakeLists.txt b/Intern/RayCore/CMakeLists.txt index fd9ad2e13..55e4bd084 100644 --- a/Intern/RayCore/CMakeLists.txt +++ b/Intern/RayCore/CMakeLists.txt @@ -15,7 +15,7 @@ add_library(${PROJECT_NAME} SHARED ${SOURCE}) # ---- Warnings ---- if(MSVC) message(STATUS "MSVC") - target_compile_options(${PROJECT_NAME} PRIVATE /W4) # /WX) + target_compile_options(${PROJECT_NAME} PRIVATE /W2 /wd4251) # /WX) else() message(STATUS "GCC") target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Wextra -pedantic) #-Werror) diff --git a/Intern/RayCore/src/Tracer/CpuTracer.cpp b/Intern/RayCore/src/Tracer/CpuTracer.cpp index b8600711c..f8243cef1 100644 --- a/Intern/RayCore/src/Tracer/CpuTracer.cpp +++ b/Intern/RayCore/src/Tracer/CpuTracer.cpp @@ -37,7 +37,7 @@ std::vector CpuTracer::traceRaw(const TraceRawConfig& cfg) { // init rayData, outputData CPU_TRACER::rayData.data = rayList; - CPU_TRACER::outputData.data.resize(rayList.size() * cfg.m_maxSnapshots); + CPU_TRACER::outputData.data.resize(rayList.size() * (size_t)cfg.m_maxSnapshots); // init elements for (auto e : cfg.m_elements) { diff --git a/Intern/RayCore/src/Tracer/Ray.h b/Intern/RayCore/src/Tracer/Ray.h index 4e2f3ef22..c96032843 100644 --- a/Intern/RayCore/src/Tracer/Ray.h +++ b/Intern/RayCore/src/Tracer/Ray.h @@ -1,6 +1,7 @@ #pragma once #pragma pack(16) +#define GLM_ENABLE_EXPERIMENTAL #include #include "Core.h" diff --git a/Intern/RayCore/src/Tracer/VulkanTracer.cpp b/Intern/RayCore/src/Tracer/VulkanTracer.cpp index 23bdbc23c..ae54d192c 100644 --- a/Intern/RayCore/src/Tracer/VulkanTracer.cpp +++ b/Intern/RayCore/src/Tracer/VulkanTracer.cpp @@ -56,7 +56,7 @@ std::vector VulkanTracer::traceRaw(const TraceRawConfig& cfg) { auto materialTables = cfg.m_materialTables; m_engine.createBufferWithData("ray-buffer", rayList); - m_engine.createBuffer("output-buffer", numberOfRays * sizeof(Ray) * cfg.m_maxSnapshots); + m_engine.createBuffer("output-buffer", numberOfRays * sizeof(Ray) * (size_t)cfg.m_maxSnapshots); m_engine.createBufferWithData("quadric-buffer", beamlineData); m_engine.createBuffer("xyznull-buffer", 100); m_engine.createBufferWithData("material-index-table", materialTables.indexTable); From ea8eae3818257b080d9309d5086cbb28c39e2026 Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Thu, 6 Apr 2023 10:41:39 +0200 Subject: [PATCH 14/19] Updating required CMake version and documentation --- CMakeLists.txt | 2 +- Intern/CMakeLists.txt | 2 +- Intern/RayCore/CMakeLists.txt | 2 +- Intern/RayCore/tests/CMakeLists.txt | 2 +- Intern/TerminalApp/CMakeLists.txt | 2 +- .../Developer/Introduction/01-How-to-Build.md | 3 +++ docs/src/res/vscode_ninja_config.png | Bin 0 -> 174051 bytes 7 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 docs/src/res/vscode_ninja_config.png diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e0acfbbc..706e9e785 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.2 FATAL_ERROR) +cmake_minimum_required(VERSION 3.15 FATAL_ERROR) # ---- Project ---- diff --git a/Intern/CMakeLists.txt b/Intern/CMakeLists.txt index 4dc92809f..4954945c7 100644 --- a/Intern/CMakeLists.txt +++ b/Intern/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.2 FATAL_ERROR) +cmake_minimum_required(VERSION 3.15 FATAL_ERROR) # ---- Project ---- project(Intern) diff --git a/Intern/RayCore/CMakeLists.txt b/Intern/RayCore/CMakeLists.txt index 55e4bd084..1c92e4ea9 100644 --- a/Intern/RayCore/CMakeLists.txt +++ b/Intern/RayCore/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.2 FATAL_ERROR) +cmake_minimum_required(VERSION 3.15 FATAL_ERROR) # ---- Add tests ---- add_subdirectory(tests) diff --git a/Intern/RayCore/tests/CMakeLists.txt b/Intern/RayCore/tests/CMakeLists.txt index a0f47843a..987bed904 100644 --- a/Intern/RayCore/tests/CMakeLists.txt +++ b/Intern/RayCore/tests/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.2 FATAL_ERROR) +cmake_minimum_required(VERSION 3.15 FATAL_ERROR) # ---- Project ---- project(RayTests) diff --git a/Intern/TerminalApp/CMakeLists.txt b/Intern/TerminalApp/CMakeLists.txt index 0e1f8ca36..5e9a1e31c 100644 --- a/Intern/TerminalApp/CMakeLists.txt +++ b/Intern/TerminalApp/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.2 FATAL_ERROR) +cmake_minimum_required(VERSION 3.15 FATAL_ERROR) # ---- Project ---- diff --git a/docs/src/Developer/Introduction/01-How-to-Build.md b/docs/src/Developer/Introduction/01-How-to-Build.md index 727601b72..c20fef9a4 100644 --- a/docs/src/Developer/Introduction/01-How-to-Build.md +++ b/docs/src/Developer/Introduction/01-How-to-Build.md @@ -25,6 +25,9 @@ Known Issues: - Also allow the CMake Extension to configure the project - Then you can click build in the bottom panel +You can also set a custom generator for cmake in the .vscode/settings.json file. Ninja is recommended for faster builds. In the following image you can see an example config for the generator in vscode. +![](../../res/vscode_ninja_config.png) + ### Manually - Open a terminal in the project folder - Run `cmake -S . -B build -G "Visual Studio 16 2019" -A x64 -DCMAKE_BUILD_TYPE=Release` (Replace with your Visual Studio version) diff --git a/docs/src/res/vscode_ninja_config.png b/docs/src/res/vscode_ninja_config.png new file mode 100644 index 0000000000000000000000000000000000000000..7e999ae88b79c25b53184da9935b1298302c8eec GIT binary patch literal 174051 zcmc$FWl&vRlP(UyC0Nkl?(S{}cXtWy?he775G=U6ySsaEcX#JP-udRs-1#v-?yZ_t zb?VeQd$Z}?-u?6nm6aBSgZ=^y1Ox;pE+!-o1Ox#90sCHivY{R`M$UQ__6 zYz+J0eFJ8~FU1c8R2c>HtOx$S|70VkW)B2}M*Q&s7MCYF2LgJ_6&K=HbkROu`J@Xw zj|X{fE#0_{Z->-_glw{$H8Yu2Feg_(Ra94i`?{DVEO#xtSd^_)il*eeBC%D#=-7wq z*Fzm6Mugl*^f3PON5rVH{h7$X-PK$B*iTk#V-ph-0~4>SRmQ<+pOAmAf_Mg{e4)Qq zF0w!IUt7f@dR2kH_PJmF7cZxX2MLWPK^2;s-rKGzrM6r9CYh;kJuHqLA`|?zx+ zV}lP4zTNHc%9DIbRAwRDn?{B=lAI_LAke<847S9CsU<=B_lnVrPu3N;(5Gnfs7D_V z6BUsl7*f^f9?U0}l$6AGnk)>*Tx_QM_BS7blnDHY31p`Zmb`OQYbY^I`OFxohU59! z*OVo|sil?kTuR*-78RZ40srQ8NC@;JsdKy+u}*dr4>P#DEJIs|oEClW**ZPbf0gAh|Fp;O*;Q_c8eNqfxOtJkV%ATtuhq zioJr6{3S1;Al(XG@$DBOkBSFqk&@Ik zhX1nI;o427mI2PQtb1@!0ZU*B@N7$`vz7@*ME-gv9p?lVkH zPv!1lx+!!dJGtZwQoH^nAt7<|CrbI735HN4nEEz|popbnB9_hBV@5`yiaE=$iFPDD z!k8U1nnNkyLqas?GGhtRS{K3K=g{mtzaDxaKR%~X)YD9wIG z)b&tZ+g$u#l)MY+3l&m&xfU>99aU6K{QEx+n_E%V{kD^>T$)#`Rd}$^h1CB%(hvNeWjN+#MGa-J3cZ){_F2z zzG5(`R-Ne+EqYdC9T+Ey$w&#i85S@}1z^+*v95$j@vqfxsM<4VYH@NFsz?4`+Jr`> z=5`PL`04<4Fhw#gH4Q7n7V?WOWeZV7Q(9*NcY0 zcH(!&Qs-N3WHaY)(~AoM5lK;?0LL*g0$|OQP|*7yf2D`@X76xJZ`H?5noSZPx8E0N zl!e0@g`=FfEh_vsoqA0l78@RjUUCnisbkRfb3j2U!TpV<1NZF{CBWXowU&fqzD6O* z{E$0kH3YyvK3iXLGGb{e4JIV?gk;J&CE)qrA89=PSg`$#u>Kyg(00cT>Y;^lamG&0 z9B6lU_deG|Y2@rM^4b9jb}|E^v^iA8iz9qs0n$#F=)bt%4^7Q#rvw#~km?6q-DWG` zsD!(=C90=rsjGjP%Lwf{kC1?gEfFFjf)k4r#k5Chn7LLMuI6N3&>sCuQb?%joqojN zwJ*y!*BbVK0MQyTds778creu;KQjerI%65j8UBl37dDBuYJkqJE{AzNJ^`jT7M~+( z`YnG+5FPtp-jgBV-Ps@sbr9)_DK)558l;htYyHSGO)`?&8Bv&}M*NEe)KLStM5xgs zj*ac+n{_kL9Kh89ot%2ofa{BCV*8J4oxeo#?(2>_kvqqRK=Rj$gZs)7#m2=%-J0SV znz!BJdCsLeFWQv9Y0t`O#r>rc1>bO&fX*I?a&xj?qVg|v7PM5=lDlh_2^Fgth1-h; zF(yaUN`?QnG&W)iRRSWCeBEoEUt;vNLQiH+7>f(ST7NrsLl z6wLo(4E!JBZ_3~-)&{0o`rmw-p&yJcaAk-#XC;*FY)s`4{oqL-A|@(ay$+AcUPwVs zbt+rZ{2!;Js9%Xi^Os~OW*4e@pzdovze_geA~caWfwHN{Ug(-=z4ni1NKmv;`3-?qxO-Fa@O$-{7r1S$Z2vLgT z6bR?=(pL(k(|$s=(cL9~mt`4+t3OICLmvklnnH_9FIs7~gu1L^5*DbXbbY)ECVf~^ zsnv|>3q7_o^CyE~2pTB(rdYOLG=`aoeGYY8GDbdB&9#wHVY*p|rFA*KMJmEu)3UVl36Nyd9#l$7}?dVB) zVE@?EL!yJiDA4YBdaQz%KTcM6M;_|4TGZmmHiqi^}us;zaUAcFyD(5rVpbQ{Q zdjitnge-ovAL*0hjY^TbNuXmNg9si%+3!Q8o@Wcb`a~=5LACNpqM4P zym=~Yd34HS+1gQ%;-GFyy7726(=81#i7G?0cG=M&dGO?C%@p#7t4(P^%WOYKSns%>~6V zUQ3}0!`@1^_`>60{_%&*aP?P1#LietsPHAW~Tonj&}M4(00e-CAsN~ z0<4L6o=~pV*jQlmA~ISdbjgJ22yz!Tk*M0$kGq6heeJ@VY;ZfIg17h`Bp5@me-2~p zY@4Jq?p(3$TZ4cX*%y_spu4w(yOLoUK$75F0fTOCe-`S26H`b#6WR)446E#H28*-B-Wve=OdUB9hL-j+* z;US&K-J#75kV{db9d&v-4yCzhW`pMJ-26iL+b4GySAnoIxVO|^?$uUvKq}h9Vej{U zcqNKLwhs5g?MOGN=LsQFQxH(PV&B&-h%B>vvk^^CIdX*+xO?1cgl4^tWM7F)A;5!K zilrl8`TSb%u~NIf2j%*NbFnRxaA`aq0Y2l2*0W0?#H#u^x)aSaSoTx9PhzQd2TEB)cuGmqM>Nn}`pR6N(_>Q(m2oLx0 zjVyaemkPcc>h-pGBUVH~027zup5sn!YC1lPp%dTjI)Rth z8#l8ofqFa!i|ij4su=rTYq=#{;Dk8q)b-3}c=h&))zUffw!M)cx;$vL9OPq(O>~dI ztvt1W#pUp&HWnrB2tJ>J-*5V$KzLlh1#+1ymmZZjJoq0|F|X)r*0!K;&!YumGkL# z>+E#(#O#Hav)CS{ygT$WuL4W~nKjGdMT4cl-T+ax_bft+T43F!3%p;z^fxCBj zq*;!wLYsBpDn`)g=2yEEyN8#|XaY}~&gDqgqPG+fH9Ru9T;&=0Q2~*k%TZzJE7Nuu zb-1Xdk49+V)Scj@N5Ig<3Z!3gySp?y<>!vEfGO4lK3znpt8NsauI^$w$-i)OW)!dr z5JoLd%%L-9Dn-z+k#SI)zL>ga-_oHor`(TIBJ zboOZt&`4{&MP)>L-0=)5S8;dZ!%vOtiQBpK)^VyK(W;!sztHx?Rn|ul!@&rtQe!s% z#c}w+9f%apRwYXRZj!R0u+Z8v%FK)Uyk*d~wH!PL|8SZAm;>i)y-$pqYGdRga06w9*$=Q4<{%jF)2KdLqoPkYYm|Aa`e>e1jm*OgVXzAjHQ( zVISc`qG;1v4H++dW(jTT^5r1SrXCiT7R{a12?sMah6mzPsN;xL05?I z;aW%4whOsc{fYj=l!(>03#;uig~VF1!vSum-lDji6p#`DGe@GfB$|WffL6p3Fo}Qw z#MI_ryBQ#tY{cj!Lk0;0zR014OMuIo3Z|oc9W{Jw75FZ(as>)RtL7m z#w-aVm4<|bp=?51!r`bDrk>Q*ytzR2`A=iJ7Y(iyh{evSy`Z&uMi0=JP85rj^*feB z#&BBb;^=!90SnUO=t3;TFTM2`DyEQw%-rfsqn@JrwzzGx}Nck@~sWim@)^ zyFh9}>t#Cku^fpMN6>usjKp`y`CGl;DV|WU5rS0_aq=o|o*Hs09IL}~I6@7(oY|B& z&~+v79qp571&ZS8p7H@w_vUN7CbthQ=eq{v^Yf$e$mBCN9OejO&`T}UegNxUa3 zhQ+e&(!2gpXtSQOg5xU_&=Ef~n;wrQx~e}N9zN_XWF;aTntJgsx^>sbrg%de60Hb` z-1m*>28AvGgstER=FpdrdYpt2MOvggwM5r1$cTO}cDGwwUmq+3Yh@hyq_;k9mL_3k zHr?)FqJ~h5>PK6gg_iwr)Zxo`U6~x~h8?UQ)6M_lP*MI{eO0bjb?e8&|aaQ<6$=6D9nzlr?l_IO2U6(Og8Yow6UjC*#}f5D3bx57c>=W5iP>%q<{ z#^M|*LRPL(lT`-adMQ&!FQnj;b2s4fwbkdN+pjkkJmZf28m%);Q%4A~hjmD2jHl3b$8d5g0~Dv1 zMm>s_5%rG+M~+9Koz!VN!8ZD18T?*uKdF%?tG1^L7rq$zRz)U;EYian)b!K+Nn|O6 zzrTC@c#Q@Za{05&Wf224U}kfd&r5M{ACbU>&h2*iTzUBOj$E_2kzw<$RC55a;96Id z{s_{VbEW<&prB|8&u0;C{;T6H5+@TTJqqLFeU`;8hpR((uGR3-k~dvbj8!{clf2D0 zC-m@7^NWd#a4O2o6E9cf81sE_O&W?#8*UJ1+qPWsTX|#OW;}oy^TLIj^Y=e`d)zxc zE=2W~vfWFlXiabF<{=#OKnQrWY-D%+)hGsu0bD-zR*v6&e>HC)cZOewMA+4SP&`av_-;2LBo$VMX5bza8!DgLC@u>Yh?jt!}cdZfKP0&mRd^GO2RljRS_zP zCOSAT?ySLangzd|85PZ!u+oYT(sN83noPLs0`d$!sc&wE#mX5a?;J1rbyzi1?vCba zNZsa!8`FA6LCq^R1fWw7+kIZ8;+w)!%!=H1+-++``MmH6&KVcU zobHJ!UOnoQk6GbjJ@CBW5{;NeKxlZnC>|_LC;@h2kI1j1xlX?|eUW zopl8X1qxCtHKjAJP=$|$O5qdLGlGy<){d>GtkXGv4-~!oI$eht`=^9cL} z_n1aUz<4X~*K{EpMQ0mS4NoM8TqqijKIyV?@>#j0rU!}g=F)7L+uwyNiq`c+G33fTyQ-&pc6&7F-vnp|{i5YBXjU}X1T83`q6+V5_qL39*8 z5YlhwS6k@)Nda>uE+7H>gSNJqJQ@zDj%!#!k>l5$Z;uTd69{Vt!3`m^*&fU%x`J>n zpYz83?UZEK;Mm-*sjeNWqLq%-uz6y96Qw+EAlwWS6DBXRWzG|aiAU1vmUVq27?e14 zpL6EdZ4X2xwQWE3E^&QC=kU>E#Qd1pD~r;W zrm-?kUi&1@S_uK`D@*5F)<+c^Hgs8buw*-eJ9GQ$GLL~jko`MGkLbL6jgMiQ%CMIt zV?vO4RjEt#GKSBz-OY)M3TV&utnVrZ5CAdW$(Okq9VF!kW{-P2qvQ@`DTpXOQ84{JzZX|X2Ix`< z4*2uH!Bd@!qtIp1luy5FVBHzg`S+AvH4Rf{`Q9%4*Bwt(sFuH2HFSuK@?h}hK$ksV z!?3IxHw1))?3yLB(<{Yv3Kc=MYyACR&hMPd7s2bLlpe zpgk*1ekr3)4*N}KA*$Mz6YoOKUXbvzj>6cYx)eG7A{ zP0ewPv$zx6D*@h1yZr;h%>|)T>ERv;ObQ(< zPl6pO>@Sp81ZNAMNrbJ0V__618)hvc(qDQzPI(H*)Kda*dvB``Pb^3|bKNN!O_&lP zzl@VJ4;n4U^$Sfis|e^vmTJc;*tsV6O@Z>f*Jl%7TPO1?407K6D&JTxn!{v|=&?L=^Nu!R+jmYNFm6pLBbgGSbS%P`N zi~G)JT3;;vbi}PCoBSwsyng4()t70jeX47pkMB3pv4=bYDiKe$dg-~JY&bNV zrfRNxHP)p2eI!WFN3qH?m+sFlwse4}E`ds3cHF}cuAqZPUJ;bmQo}H{mS^F1dy%Oj z-w>#gLVmzFYV^HFI6H%B?DCg#c1d^-|1;m2T~>ZF#=cfKJ4o`t6#9UEn5aDWC>TWP!@ zYSenMtr-t%qK(xAk|mctCS^{hi49( zihi9g+i94cVwo`@RgXT_j@Z$7>+Q^*-v$!>0nIEsUJeQYd+L{{bRDi}=k`@SQk@#% zoTn*WJ#S}daT4Qvh4}i}479JVB0j2LW9nj}nRV)7;dvGY@l1@}O5f+MKE|@zbiU#? zZJwU8h7;b(``!9qP~IC93|0Sbyks>9nfspJpO$hzX> z-n|zoVIzMz9IiVv4PkEuJ&NoZK&Uo!EiD*^sxA6%=CtVF)xWj98^PuxdUP{gu6uXr z4<&uYx94RkC*^4&x#rck(h~kT>Ck4(?l|X0MdFB*Gkc{NXM=Dqiu*h2ksu5KHr zga~|kL5_i^?H&AaOA5%7+te$|EQg9coAH-Myk>$1yr}IeCs#;`8t#z(7X~M?Vo#T_ zOd=i156D37K>4{d_Fngx$Kyz@eW1Ul96`mR;+^0D;y-iQLCoFAOoTIG@Fm5G!Rn@G>& zPRDJDAjv76gTFCvv)XfmLqlMry8Rs}nT{t>UKi=3mYymMmmIn1Y6Ieaq8#Jpbv6o% zGR-d+j9WGW`x6t8IaqArf_*oJoib+!lpC4D6Rm{_xU_&Dx@l~UJS3Nt=eD)|@JFFw zC+mc6^wRt?|*rdSBI%)|f603jDj zAUmz>b|Sjh33_m&g8f~Q#q5j?(->ZIHLkmnm$nXdS!4s+sv8e!jg zRpp`olRG$6NTBuk!PWz?$)8zN_0=5%mIGBLd+=Sxfx%YAI{ZJ^@)E&NvbigZJ}JXh z)%ir{{zqfLw*aiR?FVM+kb9aBU- z&WarrNB{_(W4uwD1eaE7u^v}sb$D%l=TGEfD1wnD2FVjzPlWy?uPW8_pIjx zG$K8ePnmP&YVE-4vonj3?}6)|#&%Y$eAeUQCniFD9`|Imc4T)PdI$+!Old6~CiuVG*}$v+bei!A#N;O~M3|1~Wc9`9 zq2N)n7t}g`uh97-uS0ib=Y|IQGtlvTC@4~bI&9(}Hzqe|V~U`R(-zJ)d6U30$voe- z!iGk6Ud&4w2qP1G^cjdFQ38zNNtO<%&MUPqtL+B5G$F7 z03M-76~C^`rOh33W(0erEt9~;<^?z)$&v3zj;dyB9GL1Me6&no&%Z>zQ1vH}he!ma zP@l^iAh2nG+R7m{xJgNDd=jg!5*_U;rQc7;0+Rp(EU4xZXj-sRpt6)HO+M_v!^Z!E z&1ocJfMz6q(89n|NA=b1@?8B7D(h z6iU&CCV%XMqcQYCBEs2r!YYoZ{?YFn95#YZ)MlPermNg(ey?EpVP^QoCi7!tMonL5ad{r;C~B&6sLE{^*qpv?Zz z#|NQ{wDR$Hun<1)X(d@FAx5w!p9P^%RHBrRAtEJHKw4m+N5VAHhIbJ+VknfC{gl&C%>TLmi&>z&kfucMT7rB{ zynei?ACpwW-M1ogl~mb5pl?ij5u*&Q_CHQlyjM3A>0cf~LWWgy+9x4y29x4O=-kvb zi{om0<6jt_h)c`+0L1%(&6^j}9kA%AO;P8|#maCb{186_L>(192oLo~foSNFn`abS zSEHEwlOm>P+(k;eUeW=MxT)3+kusMJ|DcUQ>hpt(Q3_c?Xkh_i-%>~z*y)OL-|x)W zuoasRu_IxE`xA?FzyN(bd5bckGjw zM48~=FqxE~gIFiU6hwPUQTou1KDx~tFY}Da==D?Yzib2JokVS*4<*OM^Cyl9g-Ty; z0$PTT$&+uwq%n}q3fN-CG3}MTlA_ok)R7PkxK3>Q)rDU5@5&Sd&WY;Liu#gCe3~_Ko z0JB1Kd&iF4+APm%L>1QMf$%ot@;}UoVo)+Rzb($SR+rtjEG0Wjx8lQ+2k!sVss!o( ze~e+d0s#C1njXIL5-Ckq^b(=-?X+t0-_?J7i1vMn8O3tlq`@*H42Rm!Vx#uf{zNKR z*OX3sm$KWGux>x8_2v`G;GqW(dwa;imFO?uG!AP+q@{kn?K{$#J#F=-tfTxZx-4<} z6AVl#Lq#SE6$hoge;yqI9rbR0e_kt{hO{#Ch|QvK23G6kvVlI$<&(P;1R?*U^8`7? z7y4cdx=$(dm>Cw8f+u@RznW^*lckva>hbu#NwD9y^I+p}Th3m3R5%68c*=a%jo`{% z<_J}ozhQDjDpwM9qh@q$%L!`=&rUikVtg>z*a(A27v`k@Hy`!hp|Ou$R({wQs)I{# zmIyN_lv>5|5GjnOMXuB{4%D#XvhEO9Qs8-Xde^cGP!frX9!Ns3H2<>3WnLM!dZ;bZ z65(%Oo3`w}&>^%V6s14Wllg>17|>a4ushOF=AY{5UM#`s6^@yQE$~26DlGo8o)5C| zTn0|im@?s!e;k4F;2QpQbe%!hRenwi@vl()B1D52 z296V7ixTLrGUFy3u&xk7LkiDUIW1;g|h_}`tpdB!v?o) zE&Y4j+N*Eps+k@zz3L^CMAr&gW=nMfhm7J7ao;*ksw_`GTHFVsV@QU*p7t);@V?q7 zY!B9DQTQy$vhK=4zTf6zyvzl#po3P24V}J3>Sq>_((|(~rDPQ}vGvHN*VlLg4;z)le~=J5SHf zS!MlFT@s@msuTR%gdP>r)9!j4Ymlz0*L1_04SO|p8B$M1k01SX1?dp-tlOPmyLu{N zwOzrS6I$FVburAjjkRYEI9!~9 zS16FU`UKXHn{V3A2_j}%BdgnO8NyS5f@+V?r+2bqCjS|g6fq8lupaN;F58K*bEW2a zu(~s7Eu?jZW4W>hTlvl>p0RcfTGSO~1R`E63*{#GE1{8HOXbR(ex9&_8)eudhKO2LB*V zHPII=UN>+?gyQN&Y>Mt?U%aMvE~wU&?Uu8z00{j7+Kof(38yKD5f5pcWabm(L|9K4 zUTq~~Zf%{AT0wIPMvBT;SyNBjse}V&81MGIV1^-r)=g&_(fYyWXsU6wta(;%Jqv|W zX8AF_)6B_x!Bt{F&9ei$vGcYIy^v6lQV2a@M(str=ejg|f-jBnv(X5$BMI%;6we54 zN9L8>&-0CFSE#XZda}%Tl&kYY(x1^&+XhtWi}2E$F3vHL&XER*`$*nE)eth>=?tys zH&q+w^eV$}rLz8wNrFokyt)=gC2u@onX?svo%L9{2> zui6)6vINJ!(aBn264cZZMU{DAXZZt&t$F384&jYG38Vzt zMpN9_#RwxXq)D5<8f5JoIO&l8a+e|E^KkF_IxS4abBk?1o$KK;LT8byJ-yQodo7=+ z)v#3Yukr1| z)(|Gnpk!oqz2+pGW%o5#rz)ToKC?cG-Ut6<}~0F?^{r> z+q9^QcBwH}8lCc)xp^*aP^J?<2yx$M^ZPVg5m27`{LNa0xZuX(ov1T`=Ob7sGICe$w^eb#^4d<}HKjc!9+?oYp_~$c$IUdHnila&qzB zOO{BzJU@6PXmYyiMVW`6SVVcHm3TT;Sk2V3`MOOMDG|3giuIX{E-R@P!K0@dL3Dg0 zR$kzGdl;GS0rjX0gYMT9HK4<=a}CO%<4-te)}UO_;v>WHG{>3|FRbzJ zsCRH?W8TlRhU$fyL;QH*+KHXnxpRu_+MTE1^R0Z~2CB=GM}r|BiH0_PyfU$BXMM_F zfcix;%0zLhVwbMxvr#sZ$Gz{okkyannYPy%$(KuNA(8xCk1{>?w=@IZ&WFY}H%^^5 z?YHYyP%WB`(4rYt_fNy4mq*=?#FCFKSVcTiC&!^767e?JFI#w;B@fsTOq2udoK4uW zwc?CSmYc*ou(X>44988XFgOq_{y)`?>5P`w32#@1E8KBy9hg~gBZRJ!)&vypvV!zV zVqD~~K^bS<${1VVmfc7;y4I%JK%{hN_Um%5Od1_tUBa$Jug?9A-Q~_t>BQX5-s3&D zOEeVZQ|zSV{_zlIa+M)zS)z4B94Ctq~e9{}LhPebzVUeXIA@h|w@#2#0=> zFMGPy*GcWIKbWCWVHP&$BsH9!myc58y=fZO>;TkG`@(4d#2KY6kgCNzL*E)+${$lv zJc&K7JYTKTU#IsP%UkK;?^5cyfa8H>Jf2Yt(V7uJ3uC zy@ytV=~&XVxBkq0alD(7yp7=v@`zgA@$eYvp6z@aga=nig1v^Q*$jEf%MAjRdbJdL zea_?j=<>R`C$dh+OQ? zqdGbyExVnCE+T3WcVjOfa8ip6UMD1;GqX$${ySQ|ljBCVoH1pbMNsOKYHi_u$kQHp z=C!IuykqR=33Tlv2Q|he+#>M8DdlI)kgn*#`2v{#oqu+sje!Vq~~r zlk-#e(OFCF?nU-?-Kf-hp?=%)?A!>hKSNTgGw(BA_w05o`>EGQq|FtX_&uG_udg== zwx6d6D_@q%&tLlNq3TP6@*$?-59#+FRb0`FM?3%>8;AJ<#yI;-5T0oL$U zb*4i+##R7g3obB=xR{jM~@kl)- zJYN4I`RGO4#hg)C`^bLZB$VWf67T zsujL0+5ha;B+@up99EL&pqP09%L#8z$s=L@(j%n$C%WEY(|byHQ$w8oin7%nJr^Tw zRlhj&I%^Ag8k8oOe48BdkQfjLn6+na1UVcy`;BE4!oTq2NUcw3gsZ&w?j%xp_pbC; ze&h9{uj*y5N@M!chI`K0l#H*-`q$NB+Lj@SCr=)rwed$7^lOhh=;6g;lpyE3fZkHj z`{2<}9}Oc|zs}hA0}YZnVPPAMV3ON>gBT+mQ1?-35uZ-9!j|C%@Uq`WL9oajJz=Wh zi2&^l=9y0oc$MEmtatHGzPn&A=N||ZvoErsrsc;A7T1j?5NLMcJ<%97hM*ZFUC(oU zeHy<@zKM#x+2@5y(}b?y+u>}DWSzZ`wF)fO@~*{*a9&D?kKB7FrC{dLDm*c3WAZ@( zYRCzX`7>lx51_r)V=|{sKGtp1+MXxg-mn7HR%ad);a`_>oC_ctZ)Ee2=m$K$UG2PezPE zt_P{}1EbdGObC@Bw=LnyG^;iV7@l$EL-q+Q+DD1@A6M$>2pdm#n{Hu9_m6~*8EY63 zKm0v+)&UErpil}$EvMOuQY6lt zr?Rg+x7|_BZyL%962_CI(duvYTkrMfygo59?G@d>O8)REHIGh)0Uig zjR@Xna)Mu})w2`aPL$hB&1)2^8fq^pI9Ni5rqDrym=sKyQVhhbSNPtu?%Yi;e#m~( z_vCn+Tnbn$Ha?GIiEfnP>a6G?7GmS_-Qub?v^DLpYbC{rrQLiCM6^wmR#O z0fMflF0yPHstBBA_+{g>TRSeIPu$dzixXBrx;969L(T~c4jaZe2T-Ue{AP$U;?{OM zq>W0A+rb)w6!S|_QP1>|=gZBqkPL6I6er=%%i+?ff@yB1-bq*+&T=j~M=;@6Gc~z) z+}uwXs=+8QNU%@WrSnI`ADLFivi01)HV_Jo5t}9)+Di={H~A=FXFo*}{kD zELfeMs^R%fu|syfDe=s6thjaRm~@cV!{e;e;yj}B%i7=cBOPTsjX=LW_PHEBa~ zk@`7R{%SzXjsLXqgs^GR#6}9aC5({PR=u2J;DYYyTaK}esuNX(x?VQzw%pa2vMit7 zkpuTVGrTnnFlUdtOQzF}a(jp!E2EbN#ihpDW$xByjfRVJu3c_MC*B_E<5_=G*HARQ zvs1E0I1Ro3+=3ws&E{TcQ<~-QK5ys@BLp;x-ravA*xdyd{ZU?#VL<>Sl8=GozG0^l zf)EFp%Vp8)Y6HPrzM&dugudn|*zD#{y4d#$8~sYufUMh$-j!HCr*c3kl@mH-rmQ}q z39#<|6{bduKE%rk1zJ<~#{GyOL|SU@EzHE?m18BtNzGPFe#*4 z)_N{racX@4cw0;7etHv7}r_|={bgVtl~d_&CYOO>--Z2rcET5}vl1;IOffI^AD zUhy%oo{sJt@!kX3_RtHxVJ=ndaoRaS&oZaAg&)wWw|r$xvd4!Yl?gN056g?VUPfYd z6mY$;U2BYhB77|z>KX=&n`i@D*%jLzcp5q}qej7e)nDVDoRaY_Mm0Cp_>Biz3~P-f z8p-XGfF+1z64HmE)VfZ6V!!-4s)~nPUVlXUdsa3;{KE-+_U=jhF{6ljg?49 zrWnInaT-n$y6kl5$wT#;wVUrx2j*hiZBXfW%F19VfactM6#@<>4Z>izGu9i1gq1+I zYTc4pm!V`_c4Ps(2Imcw1S4BGRLbbu?a6XRq1>nZ`I>vqEQ;69oUP_2_0_AW8md2* zdvB)Y-CN8%NdJv*_O~ZOmogKP*y4uL~Egr%7X+ zes51q$pp&ntLbRHGM#?|^S*F+c~FRI%8)?l9Ap$Hh|Qv!K0o|kskN*ZgXp(Yowxa7 z8dgDZ&a&yy$23vHXG@c$f-dfi&njD0C-|W0Wy8)!;Tx|gHN3oy(ephsF%AWK3ZGnh zrM#JQPk&}X{P(o=&{@}c0YLz8EhsVQ8nsQP5Mn26wfeN~oUZL|=4sYbNtRf97VJ5V zACZ2u{!@ysq_5as$J-?r0@_(s_n z$=0cmfCtV{((n#vqHpXk15C0Hh>D>m7KKVYtnbyDx9{HP z-eWm=d{n9Ad7XQNOIA_^Mr3nQ>r*oRq%?edxMk_|?rL;Vi_hc>lMF|C_i`X`$dm^Z z`dcsF-fYVa<-Msh5d2GV0$Mx7sJ+9WH~4x%8Oi9#Ol067z8g?epcFpdW>V8)Mzpu9m4&DEL6z+!3vYomNu7dNn8`bnE*I0|^ zTTTk!-;sApC({twT8ysy{N7?Jp8a;qFW`5rL#di|hZD42t0>=C`-vUA|#-fZ!d z^mFF(&dYBVIf(W#dL{A+txHh{P-6BPNirxDNTeSl(*HT#H9T`8%&g+#ngM#aXI6$8 z&y~LoH!i@NU`Tams}g=BS7(t(&wnWl2HJDaE~x%1k`NL1vyZUONJow1S3A0Fx{{-t zz7f-G`j%4GAwp!*w^x)np0qHfJv=xDqOqe*vrGlqCST+gnyU{lT(B=8RzU>LAGX%L zucQLhPf>89P~9=eKCHm3QfW8xB;x^tf<&iQe}k|EAz_$Uz`Abfpctih>8qw{r`os( z&t8F(0_bL-t>@=n!TK_*zAh}~pVVWyU|-ZR8Oyb@_{iNhaSghA3%%+o=K!u3n&`hK z47h3IzvP8EKl;?&&hpWceYov!wj9Ra*~gY#Qw^yEOc7KVJz`@^)d?-h2~JdWI1`77 z&;L+UPcQj-Qv)vX`4;XlJC=zX%R%}v5GIw&P7}AF$<#CL;)^00eERtrCrGui2T>a2 zX+;Cxccu2{2=l|s%dt)R8={`R-38m|B9LVvKzfhM@+k4Q*km#*W{pk}dxI5Wbs5R* z(}M$fv6z(jm(bTs)OgY}>Xr;8h~qKx2i`+Bs22UeP)-vFK_PUF zEXir5Br@-Ydf+Kq$^tp7E+_)D)UYAxJ6nUANp_*pYFPXy9{k5_uxz9 z_bTS~5OK*?|4vTnF4ZOtPo?{`7U}*8ZkR{tzSHQwmdrmVsn92A1w!xeT0HsjJMHl_ zVdY&C^ACgjc;{k#-tb)0$y^mX0{PxTT}scWc;syN&tw;U9d{W2m|r6D`?+w@Z|6!o zm)T2fC8|{z-e_c=5poeT&AW4nW-2l=qA+p#Tj#La?$atK43yyJdvCtep?l|d87cjX zRFkEqaLnbsB@oZe-?E6O+}_foY4+gA7=Wt1phjAlEIB>!4@18y2SDS{F;xpovb`p^ zV&`MhekGv5oRW`5L@$ri$4`$ze>?3r)If{+ELG1ZoaMdLL_TbOurlw`Gklk)fQa|g zQ_YY6t+mqsZGe3LFxBr0CfMK@FDWK^%>c<8lakj91!gR_qwwf+_&3XzpF{C7@S~F= z;V-tYpZ(sC7Q{?XjZgQDPB4|{zxHOX>LXgnkmKQew?D-HZMC{;7Zz3hK9X~~wZr)< zvK~q|V10e^Ng}4~`iRYzMBB@(U2k`s<0i;yh8%l_Q^XZH5-iXV0Y&k~FNvwqorfsu zg#tf~Z*U;*;pDQ=MiTp{A*Q|1` z7{8zfd1`b&k@nFeDIB=l2zdJtQtfNDjp4!U^K@<#r{5fQ@RKtXmH5W;|Au&=O?ElfVnfZ&dk(B#dW52Fin-BR5{1T$Hl z6t@KZI;p|S9$F+2Ilc;4N}9oZ2O&$OsRh=&S{S_=(lz4mQeIEv^U7*+BnRbKn6IK1DveS#F^*|%KwRpgmY33qGjxk?U$ z%NXfab1>I`u*OAmts3eKKIZmH6GF3Drq{3j<-1-9@>B?C9jrmWbnhLcBQL2v)6G?) zbw~QL4K(R=={o7IV~-ZxD2q18lmQ|o!S_6Ao9P~?q8b4cqy(rXzXz=HBM1I##QC=s zzt+oSR38&_BgFfPh~bKZ#Ie5VEnBCXFJNN4Vcbi#Q(sz|K%QTER~|6Ho-uunIEq)e zt00b;w5rS~moUbeD?rNLA|AZg#(12%Ut}$G(4k6kdoMS>(pYHAS@pDFEAeVn(zrLh@plpn)H+vq z5zlK><-h`P_C|Xg^eUWYqMlXsC|4yHrZKS}kNXpf9OWpH29uWxzxxm+T5Hj-Sc34o z>v*&+v|&3Bwq;A6R%CsV#T^jgwPK~4p89QNkCFo+agy4fY(*otO4Lbsg5%!A*DMdL z`#bRk!3sX2g#=IBcHx=f>uF^wo60C^{kM|0bt6f3G9yUpj?hU*==`fq znIp!V1m9Yn<4wT8F@ZAmr1d=V!tXE7NOkUTdvAH9;+XNS!OuEEOgdiS`QhF~*kn_k za5#C~kfWW3MK{}2)!YerzL`wav>|BbdWJ+n^%bH#*{=6E<~oMuQa+1HbqDNG4i{r7 zbfueOJkJu>cshT6hH*f6VwjV8fa_c_(O+5eGW((T&zQ^#V<8(?PfSL>ekc@yi&Izp zow^YYHuuBlT^Y^nWd{d~KwA_JaT8DFjraU+aSS8Ad^5sqM+jXD0m+dZOs^6lSL*+8 z_0>UjG|Ssb@Zb>KEx1E)NP-{S-GjTky9al7JGi@hkf6ccorBAF$ot-VfA#erTeVe( zWoKrmr{(FVqXwGxXsIv)`|MRO6WsFJB%x+Xj*!yE9;96^@}~C7kqEO~+z<;HFgRSt z^-k0f9kqnY0?0K5(EZMTbamJYNFJY+{q~e4zhTgPicU{dMN36tBnhs{ujg~#O_SM@!HSAT6WO1>_UmdLJe38s!%@KAqAYN`!F`FijB!5Z_&(43LB@6c#bVF* zaC>@K_0x9xj>o67gPxY=yBA%AZL9h=&kfTuE>Xf<=^|*@S00oN#0R}q-Eln5U}2({ z(AqE2zo^NRU=Q*#e2?of~pdg zd{S;FV**#xTuq**A1u(O{8^;WOAn~MiC8Ag?Va21USJ*O*nml<1hs0@FC_&jZ(-=l z4-Tuw{DE0Ls57F!=_*xJV_@&B-p{R+MaOJuix7;XTjv@MA9tc2alk4RY*E2XlY{TE zG|uu4CYiDK%Q|Vlfz9IFqG1I*I#jIk;cr)yuN4Wf32S;7*BMs?16cRA>1}^=(=tg% zs;{R!svguyz9{FUh1LX6w(!ixV7$gCr^T?!${_s*jRAyyzpHxY&7{TsL**)+&%&6t zXd22dL2J%XM<%cvPNT zKuP#C`AaaluCTj+@co^iYhiv#Gh_q^e;c|OusfXnN_TJ0$gmtGnrot^Ylid~w(0^j z=Wr;_p+vc5f~ItSjXZf2wBh?!u8U-j<;-?8iN}Y_W4O8;FC47bkIL$^!}buo_;cBl-o{eUrTen{*3b zMRkM(KA0x2?jLMM%O0!sZbj?br$hu)oD>+eqTZLWmJa~8|abg=oZ;6b~1;; z#lZ2SN(iMw=VhSMn@CW#&LxlZ=UyZh7+`?Z;OpiGd%@Xk1@$E(@mI;?A(x@X`vhFx z@cEW`QP+x2GORhzz%yisiH-}@2NPVIgQbZDd)0cnca&DbG;5*D9RfAvn#c%UBkkXs zY$?U9xC)N_1s?dRls5fQAY2-9->8&JYR@GNK3WGhr zdZ*R=W+TK`(FDgYt88;yo;iXthS?~AxL+fi4ke#Zy8 z_{LgVW8Ie+ayEPxjNYS?K;cgf7qnv!w^5jMiM>YR(Vpc9ZoaW-w3l|!)>SL}RVtvHh z;X{=bMyVQ`=m!pp+KW5K#A$;;NBcWaC^}GjZJ+V zx?8a+SQ%&t?PcO8)}|j4%xT#e33uYq`lnuY-?YoBDFo00PO?3`n>+dF!S=HqTXQAn zgIT=`Cg0M%5l&S*)8>aHy~76-*CouIwyEZc(fx8`ACI@`$Zf;sP>scm2K$p;X`{eW zsQWJ6x5xX za3(4I1)L3Gljh}am{^znN{~OWZF1WD)Pv@8xhf?)KMv6PspU3i2$|Ut`ALFu##9mJ zSK@TbE8qw)nr_Y^N`M7lK+0FWxf!QxX7rKAT%tbzQ+P*+Ufii3tt9ikcjQGwlDvn* z4r*JI%*YING(1^pw>GtMzOeqvtqRj&O)~Q!N7hX5J7;@WIm}R%i~e|?I|l6$o<-fQ zJ8l!RJi6(>8)%RD;=SMt%SO-Ck~pD2_yNH`>fh?`x|F| zR$dHM915koR3{8kr^tgXUF49O5`*k=iAP^f^;bA@uqmG9_AdeKbY64sZRdfT^PQ)9 zmdQ292`BVS*{!tN=7+#NkmEdKWukd&)R{=|7W~09?;dwgo@Guwp4BZFdT{m4V_>CV zf>ZDzVnQOT+MjA{!(&Lvfq2)8g@E?ghe*+}f$|r2SrM%tyhRr)_MMyN)Eo|*#&=I@ zI|%Ky&+u%SjxadD@oG;sotg2YAn_-u<3IHn8jYGlT|2=cpA2v2Tyj#7TO5x32pt_y zRfJCa&R>?Q5J6QNS@V;e^tgjgR$XDB?!$*&lbI11GVPNK)CDRTwvrv=}Ye z+}$6AW{2i3L>JDwO5i|$D^7PnSA0q+X#K>rT9sBGFUo0weH;c<0|~Wh`{TgXfs6ck zhnZurCloYU=9lRcmdMi@o%idIjoR41;_4{7L_WPXnQ83q^GEyqN+)Sen#GL?`#g?n`_2L%& z;+v;|rxkbwgnPl-2`u}ehGs^e*YGiiXJ&-NKNnC?5MR30u|Xa4@oiX?R7S<3kuq#O zKpeOvl!c~R&86&2zZR6BnM?yGuE{AcQVwa2M^x-e0-MP!C&?j(LP7^c@vM#2GTpu) zY#|vD3#zY{6;W#2Ru9$i7Lgx@=Ub~K#yb$$cSQ9Zx5|6kD851v0dn7 znGx9e+k6gF4nD880%t~HBc^HQrS&*zEXj{<5EC|0y#%>^4yKWYsNot<2aZZqYNnq( zug*ud;TMvKGxC%Tnb%K}P|pYVnwl=`)9;_@pDt`YuN}V3*8=Y}`&9ghao0HrjE{*`mFeuX^hu)B6NwIarLW1d^|0T&a0cv_<`?Up9UbL=RH+0##Mri@p|@eyufU4RwKW z{Gn;H&mYT-wFj6kM89pSFCvu*6bA-5snZ+B0ymD}8kwcIq0i}q&536E@;ZB>=gw9; zxfAQ1l}GEvk2-+ zu8HL7iCdwdwqg<8s0U`D7kDH<-#rd;OqG|{P~lBYia*wN))G|SECfg$9$#5UcIEmy zZe%M_Qtwkb;Nt}RmiIb0X1#d6QeQC@KSDlehQpghmMwpctLrfEnx_Ouh)Mpf-N;le zECht3p`ZN7?UTqn{SgL+h4{&b&OtC4wAS@)|`gm9`JIruocMnHV;aXTk z92%|I7*XOgjEnfF*u9DS6?&Q(lq7M-$V~WJ(dJ)yDq$%7C3&Tl#o`)RMk%g=di!(d zap)n@T>e4ocp-yfzU;LPezn51s3?;F_r{^y;h>f7&=ccRrlIR)36%#?1s&dt8T<7` z)mY7w982)^tHq9ATjjL7CVvCc(+B`mcciK!l63>yJ(sV69`kN>Wi~VC_Orc9WWn;X``F$>+Ea+eE0>O|nZHM5V?&t!GqQsE% z7`Ei|6)PpoJvDf5$>c zcQGpJxNe+hoRJ=T-TY&SB#!q*c}2XhvjotdgsV8EBT60~X0j+-l4Q$=F<+Ocg&-l^ z^rZe}f4)s~4s;pQw+2zYa>^)HsaMn~&CY1PQ(y49B0kn4S=-@2YD7IRJ*|_@dlZtt zs4PMVibyG^ofR2Ptl!Yj@pc^+zqMuF2RgLn+t=Chv?)sHWGu(t4JtwwEuTAeid4;N z6mfez3lUJSMD;$?jS^P8D(eU={7@?tZ?2f=dlSX)u}_S+Z+6!dI+eNiy*kHh)*<*y zqm2{?Jg-VVTY<5W{H3V8(!1GddS>*>I%U=JGpX`*bJCjS zzIdu9#_R7!&A9k^CV%(E@|}A%0Rcy$>6y6IkkuW@KL_tmHHRaV_ti2*(aeYC5O(6G zG(^dzg!+2lORJ59|M&I9r#nsmn$a@k2e;)Og0gU_LyhK{m+>J>^VTH7+gfE^E7D+f zP(ZTtEhrYbGepq+*1)>K0awrLnWuY@Fdqb_N$xuZ!X^VWPwTtViE`gdcxIIYrGr789_ zPHks>TN&$&<+xq@sYXe07|XT3MlQQbJDt*U1AL3q_DpnJ@9E_5?|J z!mFROF;-+nWHQDS!=m8PkEf-+x1ehnor+%87L2>pm~f%qnRCVGcOaBIct}c0 z-$trDoZdhiw0Pt{j-1uXbdH@*i0v@618_yHXe4lFXv~hHDc_IB zsDqv`l6Fv%CvLc|-N~2f&Coc5&Ay!n+ce|3E9dGc%C}^oPa{nIjHEo)5h;@=wf%m@ z8+#+%Y}X3=+==TN3!+0*;A`dL9%>@cSj$uVAp3R&;sEQY-R*9ai&kn__q>3n4N@>V5&dZDbpCBhJN}_pSjj01*GhAk zD~#k%272%3z_4PY()Kn4e9Huob(Xsity)7?(1JqIq~$LN{GlWEnfyhpm}`0trxqe6 zs0!|z-k%%KlZQKtoEKl;)V#Wr8#E$|Peg<{_VXfUK*2#JWsyZzyF=5CW53?KR$)G^ z28V%>U$FvCrE__1Ew8|l^{}BQMBz2O>Ll2;A$<9)eYyZ`4eTuGB>b!K<1!WX{V0@; zHj934-b1v^C~x{wPIKUi;8H=cjQS~%7bCyn}S{gsqFK#D}6J60SJNocShMz z%LNuLVhAGEEd}xB5)yswkJW1Ok~J*|2O+~X$NaHE(b_5alLcAmZebQ?G|*md_}1l! z-Ju$Q=PC)3JELjSJDB{@dJQK~7ZWnqV~C(*#Br|nt|(>KYy0c@eUwDXQWKUVeDDij zcy-)M@3n40D!*P*?zSV#EhC7*4;dM;)#t(^yLHK#2xw%#pa@zq!P8AFS-S7vpYcKV6i ztjo`CoFi&{`nH!{uI)#SDWx7d58hvRlR${XEZCIaXL)0*jRyefLzjHuLb8z*@yi+K z8LAI|E8SQlvYRcLexwY6`mKGz1s)9J-7CGxT!#kb2&2mcy|q@p!?YdWkuQ$sLV$0P z`#rluO>xxdt4@yyICF;Hh9fLh&QcPKS&E>~ABah@V~O}@OZ8pWk~WTijOj=Wpal2U z7Ht+u%I}P^ur}j&MNJF4+1+c z!&o>Nks}ydv&}_XAA4lZ1`lAV%~cS`H5A#qAih?^KJH;Nh;vQV*HZL;8?J65f1ieTFk+GM;_iBQZcmX)KMa^PBmTC^SxFh zZ-AYx9NaekHwd76j zO81=kg3)v2cWy|)(0T&LRgcdVo(Jo`5jjc;oBDAPg1?v6XLoW(nR5`J=^wD-Gz|Ih z0O@t+ssbSMwwevODpDTjrw&hC=q6Jw5)q35+Kf4acJ8t)C^ru#G>PDu`Fm-xe9)tV zcC=%2=IzKsr^FE+`$86Gn4!O$ZrBq6hPuH3kmx)tjax!UC_X&)H=@ctCbqzt#5MaL z>ueeqQ0qh_Ar*D=vFsy=kvY%Vk=z2ucn0(HV^pT1y(>IYJ82_RO0$i4M{KbS_*hi@ zlRv24i-AfNqgbw8qSz4snWZH}w~bi?EmN`J> zlDz$SpE(#IdtN4z3>u3=TW9c3v>xxNg5LCJ2v0Qd9vr0LlO;`75{ag+MXmRu>Nwkt za#9ao8lQb%d3z8bbtEu`OEo38#D3)Oqpf|4eQ$(({OZo2d;}lAKVe}>9~bjZqe+Bfh~HO&XFISul(GuQu)Ux zq9?nL3}6aiQ)*X;HjO_y@^K6vPN#(4eodV0CHh7q{${!aoH8HOSF%6Pi=vN%s2{jjdv-ok!+IEMk@2-#7 zIXzXhlEocXC>m<9yUoNgQ|GlD0Q8e&^teT@$^J5H3O9S8sjYKRu2xgx1jE_Caalkq zdM$3YQM-`|hskH<;17mow_RrKb$ zB;ypX_yK#sQS}&3eMiECnt&Jf9HTvYL*f^0*=3B5MV9>jZ%Nl%z40Pv?|dixz_>=V zf0=;bV3--0ptt1@d#Sp;%LjC(P$%Xs#1T_yi$KZ_&3vD z#z07$gJ4B6%p>Mkf~!~X!CNwLot zElTe(hqEB{z2?#l&zI)5Fs@q4btzZx{P_ocTz(4+`t~{Mr#c3q3h}@8Jed9U0uL`B zToj^eV=o1J4v2fqB@GV1V|?(ZDA4j?!i>%epsxn*KbY|}r4;YK`+@;{CYvvLe4MyNv~dbFzGY z^9T^AWOh`lLt#|hUw`)<@{NtIeyO2vkWYk;yx&zgjshG1nv$TP#+w`<4{!#&QEyL-C$A(=Ntefn8bQx-EBiYEmb!LBW_v# zGnH@Gg4meWjhX-zBB?GgGQ_FBoQo*Wzm;3Y^*2(y>s%2H`9# zvye^iIHFRY)9G@5JH8)dNvJ7U0|F$4ta`f#`B0>cuR{k;cs8YYdb{PQ|HsHd6B(vA z_Qrhn(bxBNGe76|Nc2T|@B>Rc$H~{>nJhy0aI_O$@$ewWS)B2-7GrtERbGm#3pODHlTT4GsHlfmEUN zaey$PEGe#VYN2E2Q%xOub3KGWd3(;U?e$Xzy2Ww@N)Yr*X5;(rDv`%u6)~MoeE*w! z8A`C~4h^VXsxE?r0zfhsx0-0xnBIDEA-Xoh7kZyJ;ImDA*{y$($Ng#e)de0No?Qin z1I2+3x8%Tf;bl$DWD^_d1bUs_+B{!-%~xhnvM)Wb(_pc(bE~Mt;9{yqwQZrkL!C8? z<}OzpjKp??F!HKb{WB+{T0{0-O<9aE!#%s59>v{)ng8yX()BfQJi}Km>+E|1utH9& zqDTfb5b0~FvsGbhUnNxDXcKkK-#IXHG!6Vh{hAZ}ykV zrHyDYrdsm*!4(;cw4e=xl#t()(R%YS3Qa~UAI>BnQBG(}W-lwyxFcOLGI;517?0!Y zDp2wlRLe#`4j1x6OSxb$Dl@`d@fcUro?{~gYHT&<5b4PpxYx@g@p9|+)TvCZl6(lx z2RUW5`C)?@sxIn>?=I^fs^rT4yO&WDls^wEtPLMi4cTpKvWp7a{!QA2Tg3q?h09*P zpYPCygf$l>ZkL-cDWBh#1&@O@-W928E?;J-iCV6y5}GXsu66>=$o=M}?k#>>?d3=H zHg0(9hguA1u%-}4{cE=OuNw%FFSlmFva%|~*Hh>HOU&c-#-)Og$Qzrb8%nGmmYkN> zJ<|s%K1?k(;lj2MoKOHIDJ8YT4GsaBnc9Z-cCu3H4=br4JXn1A(^}FGUX1Gn@aYqe z@o%CuaL}r0s5m_X|0)6hWVGkkfCy4hyuHIv&DhAu$2oZx_3Z5#=&>asJGg{(s;`=~-O5Si0o52= zu=$bxeCqC{_*XX{c)I~Ufw_1_!u|>6|A$y(8!iqrSR>d;cSqn`lLIAE=z)An2^39} zqEPsr_P3(M1YL#Xi*2x$8!86VUyOux$BOniKf&AgNf50u%V z)rBvA22#7>KGo3w<6tDsEYexn+L%JrDeh%LitBaXUC*lqG;^(AZ+|YN&hnC#klp>NZXPD@FYnaot1=%K}R$b4$F^FG}PC543(O0zMme8zs4% zKDf1WYF>d>#HljJ-YElHhvaBQH+)vyU%lkbB8KHJ#w>1}qpUJX=vTTge{3mUd%g;d zTOf-r4}>}M_pd(#E@sxS48D6(fc=7eLws3ay29!3)TdBq`RxY=CBB~qW4(R&n7dq*zc<_90Y5CF zc1}be)Afhnjtx}OK>p<&$C9No`(xqO_)Y7Of%E+hr+g&HvG77`ueEv zeuDoC)t0}+n`{ODx_*_41fMoLBh_)-!f+FzG0bdEVx(-bDC(MTzK-s~PMLcHO>>29 zu$!b-gB?6$>3_j8V4VOdfq*QW9Fm}_98feGchSchGo_YNYJh1{8^oSP=l#8pj8}f# zEs=Tv@99579uS%EQtwjN5ezSq!qI5YimC6w`~ubnT>q}ZzIXy*___H=@!&6Znml~( z74!q9z=RI3V2kk@XVG{}Ux7k`fMMO3m)=c0u864%;!jyoibw5WJ^?thW|D$_(&I_f zHr4|s4;>X9iBzX#*AL;yfm_WmzwF`RW|VyhzT_k24Bc*cG+w^@9kKd32#@6KZG z48r7{A8?qn{Laxw+$Y;Q&R|5Dp4T+QVvq1bNun~c&+vy2Jf_L));RVbB_U=k*zv<< z@IVAddJwdp%pcrKG{<*$wHNrGSPVX9p0Oe9A|@!-4i>pMzZl_1P2vuTZ1wS~-id=m zEC(!YW0yOFEIY@$X!%x^=Wf067`D@De|FII8w2mpgu@aGz3i3R9(SWfYa?Sb&FXIVlgaPfwrvQO%t&RB_q;&cjD0O{7 z=Z#KTYK02s%t~dy*61A4R%ZcJBcnnpa|IFloDbo!16>!)cY@1t^eUKx#`FGJDK%oY zM8TLDfv=qhK7mk)6W6^yye%Og*Di>blft^f>5&*LeG&n-zj7J%HtTrqcmWyny%hj8 ziwxou4J71o%E0u2?8-9(ONQJ1BG2t;nWGX`TvFA`f|q@niEj4lLW4lf0eaN#*l=tY zxH}IE$Ga0a!TG#t+vz+*uqK|AF-M56gIspcCPSss||BP`&w@(RdKNh8!U}8v8OU*&1p2yK^AzNZ(e2exy(d zc{zEW-rSrBmCp5~<(Gtu$HQUl>;p_mK}ZR09tP{jI#usG zev4UWT)+{d7Awv(-;67Gwjm6_>`83hvF-k6#ea{mA5@k}E$ayW6tRy@Zg;TXH+^f^ z({hC|o-?XhRps57RQ0jNjr}HHMj`QIFE*=mj;V`~zO^6Wly z6o2iGg;8Phe4_WjrQe~KWG*-7iZDC)$aru>fR5^0;Vry%mF;kU;LdS&$;n);e8W)6 zkRcL`b6YLp3EOGRLm6?n?kBP{Rv>_PYx^XRFlX6}eB1qUmk*SuRA|T+CO3*~^FNRW z5_h9XFPM& zvYFE0T@K%5K>(53e3cf>lBf?^Z1G8(-g<+qZloK8jA56QH9JI|_c9gPFDCM+KkZA0rV#e;t<0 zuO%@m+h5^i36)kZnawQsnU9~0lTu&$y(y*FpJp{ee%Tqshm;?>8EA{{$lp&U;w5`A z$o&dGZRCHIgNv^_UiZzqLZzZk4(6<8)`W}i!mk~e?Vf0F+t}N9H&}yoUb+z}XK_=1&f-}hnid?9{ixes5(gK*}zL)t5f1*|AuQ1IbG)RH_$L=vygI2k)@nVCg zN73-M#|XnGTy4{N7Dl=y4@cJ72BApt?{1xb^`_y)e-#fWvECdbLT5UJB68sZ3{Fnr z@OxEEz4}ks8a03kwMFkB@FLQ=aCnT6`rx&HO}8XWIGt<+ zq5_wFQLXXN`1Hy*IJ)3R+lBcFvR<(L1d&g-CNFuCy>w`3jKf`@OEGCeewNkYEwm^c zG>lZ%;=SxuFv6;1dQ~>*CAOG6gqCMeP-KMkaoBae!v?t_BAiz#8r3kv)HpC2=}t4N z7gd(gGHTQ*kiqKRZktqsYya~ZL82l?rJ+0QGlm4bbtCn0%4KM_$4>d9^a|SsDrM_~ zzp6%Zw`SfQtJlMJR(|ZdsYaBmS#sCvZ7E1XWkAYSF&`sX!H?p~AaYITcox8mKGP{q zuYiix*o(p@+auJ~m^9=nl6j>@Ki5j4Ib0^Q%HS~scJhg_C4p<$Sa|=*)rDj-mB`K8 z2zN~E`{15RH@_4+7cWCwE*VKp)SU}LtcBUcSpO&_d-#Ks-hoED6C!4`8}^=T#J~p| zhKl?BYZ_{V+#x5$=)k;h7PClLM~2TzDzFw;S()V_*|lp;W?V-~BsmqskCB2F;zuto zggWPN^I(p#3UVFWZZdI8zCqD}Q+blk4IU`Pj>`$!SQ$Fu@QdJR3q_lFsLd;ybfzD^ z#UXPOI_@q%f(!$$-nIl60+oCr^i%5h7YnE0K^ntFww~goWstYm^aEl6C~yUp3ryN4 zq{#NKy}>7Ux}~fNDP&9y&V*d6ipQNvE%E2S1vIjc57N{Q=;Ds1PYYIhk z&i8CGH(X+q1q1o};7n;6=WJ-NGq#sk+(WeN&c5%S+r>!O=^}B+I1&L1i@Q-tP?@L9 zhH8T_+9K-GC}KIC>XtVS0f~k&s z3&0M}aH7{OCU6LORz1&*0xJY&4Su|hj+d8xi$Q4f1%h2ds3zYXxn7+pxo2f+*@YuE z{P_K8iIxp2#?Z5SN_VWj+$v^j^)q}y@ew%ex$`d=C?pdb+2-+&RI?JC=38EwfesBm zJa#3Hf64$Iyjq=9E9&*mm`T45?i_Ah>5w_VG?WJv@xHZ0q{mU|!`*@bIx4q0K@@HA z>G{0Ne6tpPg3An22D(`H3kh~WLOXaG5?&hR)2PvNLSkl-;pW9pMtxcT42|PIpA^c$ z)V!^@m)-JP>X*fxoH{Jv@oFoTF9DACvc7Iircl*qL)zaA;YWDCMD;cqN0FxVvwJC~@4vVI z1S!m6FtRDvP=3hwY@+a9a$FwF5jfLr;Z1Jl5~(jCPcmy_ckW{1T91uF-rK{RaiwaP zVSi-%8Ksr&_ZwwnQ` zwp#~#P-SNc12Jjtw2yPyFqId-bzqMBG1EU#Z-N^wfftr#R@2&0XU5^9zH0l48!GLnux*cJ zd=5T%fG!c6K2H10CzRU)J3OqGL~#Hw#>;S6jqdy?e3TU$$mtaHsUEp(er>{H!|pyQ zt2!@$gUNKE2u9=&%{@kzRNvKBlEHK6C~PMsfgp8Y#!@iGmGSyLbDBL4_UjiU!o;~| zM$vro60sI9{7%Ui?204`v8yl1m-nO8E+d6A=k-1nF_UZ)E5Vqng#uHo%Mm{(7NzLXd)&c@0~FZE`$Nzm!L! z-}r8G+v>Cq{aDY6NLgrb6KKt#DZT#`5I!zA*MbYlOnv&(w6T6}Rwa*FqF?2x%+vxM z+D6U)+JwYkqM@u!8vaq_jG0+At+LF*o-S<#0fM%;mZlnc#fXylt9_?x^bNsEmD5*t z&coJ&bj)z{GREwq#Neh1%mdaFGH(xcnG87sbvu-o_lJ_&+%CkPCQ23W&&VzYcxN50AFq06Ts_r6U6HOUHBNd?`h;}a0#TZ042zt)WAVrr zJ6EUbdl3NjwWs>6LrJ8*hb+&KO71Y50@Q*){l#p;WK!?Jz`5k=BbYY*8U7`(4#;2c zHTYrk*n8z&;Q5l-yxg-L9;e(~*a@t{0DOabox@vkAL~N8hf@Tvid$^K|1y`C(Gb z4;4fWZ3ePNv#I4gM_ThRJ$iyFLn8u6gkL*GohcAc5A5If>5%EHjeT#B%$ju#!!o@Z zR9|czBS1={nWUQwP@i_dlaykF&9$e*Mnk!ik*c>`NfiGCZhx`}w^o@F`FpK?a0nBr zxB`Um<3v4y*{DZ0J#&>hsal&(R$~tbdfW}`H8ZmE8VXP|WZ-E41AweG!)7~Tty2OM z-xWLPjiQlJozP1NVQE6aC2uF0c(MTX&@^(k<6sj#o>a)%uC5>*=qfS6*+D)ifbnQ- zkA!zJl7co!%LEPyC4P4!tFOAD&r+y3w#^yjwSux+M(;+_|wI zAIjc(niM-2WP=&xir?w`Rf$3Z$P*s;V056ty`cbz+FX1EXi?8W)mc(q0XorGyt=VY zFgzU|L|KyQJ_UPWUrg5U>f;a+gJuA}_G%LOM(1^Z+1B4&Bf$TcKfD}**45wxD@uRo zj4b(v$Y9+$yht14(Fi{%$>~$wvtwlD+YqRywKU&v9f^m2gGb+jpuQ{M+ur7|0}B#` z6;s*$|6vFR8z(;~jo5|8-Nq-aCMC;}phjj+eO>Ve@+#(<=)oa~>#bx85m~zdI`RHU zdY!HItmxi?BgiqA3eU8|MBVrTPs){M!%KsS*R39cJfH_r}&`nA;PN}g7# zKsddHRwKl@6P~Ea))JotvQl=7$Zl(dZ|E!4-=J5paf>!)ZiVW0N;ia^( zqnzDcdzDKHn(+Jx(l~U(jasLt0fmraESg`%&GM zPQm>HngeuG<&9=oNUJ}ia*W!)t;l6`V%DNJ0cc)HaA;rVqCSl(n6rK=D5W_~`-!wMg9ATfsV5+_JIgsJx*7 z7J8c+Y6BpLtUh*w$@C#kGBKpP^y;^pVm%sZf)xg-w7j%VT&m_;c!kwFl-dTJug!%k zQ$;e2*Crc&$#H2m0FEzClqmLV-Vj93RdC-h9jBB^X%9P>XP`Dz$hNyeMaHVLm@gyY zl4&jHYqX7JIe$-oi=4xU`I~!jO$g`b2Z&NLDH*Z>150??~ z3a6ib*^dnPyxNz@xb|~yDN6TtZp6I4A}FM{b1Tl-NOy26>f+5p1PcaPXEmkmg~_`w zPrT^8f8HA2DXLc+hN8x&CsITU9Vh$7z}uPVfBe;zm};#%g_W^U_zWre zo!AKR0oPr_J49fREw}cGQN3A_)U#%JBW z36kRLOXF#;xj@TZ&6pP%ZnXNej`p`On3yXr11F2>-Nx z18<&Kuuh5b`nL_SqKk!^JfO)b-RGX{x{hfWjp{ys$QR91Xk934A>YCEPfIM02wRPh z{~Y@YYo?Lf2a4NR)~csvL02k)?iPq6%WZi%1zG)Egm+%X)WasJ-x!W zsWo<%yF8)f_J=t`SnS6=HI4gD7aR44%+%_+5Y`n-!5|0J-Xu5 zWH6GeVA5hTZEs|ShOeieN3iJukW*0e_wHQI1qFCasNZ7U7@|*K&RSzWH&QWw9&NFl zoc+kz`Pi42h-W)!d!Fsk=2qt$t<01=9iF9I-brs|krK-BfY2ShX4xml{M8Nf76qL_ zs$6p;-VoB65AAe46;`r|r<*!hH56N;zoZTAPE2`An0ku&vcoNrQPo(D+1YyJHz-cK zJDktWSfcWU7Z$IX9UPI-&@wBBVrL1}(M{b*Qm{5_ z05@eTeUpsptvn-!Q@xrUOy`D2 z#tVSgYwpFTYsmhOw-d~cAZk^V|MR-y;OameC29XwbCVAg2?X&9at^H&vDpWS53LP7+CIR-x7jdMe__ADBV4xUGdcWLkTqIF~;2&2wH==Aa* zs%}l%sD=Wua2=}NFxQ`ZR)S59?w;8ZH3 z=q&Q@)&so%?}v#B&i4(F4bY-eQG@ zL4OT{k1U&m1Qz!$B08%6rE>QgGEtomtm^NmA-cPtM@|Wt^ zlY70^@v&uO3m@O(o_S-1xX_BuSWV%AwDMKvW+H0?U)^;KG&PdSAKf`n>;)cid91|F z1|M-8EcQRblM}NMzbh(59MrJ7Vs?(J(-Dw(RMOTGZK_3P6?i~`F(`PxG>vKi^|^ih zuKLc2uo>n$#kc;sJ)s4>pDARQ3K%%A{*z3|Joy?5i2N_E(={qx^zWwU&MemzH{rwo=4W(Y9XjBEl&~%M>{gRwuo#=ia^9xtk(n zjuhM(Dt#YXvJQh+^+Ui5h=gAq4k7)5-EBW&1qc^3#%JV9$f~^VNL0_MKx2jf1R*g` zBsy7;cG-2DxYItF@92DevVuE%jd*3t0m<{ly6Zv9w+WSUd`U&D03%T+T0(Z_XaD310x{pmAyx^g~6$;0A{Tn31SdBxa3+;?D2##Lg zk0j48C^K}et`Qs$8lPI7uV3*0jF3oWcLc^2#!Aw~yu))mjp>1WE9c%H9{j&g(S}1# z%wOM~B3SVHj5OTx4Q(p6Po4)MHYk|dbkU#M321VqX+A@rR4+(j0B&i1PWVH0-3_4T zh(u+bNd+T8CwYnY1}V-h0=EnidH`?Mw&px8nc$z*klpD0rmCKfL=(QB9Pm1AOq!@mPDsd`}x*DMIJ;4nsl9eA{0 zHTt(cT5bcUFpFGJqBGEY{>1eY6?1(+t+hP@?lL-K{rND7EU9YGz%1T))=_Aq8;7Wt zaXq`Z+ea(HMPCe2E9$FjA++~s#x+#MNZhwbF&eFy{=wm=l3eXH(4a? zxPbM;`lK{Z>XvYSZ3ZrNuT)?9tTzb$;t>BI#l#o+mbj1WhS{0fpTLuCQE2izsH8Fc z>>sVGRi|m9`ymBGx#RPTu-Q2HtT!+c4qGcq*Tm|*Uvw2~i z4hJ??>(4N$7VrG_|9_OdV{oQj)Au`>iH(VE+qP}np4hf+P0WeyOgOP^+vYwq*LC0Z zRPFcKyWaKT{E$lJ$aySuukK&}TjIUCF316kk?Epi3)-r!Dlyph@jHsQgj?ZLaiRdg z)gUCd>xoa@X{&xoUe4>AMn7|J_YIZ_!p>WRmbug6`%oFT=q7?;g*y|_tN1J9E2NZH z7zn0+z}p5HOM_pP(^?AQV#jz(&Y@Z5etnW(TSPi@IwTt15-z$V zZsAJ6-5C^m$Sr!?SCZq*;P;zcV0*{llyt8?AQ=%}Tgk7Y&89v#)A)9BpMQNoHP4@z zHAYvYnFA|G@y*$6M`01r25)q8z5?WUxwOuOhVZg6{V&-{kvp1ImS;!U#ij7=QAJ_! zxQ=ncIYCY=rpq5mbbR}GEo3^AJ(F^dFF-{4N@|70teiv_)d^Eb7TpDt`@mUUahC~^ zgqzs@G4d`Oj#y66!%H@LxqC`vL-(mTGQ=7-XDwgl^HMn=XYWsZgwKXu#`4y5FO(51 zBe58cqsoXkn*fD(!QclvD!#Z&DsF4||nj2)%m_>)awan}j2$ zhNSYR15cvbbf-Cnsw+EX)(?nEn{+SlS?;-+L3A7Bxr&rT)w&-QzRni&NxuLs5r&37 z&DQ%>YxTDqIH5o4e;eE(eFKv;TBz~p=K+p*2c^=Qa{B?Mq=5oOmy_9>We&)SsMjB&D`Ft$#J@ zipPnl{)paE;MxQf^m^m8t~H8{d?Y0or~WRN$DEyvDwtFZ>OrJVV;z*Hx3q_PtqNAi zM5i*}j7+UrKmM{@RuBG4zrz4JoCTk{bC4EAR}r6mxE&zp$-#m(b0PU;-^fOn5A^DQ z&e$&36aOi15Nz8>thW&52wW^-jKcSlK94pzkKK{p(nDXRQ$9mrN4ANQd?DL6U+owe zR*Thy5XM`i)z>X)fP2z?phYM0_5;^P?4m|e(sa~o1al7F?-#F5KW7LI!RRnn4qR2V zYbX{)Qgb=NcMjXB zusE`S+^~Q}V_5{Fb}-YAL#K-4*)cm}Ovdf~D}pe~<4Nz%g#spC#d&Y~dh32>aM*e# zUv0FzPzR{xm5>Y{)eG~m#9Ctb?(NnOb*|gnXnj)SZB5sxBPQHT=J3kv@c@LYoOBQO znzAkiXCBCRm>VP)2n+(DkWTN%gS`<^iO~-4(yo$@fAZn*zC+0{d6s?<#*;CB~w&KuEc?{mC0KmVpejW|pYss4z}HhI`x*Ur{ogo-m>_(K?=l@)Y6 z9v)Z?>7zdYA<-G?jhI&dL&F%kLnnVpQme9 zz$CAcE(fNu+Vf@F^^acuuU^&bV#Kw8r{el9=`XRw8?xC_- z+Hd#RqU6Z58RFEIY*19CGs(}ZR?CQnnX}@{9Jbxbfpv9%Fmk2w2AAz!Z6r$9nK(!} z)$)v0V|4c7>ZM0G1qkcsX%0zw(;#ovaxo{5_5hJ&`OhrzKZlo1D}`f_|20m(Wat?Z zZW5Cnio1gWvT4TV^oh3Z>t}k}$sxDAGFy*f0gE3qJg0FfC4!;cDdDRMPeL>ZJ)~$k z9lHgfOxF?gK8oqnzZ7vYd=GZ{!i@HByDb5r?k^_vk>pUmuqfhvp3NYnk(Zx((zrx4 z_rF8%lZR)8)XDo(o3Goqdt9^M&sM;Rj`;}4S1)2i?FI&ySx|ZM;&4LF;Xgy>?_B)^v?;;bipGv;D;uPyPP=$C zyx?;2WE%!LUl=ZH(eD>)Q^Q}bg)G=RE^JOM{q03bcV0yxw|y8ssOt$n=&csCs;h!; zeFF8U|A%k%vc@l{WP4^3LMjXJeE(pWzSap;NyC(#SujC*{;-(D?XjnvP1CoOqG+U4 z7HOEop`C@3sGO3_Q1brm10HK5Ei^ z}>=knsB4Ki(s6Db6=!YJaKrqR4y)55`vR(Q4Dh!tW#iEsBk04 zV!#OV5{hd9>-LLKu<@t|Q|fVgb)#%`%P`*fqcqyYRDEsb)$y{~4IUWM9zR8ZrzyE4f7qB1Ky zaReto70H*QWk**Q*wBC#_pZ6Hze&;b$km_z{=YDozCX?o9cwLV_Jae1-&`N zNEGF22rFtozP!vE1V*T?%dg*qG10xg(bFdfBpu%TZ}j@po)sS#2BT)XrAA3#k+OY& zL{%pSM<@BrD^UGKd4iE!$G)sR5>7v&yYF;8Rh#bsFd3V|6oA;B}&e3DI0&?=(G+4Bdz9wdaHo1TWf*pDOg-yla!8VBJ0?G^bbQLYt5V$aQ=xc zEoE`u6e#4+2i##cny}zm=z%cYyNxIjJmI2_=Ja{2yR-A;>f9Z5^~z8)1^Nd#%$CHC z?NxE+Wtj*ZW2lsU+9L)GbHQ>r4iJ>Wk&f>>YjiWZ(Nbsz)NgnwW6#g6hWcW?gWhjF zG~gCgaYba`ba50iphzTFFqXUW9i9J%)IR8}kv zy+dl$=Xb9%3a;+zd>nW7GLr`e04%_o1mLK*3u!x#7~CUBW!lJ>Abk6-#LkXJOZB%b z#Hg~&UNNo$m_=)9Y+`LF#_AUZp``WN?-IRqvtuH(r9CU(+IX`$Ho z)?B9$Bqi>s=R6YQ-pR?eWcB76+bF7&M5k*5oPe}^D?uGFZv;AO5j40GX0X~5A(v9U zBE>N<);6M$2`Cnw!{XiCfv1<}LTk_kvP>w}sh;CCiLgC6k0NCHB3^sOm0WyIrK^H7 zd;D=0JsgaKN--ZLO)vL{1GKD_44>B2uMzjUlSwH3t&YjgxJ`dIvfnKU+fu`^;8N$M zEEyAUH>R*mh~R*j_BUb14scKt`GiOP^+-9wpvw$~Y=GN1&yb)O2BziM6F*JaT%aRm zh={!O)R0CzZgU-2`p>y6PR|fun^anF^^N2AikP42Q+a0tP26%`98{Qf`{r3O3uQ#5 zZ-N~HgbugmNs3Uh5}`<|axJr`X0uF~j6U-{c@L;1up1?}h+1z`K3j02L`N&JG1(9* zZ&BM4Yc|L?ho#Py3c2!4z5y`y)*_(aQQo$-d%Lsx(ch{Oo^Zrq;S zeGOpCUkeIK#*&Nq4W5msY``|Y)OB(F?IK$OYpnwsp9BmK<_LQkd=+N=OFuuuueep@ znZzoRxZ%e5q)w!QqIb47qMD;`uqzP0JT%-3aTJH3% zfKz5D=VNmS{qf?%qvlU&%W9Duh!Bs5B- zM&Jc>Jd1PuKm?NZ2nY?3g+o%(s^2hpvNm0!F6tU# z4KT9XDakCUJTx_P*OxWYufp{5GN?FVZx+gCG=yFM@Mblr)gNQA7^RgY2j9Zm>+x0M zCnn}IMV5%n3)?}jS>4rwb8RiiGu4&Hkt4#`pm>O`^@lny){tN^pHwwK{}vK7RyR^P zL!dy-^P$B`v-H?Lm8?|TtXgll5W^{|lrM#~KROi_kvAX&c)6OpM#YZ85JxxX6+X4to}WJo2Jnr7#H`$}Shk)?luHd~^Vh?F5@L%9GF!$FJQVaxkcS zRY#sjj7(Z>+qRrZ*Y1-wp`8$VWe0I_%rP#4-LvFqhYx7SERU2XTMdj&Utbkr zrrUF+YiMB^Q6IY6`}hP$U+No$3VPesY2e~`qprnML{&2MoqNHV+wiYN)kJ4d6jBK@ zb#a_T7PpBkhvT4JBGo7`+2>Q0=gVm%LoQviA3@|_*NKuk5q8X&G&0;7hNc=$S!Q8T zd$XeR-}S$kXkI|^%&BFl+$;9CzwZg;w_r4>a)d??Ch4aXxm9IXD|)5ZG<*;JQm8uU zQbM^;aWLBOIFdf#&oOsh0835Tjl|fuMfJR^0aSS6=4lH26yftwaA12p8b89@5p+op zXE=@oN9Z{%kx7Q&l3J?2bKdu*Fe&^1)mGHN@T%;@^&-Lf)%PLsfeAh)21e;QozQ&n z9us53DBVHrW>ZMYeOp`#!vQsWHJ;=g(CW99g%L9O3m^@x=S!m#j}$^3!q7JiGi|cj zO^fhcv1)Vs=JSWZn#$&|dLqggw`pW^{JzkOWXQdKJR zJeu6Tt_-pcC94}LV+SE2*Cr_;81^W1#xxk36gty6%M=^;fnfgSey zhHOe-c-k>Hx+E!IngqS&he~AX9nJjfBj$y@z=Wjpv`fkE&msmzz#_&^eoA-0Q`3u8*b59ThM^sjKLcDKDWP|7 zq{SZ5iUy~oAr2?_;$7%iXKgx1HPgdN`c@X|@c5V=BY~Q!?K9YSZiMChZ<&42JhL3g zC@DR|!-(V2Fl8o+NJ%--!hP3>Lv>m~(U-!r3EFy9>%`yn4#L@l28OLA+i&b~+t*dA zE=6pxiaM2i$E2T=tfOdE*8J4Z`pfWedppV{su$!aQsL?6Q8P@P{W2=0LV2VS3|O*6 zccU$sl1;mAtG3i;Wh*ujS!kZV)gj_>7yme753@N^qbgYV_CsLy8NQ@WPkYUI`1E{{ zOXUM%sHX@m@?ADbN8htIxs!m~8@DD;Y@l`tU5#iy65{wI{A}WZ-&S-=|G!tbYt_@s zAyTkvSJyS!fTgJdgOe4X!Fubc!n;TPwaUWOBg&$)cw^hadOOV;!}y3*tM{9BcU`2)bMh=#q(D@=MyTE*l}KCevGjJ@o;|HrE%D9HBLW|J1g5bX@_77VhQyWb^ZGoTVB#%f9h5h!xZr_HrY z?2Gu;s+=N|8@K@TCT~e7o0L=`l?38=h%p(-7dDDmnH7R(B}VIb;}V=e)4M#6g7fZo z$hs@Dy7b8owfuZRDxc+p;L5CaS9t^cJ~q<9)3y^ak3qWs#l4r{A%%}xi;BIk22F7BM*ba4&p2FAdkaP3Cb;lfs;lEt+UY~zzs9a@Khzu6%^wUiI8VTaLX zaL5tV2`Ly_gRJ%7VThpI=BJ}Nc&I#4&CK1H^WrqoB`HtRiF~5?d_X|ZP&kEA>Y|< zp?EYOm^)YBpc^9R{}5zBA^-3d{$YIf32wy&F@Y^lp_NIW6lrw(Pkei9CueH5#VEDcME2+ zp+DV6JM@cJYcY@8C)8?n_nNN<8Mrlj2W*)#9gzy!EMbM*959$sylcGQv5!ss0W8+v z0q8MM%C{U=b-8@1TBE7sk{QjKgZ*WH8SqTSv_U4VWoRMmHxSZ@zE(+7sWe1b-8Z@M zqzE=|DwJXcntY{1JoT)e+`!DeYDA|OO6|y%ptK<`l29%CEzH4KfF6wTN~uk z^o~YP2R;tUdy+IH8`%@bcr?_K=O+S7q@mH%m_-^a6e$GvbXi&B6BEr%$3TTP# z-fxF`UEK#d(2(pczY@Wt?#MO8H0nufwLs+{&m11WwNCWUp{WEf2 z*~WjAlnRYM89wq*@LT1JW`rTNH5zI7;{^E1|Lx7~N z&^n`r#`*8bb$oExOTT>TDqP!NyH<$hP`2dg#K|e%a?kZ=7m7AjDK_oO%Y(z-dv7B# zGxk=S81Rweip6@z&2eaq3K}A^eHA}!7xNIWOn3U7sqsjW?V`QtorZ-XRdGzYieey? z7^o=}5r4GGFbM`EmYDVJo9nG~l9KRpK_rMo>|nBkCKOBe#Xh5Bvx|ocvr2g%@(3N@ z^WuyBAuE+?^PM3!Xfq)nJVGiZn_tcwTuZRf&A$RP0UUn|m|D=bBB6}weJ^qR-iyNx zD2LB{8JNYnm<<^q994Z@p^@pw5%j|sx3fnK|JqA`07P%I>Xk~uE#7h}um7rURF?7Y zhQ&l`r9<(-T8XgE=?rPfZ|x2${**A{Se@1rKYHp|v{TVqw=s|DG$hq4Vf~13UMU+= z@+WH53&uK}1m!BMuS#LrJX-b*Yu66L0 zic{}#6V|C{#r|*}ReM)kc^5zG&%fo;Fi)!y(xkkCcYjV&{Uu4FK1f8ceJG1I0cW-a zc@veILi#ghqtHQ~fO?%kNOcWb58t1&v2j@lt3!*3AwQUr`k18qyIQH25*A6}^(sWR znj6)5&1lf176>*M21t+li=KJgCjGUP;yJ0{c*I?bmHIEFw7`oI&eW8yEoE649q3)* z2@ZIJpsTG9!Mchc!&x1ZrEzb%xVDZ~v>)22g!d^Maru_@JFS zTbI=;&_vCintSw|tPrV9$RM$MRA&=t(~d<{dj4i>{K2Yn*pYor^m^ZmV)bYXoi|ZH z$XNUxIXe0h$}xaVbi+O~Q;#TevO5W}fx(^gpeQ<)$?#(g0Ujl|lZJ1v@Mf{b9IA8K z4Zdcne_JO@>-+GG=Mr1DdN%6_xTyzokSH%*!Om#`Z!zjWiw*E8KeP6#C%%MkwUXt@ zEH~{%Rs>K`qI@fDD7Ql=(zsKa&4L=%dy8{l83OFTr1!4E8NU&`=WhBw-9~@W2{|b* zGmL$yjKCwLLA}w-FRR0sy6T0Qh58`nn#r6+gVS(==NW;e`R)YW{gB2WX>3R8kV3PpMMfv9*x? zA445_SeAiC)#Bg0*0p_WTys2)9%uLhC_9%fazZDwh<+qLvA-9OnynlYkY5hSm9G`E z@!w`h{L^%Q4^zAsQZRLYe{GgGj6z7UVGWr0IymuyJhRPv`NUArI9o-V;w5`eKgi zJq~|!y6CR2WW?qbj@PN)_w@||R}_>hRXM6nz(jTDZ6 zMYcjGW~8{raE8RQ^W?!2%K@K(7Q>ZVf+Dvs==Qka5d`eF^fPPj>y&VIc$sjs z{^nsPc=fk%q?oPps!E>u#<7*^6Dc5x{^SM0gt#!QCs__!n6OqW`T&YJPfy-?uLhWv z`{5W`oqXMCc@y&(9enOSXT%h_NL&KbzQmnX*_G<^5bopq;gdS37h09yEI(-p1Uve_ z{AX_yCxZMe}VrohS$h40o*%+`_5Tv_gb*ppk7@#b#;b2f&|~NT~;L zw9hdD;?^>^eC>A&_VCUWKr-9l2Hx^t^++4bMj*IFqJ-2;%_D=*64W6xqP-B;M)Aj?fA1Y_Gx zC$h&zbTe1@DMVsjj7bQlhDO#RPEi-DOR(13oZqqh*=PEnF-wukqPC3_P7Vj#KdJAc zKS1X*B|ghFoTxRHDN^n%rTC4?F@R}^JiU3F)jtnCBll4%{IZBNVpZcap08bZa}u0P4Df@+VBKH; zsIicKi%8V%W?6jgftNDB$`MPcw)=ydnuMov^7qOd7{<&1a>SiY-7zS!0=uFLCr}`{ zHW6^4=3_K|UQs_LGiss6>nva`n;NwGK(HAs<;m`Yu>T4=gu6!k@j$KvS0mSCt|+s) z22_4kG<_b9>+J=Dlv(&-vqIqLNr`lwM!8X}!?)c2K8ynRSBttWyZ@FZk183fP~E@Q zSD{OO4ewJkXR4J!UoMIxzB)F`n;%`DlBoB^g9BXSFzy@r@2s{4E&nXzy*(^qoag=e za07p^L!@ThJq!fOgRo_7CWjGiZXtsS!}VW2W&R3VT}AD5QueUUUIrtc+LdAkn2a>g ze~Wj8W{a9z)FYC4I3L|2ivH9Oj`nYrsQWnm$+SLH8)7PWSOhD{anXOg(Fno1^Kl3ECAbtK%-NB@76_4&4GYQa*PtgCaojh~7-^kU1It7PeX$tiEoZQ``(D zMkctis_Rxr)GoK7j@buCZe{0y?49S9UGujNQ)v{#H4f%0S86U04QyWF1cFVpwH;)o z`)gKYyNhZa0A~r6^6UBsejQCL%%bGtTE)~|rIJrpEVa5=Tf%LqYY@}Dv(|>T(zUhg zMK($qTJgxMlRbN77W$Qu!Au}D1L$Z8jIh$v)G__Vvto-heKvX4BgV-t$UO(Fju<80T~(mi}N)Y7^{bg#Tybg zVoy%BwWvy^;4>0q4`2S|bFHIcYe2qF&RY-Q0b{%TeakXF&4^k5%PgAFsQVc9ORCGNb z6FhutcBMLUzV)Dgq~d@I!l=Mcrd(Zj6y!Y!+H4L76HM*;-OeCC)b7 zO?M?4UXiGp7-trp_2PB|9*HLVa79bbh>Ws~F}QWuwks?gaS**+4Q3NMC`;%*Ml^kOvEqpZcYKc@?Io#DQ~Sh>?j956g#-QP4H*zqMq2aO2xGUL$klS(paLz< zWMJS{{?=dmc$EQnIomsdr`N5eHZrm{VYr+Zb7d@5xhN)k4>(I2HKPQtTS-tu8h_1W zen6jlnlm?MtA2RQ_%glc$~k#DM%AycUfs2@VYp^1;09!U&JzkV;#3hze0p}&y$+7S z7?;-Y7;Bp$K^}^NGVIA(xqiomp>c!zYK}a&bLTV(fyKz~1*;#nXW#N!DFY?Si|heV zBM&&t$v0X|JJAFsf|FVP%;Drc5xb$ORUtIbrK`sJjO! zO3$_;k;-UH`Lm|Wq7TLt$$s1~rFN1E~+7ZA7$lBMJE_#+Nuwu@@`Uc^+WS>ShQNbTEhfA!#g#K3ZEJ3%Y%q)jEzk<%0 zXm}A`a^y@fS1XGI?1w0-%Jsf2$addL zvHM;NX|Ac;4JQd|5F7(T6*+$7^i{FA4Dew6Z#CyP{nLwkYt)= zb|E{!Mbe7jh_4^-+;>PRuHqD^yw7Ju{-(1vK2Np=k#vhiD|aO4k#j#|`^dxg;p0b^ zDFAWPSaz(yuw6AoE$eu1ZPUMDv0FeQzKLJjFR(eOkd* zs{6n37!oW&%qs2EU^zUC-*Vq8e>gY`%QfMoc2&bUio3P^ZyHEWTF$A zcK%-g84+SuVZZnseJML#^DzC}SLv%0rlSf3_Hgl)Ft8&t34ZQX z_12>G5sHNA-`~@5l?fZQxEeqW6RDG}E!fFHL-+Nny6+X*Tl9iQLHD1)fiI?$(d~gq z7?0QsvQxzMjZhOzVRya9(cW`qRBnc|r3n|z%X~&+g6}%l2#UeQ4gtb0T-X>x?)=|? zjFk1R{}YgLbyV-T6C<``dKmSw-&+&~AP`%VKCP>TafSEFmlst5y|=fQyumM$iZYUX zLPAYC^b9mw3K|Q_sc#Y(h>W|z#Qq$Qc`e3UVaqIFf#cA>gK_LNBZP7L30v#YrZDZR zrK0KF+4S#j$EQ`Or4oX(JZ3ABCa*fxCVS=JXVG(KJZl728>mPWt-<%`Q>qmb5z{_g zSx0YK?-!`OR4W)eQnNeH)zGFdYjl08q5LtP!qc3Z;meckiCEOQo4{6~&o=VGlHbL5 zYYLO_H2&CFiUGP`a&lMetU+1=Kg@O8@cbNwhi?dn4K zKbVZaix@E(0?^VfhP?Xi!LWMhS@0I42;H#@;Pc39DkWuv8|?{g-F-Ky60y;!O;_Gt z!p2V5M9w}0=)eV}O}HBrdFt?X0Yj}v^?J$|??$M;;LUz7q-2o1tjk0oNMpd0vqm%6 zi@B7Wk|`}o$U;bw!!O#m?;h1Zmnd)1!QDW18jdB)glAvuIoy@LzSTBG65@Zwp#gVM z&IoS4vkD=XD913ZE32C4D>aTfIA`XkJLXt)It;45)G^x-`_aSoeQQ-*e%C|{nB+kz zW9%U0i4hFL?W`^Dfp1ERmVp5#9d~~WoLM2Tll(8KL;cPGaJn2&RIl}K_9&}08NRBJ zHb&^|lo6tmK>_mp%KbxP!@-_FP1by(u9)PPR*9L)@g%w(Heu1&UZdNAL~-iZ$LgA0 zL>z?}*L}qjjlor646ab+HL_t?YJ@|YNA$ljIPG{SY{AX20W}|r3 zxOK+SyD=g}>J_#edi~p?V-!a6u|=IVUfZrbDNjzSN4O~i(TF%=e{8Y`If@8QdnGCw zuyYs?J{2=YW9R%ny3gl;s?|RTsAvvCKi^NbP=DLtPY4gSTR>&(ice~9J|#J;*4|y(-Hn`WTXWV^YdL5 zhB|6Ly<^?n2*G8buISWgrHD!I(=RE2$JSa0h3cf}haRWt$2Ns^xUn7?Ap1+)1Nf-O zWQ3e)>bt5k86}dmXvWEqMElg$=Y0TBK#|5BF*2A4g6tH5%Chf10H5}){LmIq!un&; z`}#Z8%y_uYPW@W1e9I5aG91k)j0F)=E`Y)W3txs00>p6A&Vpj9_Bh4Ux8aKWPX{%_ zcr7fF;{OACkib7fnV$lJ3m@u9PAIkLjlEVn4OPj=<<2^hazoywt?dt&tfpNT;>Ql) zLYURg)Cuj1BqR13t1d9?U(BmNgkt~v5h95(rQi4pKdbEN>ivq$n?azV zVE6TmXQ6+fc)@3Iv8P6Cdl>9>9wV%7|Dkk?p}MmhT(OW4|+H2HdwjW_#L<8%lnIuzu+@ZD%aRxF;aYP;q zlGx-4&gm3;2iC%XBq)(5XxF3r1`LcBuGUG<9)T{%bBg)6cv$3)ETapsS8UBZ6U@i; z#{!V(kHSdl%}2Fe?IqKj0g;}=-62I7X=h$vHmZn;@kwvs+@ng-UnQA_^ z8TR9XR2#&Dan6GwS;m*)m-_tsFEsiS?TV)>mp)_3DxchXt;pV(6`lb_INF{RksJvG z1Mdhyg{?U@}T#X41&E9^-8a=Z}wt!@c zv;rU}ZSTRoJNjMS=^{pMhe6G}iF_IObOSMxIyLmz1C?*(hGt4o$k8LAYXjK%62a11o48g6yRX!$ zbg2?581`hf-JK8_J@oAkYnK6hd@V#zjg+x7Gow;d-wwT^f@>du7OGgyO-@wERE5t3o+Dw-?aKi~8bZN3s& z^j-Y5+Gasv^meWsCE*k1w-(;%lCq+E>UUH7F#8DRr!jvO+-Wk9%+K*~dgU;07w^4G z7xKIsGNO`y7cq9(TJyp+z%ZpEA;=@qGl4*uk~TtqYls&%XgbX%0h6fj5czrS(7X^aCT`G=8nXTS*T zf_PaXYxx7q4^x&j4J1mCSlU;Sp*$iwla2NQ$Z6q3_D9ZLi<^jl-|BQ%<8fA`p2dv% zz?q|w(Q`V3d$@z_2M^iSGyX=Y>>b(1A&XN7F}RLb9$I@QeZA4)jht@F?p_!~j^Sm3 z<+XZ~TmwJ?9iF=_`<0N8*S+n(2 zm@kW0k35U>55fMGkk9%092U|4lLz<=8O{p*brtDG>KUumIpLfmdiC#CK&L#cnX|Fw znLUt)Q*s3E)*OVZAe0ij33#>HWkz`O^qlOA8MssLI%V}byg;m2I)E}hJb)TMyp_m# zY#;8$_U7Mdz4W?%qMm*fQ=WdTqTf$|{C-#WS>#>Aft79U-LgYvd;NoOPx}yZR|(e_ z@J~o|4LBXLAnOsbYRntCZO>`&$n|CkNUstb0f8C0c#8q(69=fEX$KjR2JAD4$Wv)BgpYi0yTFd_Q3npGw|JOdg6cZYs8j!};}R%EAdV&3rb*_%7C zq0u1LX>8136D> z@6uf|D~V-9x**Ktx(c9LL=EETup{>GHeY*RVgMZ&LgLcf3K%82iG242DX7{DI`Q4 zGxGyst{)JKK5VV`GjBFf3Ea$WFc3Cauw+nqJE4v|!{Y$NGtzz2h>ciwIf(6Jg({T+ z?1|Cx{R4T^f+XuY#hIaT*Y*3}pgD^*NnX>%?@mTHvPK6HK3_mKDoekdoZrMfdr?d| z871fw8CcA;XLA=@5nplVw1~~Y3bE$J5sCI>&^5UL<#prbxwn}7t#hiX@ycaY<>jNO zRA?~K_!df2?U&QVG%vZF;yC(WU_dpA__SBGZ97&?4nk9v_3lcGc_@rCm|FBk?*~cs zYH!2D!nih8PB}7@>UFFNUZZ(3V&BDDwDllET$PiOZon7T=3J~Nbhl=LMg_B*AMQ={ z)&K-TvSRbt>+Wg#wVvQ?l@UnXD=cxk4{TWy2_qCT< zA(SOly_X)QMb9URgm1*m>--XQxt@FMN}@D$Xk;~H)c$)*Ir?uqA7zT})Yu>|Dem3+ z(H-$?_@-5h)H&cQKGGp$rW0f_wr^`~)$1J^e=KUkmw-kdH}n8(CQ48mD>Z;}77vk!9Z5=Bg+W!=sajKbZttnS< zRHxvWo93}x-k_aNFS=gEv0~E!51|pH=cbaomDsgPh-7etgij+*vRk}cGdI#`)*ng* zzjc~1CN+z7up)KNq+J++M2Iv|1&>Ipek<((KJcP16PU8EbV8U6@3%YadxY6XeY`QY~7*y!tp9i}h0nyt z(z;8JH+~C->%<_7V|P4>ppgL-1;UxT{~>-VR!powZQ5)DKyXGnxoDUb!DPp+k=qJS z^RSiK&oKmcts+1BQn&3B#aSC^Y~1}2)3}n-XaLP{B73Kxre6$pqN+cCm^2|Lbf3^T zpNz*tqkTKSx8`v;2QbOgaQYo{0pl%+d8;}RnNRvJA2=P(Kl|qS{}7bE=8R3=w?ifS z2mx*;R*M~s8e`wxW`Ufmf`8xV!1e5(Ea*FJerP!T6jC8Y1K2RY*#C2&W5w}=UM8y} z3dpqmWilrC05$UsCeX>TOR)jy>6Ny*tq-CSQ3z>VUh`3tQ7HjLa~&VQPIXZu&0*nm zT?%DH#?y2WGRi?^Fot`Apr3eH9nXkG36EH*f-umTtgb)jP zSb)E8-{^TNb2z&ueO5NuGx28eGcTEyqcJ4_ra$y;&t*4MgNC(l0t#oEUX^5UyD3os zZOzaG=epk4dJxZ%{+c#TFgE7a=8N%C+B9Ru1kU<9=sKwj>7APjt2GWyxu7nk;t%Gc z=l2x(&SNerCgtk44KV$>cVS}<>Xwq$y(e9LJ972sZ)W@Lx+WC^O`K&WRHAdU#CiX1 zlRnfA5F{`u9WahHn^TM<$Djzf6Fs&joN4S*eg42~{!NSrZRpMkloZ5vwSjy2w66`Q zn#AsR8n@L=P9Pu(3VpXn;@Ob%K~Ut)1r~;xSj`BmO91q*7%@)#bA*+A|AP^p*G!5} z4ehyAjCSmQk{rRq)2wldK9Shl5SodE@0&OkFUMe~9L_jT%G=(#%_Tw*1#BF1<5hF9 z2_5NKd2>JY$$mpr2JZ-r89WW@Pg#gDx*`s%_T^eEE2xp=1m3xf^l>+(W+7Q{aSC8A z;x2E-4cl3qrw1Hg`H0-@3YVlmu`2OgAyDLeKq3Rwio%;<^Ik7ZxW@+?`KEv|gTYm$$U_1Edv zukXaHjjq4vM6mUFB;=?T-Wm~lg7&L#dt+Zn^p8uj!GFj@mFGN~qq3Zaw`h!ZreU=T z>&*wa7`U>!QB>L+Wq)9=biM(-BvheTE|AgQ|1x!QO)#5Ne(Sa@@zh7M@NA_xNhbAC zve8rkSmS#BZ@K7n2^|QpK3cV5oT+#Vf!T-Wbwrkm zK_n*g4VLJY+8agL$A^n~gy$-dOVY1N%1B?~mxL&&;z2d^?E)k{${=b9+&({Z=J@hg_$;JcsiklxIOzzfr!O| zNiNx0&m@^TQIY;0R%mP-68*u}Rp{Y9u+n!z=MVjoElijC1VR`L562EmqJc=J#=v}0 z#yVE138czvdga8QLu$VH3g6hX4N|Ey-(Czyy%aAOzXePQjx+s{?C#7DwhUql`-STc zjU8|_L#nS3nh|dvkA@vIV;|=hmLcXxPHkSGB4(V#5tR}}Erpyj9mq|k;iT^KKx6fO z)2^1l)1@70B+2ZjMW*d=KvqntxQ{7}PPA?$~M=>M~J2+ATp*UtYLXpxepIptx(!oP-=+iMj# zTEBcyIB_v5NEe+KoN){1APH)Qw=E%w08RUog17xW$^r8CWgLIhETlP&rt57KpBmUv z!yF2MBC5~PCXDToZuM|IQ2`pnWg@W=o@lGn3B1wIb%~Kl=yW0t81;)caA!%8?(0z< zv%<4_?u+jaXevABRluyfN7ZFGZ=@7DPx4vk7Ec!?p6_<6Wm>cySo$I-CZ|+7D=A&_wCdDjXvY6AA~VrZ1&n&RqL+0=e%ZtU-p0T zK9qKIZ)>aWqMMh!UDD=(RLR<$C$qCeeXrCR9x{E^&wmY3^C$-itzzuL-B0W%5wnd! z(u!wu>`IY~FpVD%#l`g89bQTHB}XacD1;eSt{4owBTw(s_l9a}{8r2GugPP22is65 zP7~Uif{b2YoKcTQ0b_-oZqFZI1@|kl*?>{R9r0dvd2aS4uhQU^MnGFTmo)>rN7|<1 zmJ5$rc?$8glNI82GDeiCo0p7Gk`EjLhktN$+Zee0gm!=3ZII>LjdcdvsyQ_|ff6+@ zC~AOnw^LyuFw&WRXP-|!Fn-=mgFJ7iCM_`wY zIjTHw6!UsTkaPEh&4n>^+`#0e)CF3{U&o@=n1P}-hZ1ykdl z1TzRLDjZ>JC+9f4nGKA7~x#t0Z&EFAzR~gfyMyc#gd< zW;#6~zk_XUfKrglQ8pml52W`M)o<`h7s^G8PYdir+DkYpB@o<3mvnJB4m!J;L5xWd z3Cp6P#`HpzGRfX$8ezV2p7r1(yoPmacbnnQK{R=c`3K(#bfxAJ)bzoJXie2H;v=YP z@2bU1bDTo80&)$r#;S7;dmDVY%J-SkDm%c1ci<-sZC_vZ8j!jNk4#I^@6*pvn^M>B zx?R=n$h}|lenrE@2GjwG!N8$_BU9yXA^+|j@Xb&v-aAtOQm@S8?-PZQDWETrDxcI< z=?Pt31gU6*nXcO4Xm8C!(NOqw$)L!0!BwRd5SZGdhGx_OlwP{6j9Am|(}CLmvFJ7Y zcxj|5Ei)a?dpGD2yVo;5?s*2bCmFu4u&W7sLLTT$cQ7Agj@w(#mkMSa z@xB7~ND~w2Y2*u!it!AYrik00l-Qnyz(WRDWl>>GuK4s=~TNzO#g-J949f+XGRh?x6Vtl*)u&jc4nQrTn`jS95CZZiBvjGrlQk&l( zgG%CCD8xUKLfCq^y`uddYG}_~E_MrP;X6zS*B*oM9OUo@H~zs#?Tvml0)Q23ST_Th-c!eLjj|CIs7j`VH0{8xB&)^wB+DXg#7*rSMHnXOJs>byI9i7hC#(T{RH8A)q1K&Kh2W|>5zq6OM z{sf#JkyJJ~^du-2YvYELJu4h=Z z=HWJXx!Vb4#il0IMB-@RY(@2Ra)7Wj3GF$3Mi`>1`dy$ z6pgy|M`i94E8eAxg_acI7`hg4I`30vBJ9>YLdsD{6Z4TG8t!umWwLiJpY7KU{nc%a zWKwzFTy0c;w*3C&ZUOH+KK;!5?Vd9z4%^P5N2ODQ{zG0&~a|1ejX4fB9H@zL50a;u`fNm{nQ{LbTguNr~J z)G}#Br7+Kq4zw{_jl2QGv#aAb`pbs}2|Nng z1U*dw{v@h5D=h<>LioX$G(tj_Y2+T{)NuqNx918HJ>pY`O8EpgysX3LEDKsShYPyi+y++O0lx24e!_5T!Zq5E50>nj8;c0b((sy&dt`bzQw5A+JfPe zEW&V}R7eaIzUXpd=prc;x~zRCg&dVBvsTZ6m~peQUXi^pe$u^Kxl4=2o->xWjgsly zOMSna$(v_>v;kN(E{N#eF z=@08vtbgY3&yP%XAKK2^CFMV%h|pbYw{T24bfNW7!(Z6iQav2xIDgv3`tO8x*sdeF z1~vm!q`wr{WRrslTW?>`%SOA$+b&}6unvKY6V%H5$iSMQZiAUS z1F_<$#3SyFjDU`{oaONk?G-0yTPOQ?uTn&Ygg$fR%$Wi8DhnsT7X}0XfLRy$#az3T zN?oa6@$5jLd*C}(&Ug9~*?E#$*lmb7IW}+I&LUzNu>EADXlHB;@V@KnAt?}>7tTXk zoLagd&r4O1q^70!jg2Ks#y=85WYciMGip}<5_W!~jA)#!I)#|w#v%gI9r&~f*MVpP zhKp&CsNT}%xv)h=n+2rU)OC>d?5+6WRGRHGF(@C zO8YEm5vo`m?Ph8%u$EsZd}iPKbW^t6`x0u`XYlmGsDBn2G)wZ!M}-7$bA z(6>`9!LW9i;mb(?kdtV-`=o-}+ab)-yV_eZk9T{3gDj7)XLFL$W*K{XBb5=AVzMZ}lSl4Ipz|t?6wCj_g>gkHz ziOhj3q*y~ESpgX0KbQyb-BNw~hI&sTruDDod>-k_q&gstXno9dT=A{cb zqR}-%QOS$!)kCX7_M5N@0X|Y;G)`jW|ALP+&ebffyRQfc`B*K8rafC!aT@XR_^^WC zNO)wUS&uxw=09jgDEEXBUUT)y}2>8N7gpicJ zq}?pxlMyA|JUu(^ri#HFAcZ%U$`jffg@60>!R+;9AH0(-W+6xB3g(ooI3e-D;#1W`7#u0`t0kM2zi2GEXU+k-UJ3jjTfHX> z(1cGBMU*kxe)$)MbUNFVIw2;;(8bBW;I*0>h|dw~D{+bpsuMuEM9Xh3e5@HnztKEv zn|{xc7SjXQ#^SgFo0P^|Hbh8m?v>3A#isg8Jn~Zb3bj6?RdjlmwZWL4b=lHb-@%d3 zPyQ(};_6u|6g!MJwpd=bf>o&Ub*Sj2e|JXl#lp2$1DU?zry%Q z!qPH0o{|ug*k8~!$_+v7C^{~C!L>WuUE*2KmQ7#lVg@sp5L)nseo?~H=i&8)pVX{o zJzI1oR!^LJ>ud~a$psG9&s7Hh_5m-!b@$b!kK9<}qQRUTq&gO$&0+6RGR{rS36(@b zd^CpA6GW^p>CTK;N7hmg-31ac$tf^h{vR}WQk{adyI#j9ZpTFQ_kN<;Uy|cR@70k7cr%~+dIpk_`9DL$?xsZ z^5jG0Obfi$N8nxEt%@672b9TH3=_EbaAWqG~^=!?xQvCo^FzhnIX%1 z0QAYRGem;NI1GPd&KyyF$tEzv_#l`*I6HQ3eYUtY*qANUiox3+ImQV;5w~)Q|SGk8jEBsQLt9Csjsba4iO>eNVN-TeyeJ2aiNJ*)1 z&ueuTzJ#Az9ey)%M2?b96KHraoSh=f5cE$^%7dV_OkP_sfawtA`5^vON-Ofw0?*Eo z4Jruc^dDIt(?m&B$=X7PqlCj-K-c$UW&lTESt0^?`t*o0oH$3m%t{>l?YZz+Wzzev zpBxf$4d+~XV6h`ZhR~R()K8>gm?SlCZF8^;7%EP=MI3W3i_w>uKLY)?E1J6|I#$A+-36#l9J8^?>|D zPmJ<&gVDQ$yF}?*{KHLFcc#)#IdPGCePg#c;#v`FVPtkv;(WTxFL(8}5|D*+p{q&4&J{8=I2|X(Q)A=_gA!>oVSn z!N`1>h{sq=?&PVd+&G>GuleBWqQYp;2-S+hn;9o($>8x{5ILUpyHUv*pMGD4ndt=s zi9o&GB8mXM$5bd%R#pDAFkiAo*bp&8rEf}-2})!kz&%{1YZKYC?yC*p;nPC?2EUa3 zR7lNxzKkuDMDnI63xWX6l;*z&Cb|CxCP|@9ntshcL>VtEdT>B?s>vjh7QW*W5>4qO zGXyl?+X3mN>zx-HWuQ5<@u*y-Q7H0yqWF)HS99*wRD%W^OdEG|$1%`Y8(z-;16lHFl*6w?CYq$~`*iT@fCw0(i!B0zb)zy{R+& z{owimaTB_ypScz3($&0Rg0Pi-NzwBI+!|lAx$nzF^ekveRAPxFE)yF6D;9|n@0khr zf2S2Z2<1>K7P3b$CrAzym*EW(H#qKy)|lve0V>Qmh4_+jl&UX)ytf$QZArlVw%_U_ z_O2Ouw$dy;(7o06Mi-`eGIEHl)oXh>bjvrbx-FNw?idi|`XarYjOAzLJS8@t6byN`pQt(J85}?FFT`B=p(7;<@oe*1g$qo%^9RjXntduYM5aTi<*uI;l}}2pj)Xc%8-Gd&-!&5L=M# zLa)pI8X0I}SApu|khQHCbrX&u&1mx%!kMPf#^n*kX=7T~x6xrnq!??P);nfI81Z|Snpnp6pm1myqXz}Vx_EG;1g3ug7Yq2c|p(A z^K~R2Zpd!fW10`(Y1Ph2Qq?>sHo;K2Udh|8*Qv6UQd6C6Lw`cKUb}!#Iz6fop#ZZ& z_RDjoim29mcD;HlOYC(*UhoVp#E}QmU)J*g&@30tbWb5Ko;h_tiOuYg;wYz-wG%RF zG3}5l%T}-_v$pJ?SX9OawxC)F&=#iY?GdH^h!K&_a)E*SCBY;MV4kHZp4ThmOQ)uR^UL*I=!4RjMKs)y{Vw`X*ma|g4VO9RT9#w%O;tAqR3T5+5D8Tssl0M>{nZ)%uYPL0$-ol#my zokjpZMr9-HimUqG#+wOyEe%aCrz#Bx^-};k>pbp>Oa9UBirx6V@D&rOvl8ie4+?DR zaWEa}yfz0ast@2PTeFoo!co>nB#e!IQUw!1;b;d;ARj-owDg z%cl_f4Dz`{Zo!!5drjKClAp=?=8X}-4p6OMjC1>v#WjyLW+k*19g=v3H_S4ID7s_k zIrkFDy^G^?Iu52cyQtYjtw%eNJ_?S)FH7Lnorw7m6i%;exAjXVv8r$3h0eERRV7>? zHln-$C=1(!E!l&7RTvhT?65w%-?c4tUYn($YG}BCK8jr9#NlM%LqmGniu~CSHxHu`IWfYV?X!lHRP?{vO=`& zY3p-GuIN37{Ii5($r<^mPSyTbQRODT#%^k0;kH+u6cf6S3tXs1=BJrU(8js~slKLZ zmXgKrrPJvpmK^@zpVA0KR_q3^Ue{2HHGhfDi;naXZbqz`Xd#Tb_KY?{7yGT)wdD#^ ztN&_muG3?_qWwi-^B#2b0EVP6P(#TD8c+TrZeLITKtsE9puINr+0LkcjhFKVFQ~xR zaq8Kco~v@Rme&0e$D6Q&S9qto?+00Tga6@C0=pGWO$Xw^^F4wQ>kWU&1Sp`#x;qYszj&d#YFu|{`2V6Lg+XEh z*5J#k<-uOOk4&bT#&sdavU1;jHu#@|8CvE-@B=O($mp?Hoi3$dV-jkecCSEok$UIk zPY);2W6hsR#BW=gUru9xkL)}mj8-7JNxbcHe0TUoal$57G*VrA4%-`AAjs6WLZA$l z8k8kt9O|tL?(cTd8mdwN7L6X^Al!aqz3%7TyI7TZGQ75E{c6!4UInB6cO3-0^5>Xb za8rtw4)aQ#ZY$R%Tkd5Kr&kH)K>UZ))Ex!6)eO2|uS^$=j@E~+w=EDS9ccuvSl+>K zqVZ0EO>YuG%ZOeHoZN4PfxQt9b=1A5ohhH@u*oyFyIv;{h1Jw{o;Ug460_w_g1(NP zPRFW!y1DneGW~H`EFen_EwC$!83X;DPWk{<&m zke89!00{Te-CKDW_akr0sgTQG$V0Ww!E(6??#aOMZSgcAtq+tMh1W+#fA#g|u~Hu9 zLZ0;;d}XXFrZIQ2F~fQ{nlk=MbkGCVclCS=FI)u(a&Js*^0Jcm<`~%I4X?z{_EbN6 zx2mZH%XD{CNODvN!;WtgyWR5%=@fsh1i%yEi>rD?0(#0Q*AL~0XYkuyJZrw(4XUA-@vwL51 zba+m|%}VO#mwx`!_Gqohrz0Ads}N4bKzA#QBB!JMPxVu!-hmS*V>#xQX~~8pMN2(p z5XJU(u`LHm9&4;9DR=t&f;Yr=n_{8Z0LcfaIM(d^DnJ{v+7|bh?}zZGAnB7o13xPDy@iyl z+UmO_eaq9b@O88WgkwH!#ro4DY?Pg_b8k`Nu$dW42P0hIV}0wa_^&>n=m7RtAvb~H z3yQr=5$mbfv0}WbU%ujuyGHl5Bf2KiaoG!LZx*Bc@F+TnhM@jAZ>hPYXHRw015U2I z41?}uq0k7nU(#c9&%7M`H%-LB zLhA7b1iqGC{oP;I*sr}2_iFZ;na?Nbf6)LUF5Z)PRBlISfRkf;Y7gD{7xnWp#dGyU z+M_h_Kqru!`!m7iFWbtsoXL4y4apv&%6SC~4+DJ`AJNwOVQ_MZ^i6b&=H2i<4*ssn zj2Xf@6U*e3Md2bo8r9`XSUvizPpJlj69iVYe1BqmUS8he*N+)iP4%lDCPu7i0ynG+ zBbn~SAO7(xHi+lcc#~jsLZznX9XD-KsX_bGvfyM41_zK7LiE~U#?Z{xYtvK$6`Hg? zJp^?3LF9iX<;%RxWh~PT>dLuU0{wcQu{$>6!bV@;6PWx)|LwWgirE3%Co>4LBc$6A z(OM;uAZg)PueZ@HcxbVGwd^)lW)J!D_P%~+@7Jh}V-#c3#a_eV)~)pdZlZsNft6ml zkZ*9ZOLqS+#66eGw#QB!h6yiPsS+lAiQk&sXkY~$#g^vNrkodZAKD}D1Q!g???N_}e& zbR@>js;?v$8@{U(B@06Xg1qUTl0UFIy@(>E*b)m3^Y!vTtPeO-NRA4&gD4)$O5)fQ z?c+lCvnO*5e`{zOaHhd5_^&sD-7g?zt)O*1#Ii!Ho`id!hNcbZm!55n!;RauXg5x4cn`*gVt9tW*InSUqDlR|edBc#Okzy-_=BQ2?Iew4)vO|XsEC%vi7ji*z! za-1q~vrvG*o5Q^#XMiCa`oY3yp!gSPzw!MnX~gXbqG~M#{!zpIn*W78H+*+W$`*8= z;N{K2>5+HNqhv&d`3}2BHGh#If$yJ{?d2<61JJ4ZiFG*dj2thl1;wM{4TsNz6T!Uyqx-m1z@hD4+yGq1V!)XC;00vy3akcw1uRu!Dhv zN>-o6Cf(!*(@aYOcLoEvg=FN9INz#beZ_h1tijdD1U}|Ey$r{D-B7|`m|BaLdP>TH ztfrr~(QzH3Y6uClhsGU!|L87o4xte>(m7SQ$@iG-SVv&6xk~;1?QK{5ZhV-Y_AXmj zPza~!_W?j9mYy4*te;Lwd$&uV^IFa71joh^m)#5-7pj|AqZXDTM*TuW6@=ey-eNT> zT(bR|C1`7<2#GcNQFj?Zb;4E^6~7B)-*r@J_Av=RLuO=CRhPnC8Xd zP*HR`MFmvpLJp1fF-Z~s1@OWHxP@MZ)XRC)*=+R_7D`ceZVpd}v2@$3dNDzWI{|d} z%VzJlB7r9T`4K)bJ)_Mt4bK9r-i=GD<=N3ZrxyzPIoLyNs&+J*G^+Yq>QIdzH`vTV z3o0t)z{%9}?$+3Wnbn{L5GxdaCtd)5Z02NJs#8h!izb&W$;G*Fc{|WZc)P^YhicM4 zAorajG3ro%+yvaZ;@Rp^s5uI%H9(Ltz z@Un{&v&Z~r?gNWUoZZD&GVM|u45`f>QY}_^@zE)%!OxI9&2VTyB#+706KAj+&o>XF z?0eS=x)x|L+>}e)5PJLMGn2`^{}~tw2rc)vAtlGqQ<{V;A4m|=8c3A)0cxc|P^{U) z1bzy4fz%Hf%c`7P`X_2SyH0}LtV_*>FkXT`4~-?97wUt)Q_N4e2Woh;jFHc@Nmw-Uy%jeu>+AwteONVsZt-$^bNEx^y3pu^XE-KIv-A(8EIw9obsO~HOJjY9H_ z@2*5fnP*sbx<o#ia5a`;!VUSB>$BC+ zU$4T;jopC{DEv5+c+rz#Ov*|V?5PNFRM-{F1#Z-r zD-IlzcVv>6CTM#?eNj#XGmmSj$%kIXTyT1=B8_bAy9Lcdac~IQQ!lj3a4h)zD@SMP z?T&Mc%bUmp$#U)zsD`xNVP&PTkG90wvAsmKcJX-E^Lh`RB+_JnCZk}OF|y7{X!FrIL!mhfw4t^DXCap!QupCv}L z%2!Q!gl1p0Xgh%%EWXrb#WJ2_Gl5*01-;zV$g3YxtU^W~UtvOzPwc>OKrjG%j>r~3 zXAxN~cq12m*7r@<;ifzwb{ScRog6q{uYk*0~*W|4^VwK zz^Ot!jM~~7qxMCR^8cP%<0bm0J8uyYZ+b8}BxAPn?M+>suLD9RA)U)tNF3v@Z1PH7n)zeq0L zDO8AzrTCURTXHf#Gr>eom|H!CdWdX}MuTd9%}mK&`~R>pkC4mUQ%Evghg?C(#C}&T zTsa*1G~)P!Oh8*jW*Y?B*M^>%H=P1*o6vg5c9b9JnhzhDwtc8v?qpb)PHY`r@7mvB zO)ZEv%+yi%2l@x~M=0DB^8Q}AE)?Qo1K)8e>o0)eH(!;xlnQB2lU2_ZuspzN%N@X+ zgzKZ+gwk#*vK^^EiOq;v~{H0}dB> zX;Le>^36MVgjYt0Xf)&`CpunuzyDxmF5O4vLiLFyz%9+Y@6pI0s8%z7Zna}_8PXaS zaxAgItJ#vt&p|Jzq5H;N@B)ELjV(D`EIKSqGE0|9Lpyx6l9iN={Xh9bv4Kx<*;F6p zFR6HMwuvvjGWkq= zdtntlFLzhKv81k5U#5KK8h!#f_z5~HGVK4Q8QxUT(K2j2u zvbt;_VY%T*m|^Tcn%&OsC2r~2o@;GL5k1kv+8iyi(J1-{KQu0VDO+jSt2Yf;r76>*ul^=O8Sne*3whf? ztwC3P34>>E!VLZ~lc4=qy(e?XLu}>=(=lna@i!+bnr0gQ^k_3QrA)lnXmhlh_X&;Q z)}4u+!!F!wPp7jYKTS2#7q1#DD)$F-BTow;_&>JZ5xFL{ZdIFKCi+6JRj)~onjsU)dgMglwsVihYkN&!ANZ; zF2#w=GDF_VpP8o;I<(1~v$aT7uAQD;+A+aA&fEo6Be8@+)S9d$xy!zT8ak?NCl7&h z+nvx#CABwA6(QATZod&-QE`{_Yzc{Mi)}VQ=7_N=G{~JtUj>%4nF=Y81?ZK6hhm2&H(>4Z zA%-f0lf@1&7yNpUSzfzSv!YM6C0I1zWLe}ws{tj0ITazc zr`5Vw)`hI-_S%n7;sZTUVjI0;8(Sa5AI~~B?{m&7b#9@8O3tHn0AC)wx@EZ#ean+K zA{c~vK6P5M9LY(9@X`wmFP|;HAtn?=V>gJJ;t8)*;`p^PLA{2V4pzjt*ax!sldB(_ z9F4(BEwplkk~g*JiCE{)%JonWQAmW4v(i)K8u?+eqaXA*=S zce;q*?ixFW=g_+0_aQ&BnX2CEFm@6eGx~auwXn(5uLxb58EfXjs4{vssrDnzI&ZinL&ik07XW z<>5BCI0|m!+ZnSd_nI-CwSQ8v*T!*$;5;CdBM? z$a_Ss&%q_eQ@O+gAm^2?R3P?AYdsGN6mu2|AfO^mtLAlsJ|S52DHtu8z@xf8D4X)b z#r*D`9ms};!tO8L*9iEWvU664u<<_dbShaX=Wa~y32nw}m567S(06W07I0$PqvhEN zQ6P)sA#t<7;JWo$(qVX_MeI)K3t9KIGvB^$3_w+uIazEX`k(+vOcatu6tvo2y?VYB z7ZOlBM8rP{fqV}KDUk9Xkx={6af&aIP*dMnhP<0_jqY%hyhd>te-Z6z?p4DV@i!-g zL12VhTO8+@bsaMFNZ;Z$M9^%*GhNQBk(yNDZqppSJq$6Y-8dHEGB{jtuQ*APDL+nX zo~^cdHRKLes%W9+4W@Q}fa!qwboC%xhkfs%xna+;QKE7-`o;(TXShdiM7N|w5gLDw zwu$PANJ7OXn+Ib>v})sk^F!VIS))E`ECz4@ENMQ~j*>!V@Wt8)%pjJbQi{TwAtJi> zPxKCkQhkA#a%sNP3(qf0XP-`sJ4?n|rY}#D#y;Bip;o7SC(m=>=S{o`Ubs|ScT*7+ z1;KUL(3Y?RPsMrrknwvag{SB~hW4+{8;m-WRJZF>d@yXnIlDtB541)dN&k)}V#$%y z{OFgEI0(iPP<`4o#o-4*fXHF9NV-$@PXb53nCxIF?#F=qU#ZW@O4-+J zj7S$0w`?#~l-Xwx*=Ik~D*p&Ym@G+DNpSIAJ-9QU4*qJx&6@fUsOj6K9q&l9G;me1Si($vfw{!&}#Ur~yP$g^+u%fBQ;HIBO-#@U=B3V_P_c9B;RX67w(ybzro4wqql zJ3fw;q|BR}J1!ab1|RQvr;#Y@=b$@q}4zLHQF1rX(BvMF}K@9OIVQHRHfNZW(s(j^@RsDv^q zCZl?GBQT|2HkFe`U&*-771bl)l_7}v`5}|FUcGB6UjBVi{CSHn&yvjP-vFbnO!b#A zC=mra0gL(DbcHh6MP!0MacMAwSi#yU4{LgP0)A0B>u`w11`5|mOR4{v4Q1JY+Rssp z=BNLbzM)2TDK_>s8s;>Vq}5v)in^sf!YE#CR$!@A2jb6wc?*nct>4*BKP6THEE@^w zridc?=Z(xolNo}MFrxybC8K|lA^cJc5iT0h6P%tZI8cwdL^4}D1VBdWqWOP8M#A6c zqg*=5vP_IrNH5$<7p<#{^%w?XzKKA6Y~;gZn^Beiw8M&8?eP!`N3Eu86*=xk!jX$+ zsK3pk(|b?=vd?;fQj$_dt#`n%H|Os33EFapc=R)j1v ztxo0r*p*bIBOPXh!GW4%VO1{_RFUT}aoDpo4ud;wRs1|-Y_LOe828u8J@icAq{<2t zE^d*YRRzhN6M;`Bz^#E9?{oIL~=O!BqsM9gFZ$@ zg)FRboh{uT@-WLd7owBH;ioSe0*N-^zu2KA7o_ZFx?IXIGmG$kcDY;uNxKgqd<3&q z%8XaA&c-y&BBq~W@D+=IMISFLFd(%nIY7kVAvl`x;McJ-1k;&J_&%DwdrNy-E!(-q zV*}q!4(H{Szyl@6<4K3FphY5AN(%3j$^)f0QqGxze}c_`*f3YIs|^YH`?GiCVfC;w zR#KSGNXX+yU)rMs*I9Skyuq~$>8taRQP9ki2Bbys_*){)3qLv=WAIiB?8g@zeNOCAi69n zK|Nc!l$`Wy+WLQZM5v=LJR&W4c||3?=}c4?eS2Pg=E3=cfdfkg%`j$LOls==WtHWhkkdzkj};$Bo+2$Yy}`0ny7UbkaH1R{;v@Y% zC+vaVC5&6^eSm4DjGcFPZb^5wKrXB~f43Ej3?ugG*yka8`30SpE2y5P1~3f+dZHp( zH^85@cUT6p8*aq9n79_vZu}&KAJv0KGtMiHKEROLHs8&#QOdB%f*h`TKEevesNS^# z0`as`#%jxmHZ>m-e@pziIF!TL^)8s5`gHJT8PYH6pGCmJO7_w?O;Q&#b7P-(cMW8- zw}sr9ZV8=fX?~U0cXM`f3qjNZUCqh$iUe9P@#6vO>sb8w%$}O3T921Iyhm$bSX399 zuwr^z={E#5iXqNw22wD9jjitQ1_dam-$b+#>`rwPN*CKNlB4~TfaH`JkO-)KXi4JY zKcsF^JA7lvOg#j5zoO50#iPKvq%zcjabFjD0nFNw1vse%Lc&%X&sST-da34b>y z(*7SVy)%(oREjkRO}r-`3M%JIJ(rSC7aEYhg``X$kFM50Y4f|@Rn4%J@2dL*5v2Bc zWErPW4XOXL4;eGO=9KPjSkV?vsDC!qeqeZd*s(4r7ca(T_F$e+UeUOz4pDXk_! zuapcgbusPNDfbA~=`2PuZ34VZUBSrbpxURetzog9vEJ{dQi5kHJvb*mu`r2 ze;jrKkm~JkKgepse)nvfc&ce6oSO6};82UcT4p+0#*vA}!l5?8+9v_pfR%)mv+hcU z)iYxp`iti~sHdkg>k0;PT%{(vmyX&{AduuIF3 zfh;1FM4*{r?^=+OS^8@NY1Q{dfB|qjJm|vXtO13PNvhrXzJ(aH=Sx3(_9Z21Dw9X_ z;J_lNUaxfaOq=j9#qu41VXzb4z4Q^&T#JCuvOrp+zBBwcdB7;l7U$D;h)id;=We&} zP@;ixQ%fcy%1*t$fVJeey=EVQQk69KIdgKjn7+f~wkGeP_7Ar>5;r`j13L_f-swWq zws=psN7Tu8MBo?x^_lVc1|$blEJzH^*A&U>?4^-2BT&uzTAk^*H@)5}Yt{gn$Whav zsQ`kExrpB7bGJsFMllMoD*62&BiBv+LB`zx7ad~L`fTZOI`pav^`;8#Z*M>LX5JCv z2c=#4Cd*-Exqy4TTeM1yRu5SuiS@<=L}jY?TTXCPDKYm z<2w%jFW4eUAma$GtBmOadD=xNJ7az*%7@d%j?cfKxmK2&{XIK!8Gc-1xc%wy8YB!G zw<8wtY$h9`tv|}gCZ{3T3;uet(gph*UcV>2VjUxO{T%)D44`_J4JuZfb5x&Nme1Rv zRqvmkR|_%-+O}LCcAB5NTQDdKI9Y z3S_cNEBI8Q>a11ImFd?u9dqJ`?D&1DcLNxsh|-;g;M?!v<6CIN7C}%LUbbLh3M;+t z5jR$mnI|*A5Ad*T2|U<7$m`rfreA`yP9NuAdTZ^QSXq^Q`qa6F8gzph;a5AZ6|)9v z)o$NsLBP6MymzT9+l@1&Cna^`XnESh8VL$T#^pi0#BpOF@ODAc>{gGhA$E^o$q3Z?S32g zgX1u9Oz=@Mx4&+T!%ASdnI+nD>3$8epx~;C1|eu$Nm*)GFPKtTDrvaJ4S)arqPi`ek5$8d$}9HJ#*ANF(cL zM2KKmu)uX4p?DmEx0+de(;&KZ9ob8QTt>&L9T!X;N^I)6KC~ay|MaH-*$WOZ z)kB>2xB)nee4r*VbIRxsCVYRJE6z7^>JPFh^F}ew6`_ou_VuL++GN z+Q#r*4qc?X`XI}f?b4somkl^_@u#39=84Z!BCNDTg2Fv9tJ~cBnb=IC&a77_X3S27 zMz|xbw;b#F&lvKlWc(b3zxJEQp>?MS7dkAIX&6@vI@#hrwH!O6xgm6fSeLfVdpAdH zojgOzyl02raN|j@$L_^mc=DT~VCb~o#iM;*K|CEF02Zlz1((eVTbK$=+`o4$@K2;T zld4_gIARR#J!sk}X4mBHB>2e@p>pM?%}``6G5I=C_^7_xbGKW_HdjX4l>7Ev3A3aq za)L&uTybw=PezhMvmUXY41>Ne5F|z;BK+RCUVu&cD0?FH~@{8qAe1O6}|w z)2|!c$Qlk&>ivVV9L&kI1zpwYwTNvN;!qa9F3T6jWf zg+Di$gA23$b6}x_`NDfid{^_A9hIi7Xx-hR=}jzGSJ<$cn=EAA&YbZ^&)c;gB`Z!o z^EE8r;An?j)~mN}uCvps*C1j~c->!}gkLKu!6dU|l6v?^Ha>+5ujFJ5h%}T%IHYND z$xEjS6gqokdao%Qu{Wv8)7h}<4qQ7s!IzcF4~}56 zv0yQ&a(UYg4@JPOP%oohwe@Ajw|xAwfWc81&L9-3s+J(T*9x+4HV&P{AWbQKta@D) zVwYAHL6^elNZV5Ll3qE9cw;FLG>89Io?+EPo|`^z3wH=lbbH=+k{jX^0I{!kMIb z4VVPO=Z%@}DQh-qQYLf7PAXhh=!^(^!w1dEo_5-;J%7%dhU+VLy0vLKx;hfRjU9Q( zVWGDWdj2_Eg`#(zf%Z0f=nC(J68NU33C&O|dOE8G$Ay3Q)!^ii9s4|8Ttcm0#ak{iZ$m?Df? zbGq^Q)&FSeUySi5UDS;6??M!?WY3rYyMD@iqtbjcB4;Vq@zDI@9q(iPCp^U*2x{aF z&d*m(mZbUM6{LJAc@u+1`hJU7KNDfy#SXc2IZGxaDpY~fg-8TjN0GXLCg;&8dwp`8 z($oU1P>4fLV|CkzPW|q1b%!o-Qbhcu0#TQE+5yg+VCZ`i=2xK$YL&Vbj5G}n5Sz#O zgycH4I`AR90HJ7?&OBnk!m0~kDgXbOWo!B3?mgcdo z^bzg{+=9rITusH~C8DZCZ4kX#o22JZN`01qqGzmu8F$aMSm&eVxBoX!{0pQM7(Zxm z-8loX4F)6zLnq%Ad=L)$Kcu~NP+VQJH=2at?(V_e3GM`U7~I|6A-F?u4HgJ)L4&(X z@Cokj!S!zPJn#9=sXE`STXlC8^T*Uw4YStX-K)EQvT)%xBRH)Zliw<1#nuUZ!f938 z{v%L^8iOSvt6OA_F^{wV|C?D%M2BEjtlB-%62sH7<&SF9F;tiMxu+e%z5@@A!!lqH zXcke^rjga9sf(BgMXQwNKs2(#8@v)1HIQH@*?}DtQ`EQW%0KxM-^d$?c(IJTd!Cxw zw@J?*g0t-yiTZb1`;eGIgPm# z3)rQ(VgXBuiBX#U&s6*xz6LS==CGhoB^Euytg)MGns@ILIe0FS#NGYPXZrcAXyY?I z-myp(ezt{1fIEeaTj1#z|8&34jaHE2p2Hk`JKJH>h$lY8!ktbsFFFa^OL*e~LB(VF z^}pP^0C3k>3SpRL6_&v_0*=dnCcRdLD}}TYmsI8`enRkIutAS^URue_bNpaH;5G%& z4`JJ(`mmX8v9F-o1`TKo)r0ZqTpqBx$skZU_=U=0Gx(0QAE3>o;^HZq58&~SLJ%je zgublQ0Mzxfwz*rQ2xy~~p)TpR0oWLX&PJl&IPLAy_Bkn_8V_bHmuV(Hz33*wU6eaD z%mgt7(Ui0o7Zick>CTRh4USjg=YB$^k?Cq?@wT$|^x77q9#9Rk9Ig7Z=EC)lnUlka zz*KL%A$^O(?MGdYg_@Ft?)XM!4&;|CAl z+(Zxn4rgTol$>7A8LY-g&uyq1OgW?F68FEqh4VNOS_6iaVgYVPaL?zFc8yh8{ zuF6EM6q**}zeYr%XcTc*3!zkfjWkn^EICG{TjSnZuRKk54`MW%<>gf4Q1|~5l{~fS zL&iV;dw*{DNREXjwfdlpHaCne_JtgU7;3PV$Fk;+ODvD9QcS_}E(+;83SnWS+l|8U zL7i!6$d|q7wpv1F@d!+dn)`1b=y|m%t8kP;A){shsm>fkBf$u!7Nhp2N{3AiTyRm8 zI0({cSnOOYo3VQbq5ij!1QI8}D=7Kso^(3fjKxriV+rVrXsZX*EqQU|jVi9UW8&Os zpi(=!^ldT;1RD#!j*-j0G+aSGR-2HR-GV=zw$=RqrP2d(cCWigR=e}&bY&f2VIu9_N-Z76<{g12}Xhq~);WS;0Y%Pzj4IO7ztmcG^2xNI_J_PWz+ z8`cfznm;t)QvTcUSaH4hf(OqOZ% zcqiglHrWGJOS9eeCoM9p<2l-{&yW*0T^;>UonsR3QIC94SgZjd1L}7SygzEDJMSJW z_Rov>FpBx)&lJsN<0qnWDm$&fhCP7-ID43%1NdicZ}xZA5-}-^wl%DFBJ7K?<>`_7 z$`$=@d4Os52r;U$XpQGj>>auiTP=F6oN%#kFMyoh=9?Y))970JFr)8a1;tf?+cPOD zjzJ~00Gu`tg>X3Giqr6eP3RP4aq20Mf&l=PeH{}+oJmDR-DfLqsj zTA#-~ZiGGRHh;UyGsJ^9*u)*;9dRB$=N@JHw=n+haqe63Wn1M z0XQV~iub(jOXfa249mCVQ@6Ol?D?+x#N+wZfOiy-DVJftbG*HKus_c^{q|)FEdEcq zT|hl7FXSnaUXe-4tP81`q-0l)rCMXhyAVQTIs?m?Wyz;+KoIi4} zuLsXg^U7%B8UthW=5I1z_gg-^txWR|s|B$X;ITZ2Gj~cZHyAQ^;t79SX4bdVFwoBm z=*9RX+6sgq?8xp~s3mz|g6r#qOkm`faky*A9ye~9|4Yfp{H zgmIp2v)2o0t1)v9@dNe={Vn*oOdTEn^7KckK~7MM9Z|wMb`;Xii8Y&t3}8o2d_2d$ zl4X;}B?uqQzoEGDK-?v#ob90n#=FNAkFg7zvM3uNZ+bYz!^Fa(67GguoO!6kZdI>tqfym^>34& zWWhiMbK|bg{cdQGmz0(0G1^l(xvA7J7dMMZcW39cRKp#o4Brz&#t!CEZW^pG=jG6b zoDCmgRerC3KVRf7NzQu?*Kg*j#bW8%R<)r*M@ z+y5$6ZNiDZo>BoHjj4QU7Oa|!BuyvV__v}g#Zgo?6&34Si?5Sul!C0d88SgqsPmtp z@;X=~e;ysh`U*s|x%)V%->*aPe3KWEI+mid24y};3E#gQEyD__Zr=-@RdrSm)AB|J zHhqTAPZ5!dFfB|jv8{CF(4Mhtth3H2Op#fhd0x(ZmY!a8Ez_y}(T64nuOre6sqNsyw6v0Tn9(^#;PicBN~{v5WOEt;HSwj7;!Jp3ewJ%)tkI{(hG;d6&Y zzitI#`A>@H*fdgBAfB}pxC-fcJ;!a8=|eRAK0uJDx5I66QhF36`gKkz{8Kyk?%~T9 zCExp|`{vnKOB*P&tS&TXXOP9o?<;uV;?~aq@o@O{aEn^+0I7jOT$QZ>+0g#H zr^SXTHjCuP-!f9W@QK!8Um1^fqOYMk&}=R(I+`G<6G87S#AJsv?;XgFBLs5ebJ0)C zQBQ<~Vr3<_boIAx=pNkEkkc{ZUrga2I<2t1;)aAxEu$|+ZXM&CgbcuIZf7jtvAd|Z z$T^hQ?V*{xXX1TaoEv!n5s*QlXg1KsQQVLMl8}P=Rh7WLyFM(d5wc;=ydWv9%0N2X z>m4A*plB(~nG~T`zP4^v^)S+sOx3y=bzN_>r9qhr&aL?VT=$c~ClHFPb6RV_HHnl- zTQ%akT2i}ET+Grjt)T(r3+0nm`#4n6xwKtWqjWl>(m0Hel3yV8%fbGNU5!gSR-o+e zY?T%rWcBRWRKRD}#u|xAl_5+dr+?X6`pcVU?lEsEF@KNVhxVXEwtarN_?>!xm-s!G z9($G9VLI8NI-r1n9@D7KLFRp+{)#-o&31&6F|p+(zdVn}LEnJl9c!Z>?#{DsH0rTu z8C3LF`kOYbe%d8jA`Po!TF&>4>S)ZGIfEO~CH2O1*B0cn!c|p-@e)*$%%COt-{R)a zeJ4SU!ZJ5Zylk0nDX6?v1K#bNKm%wj}?`7u2c^lU@k|2^*)H zS1X}XV)7RT6S#pBK&NyGCD=O|CuD5(@$(b5vp6ztS=8@7SH{=fEXes;&ya*N zz)@g2NA0Fl^5*yc#-J@PG}vNn*m!mvzS3#aiw{lNC5B1Ns{12_cVPt=UlunsHtO(n zwWTK9j+wM=G8~=Wc~~5v4q!Sk9C-RIrH{0I2su}qbjyxzo8c#gl z2Uxt^8S{9yHz_CKk`0vusaRn@7l&tVMxKZygCp+A%s@os;$?R~SOSfBM2Bx$c~lq6qifo*9Y zK)cGpvzNs?s5r3>57re_#ka2pN!?ijc^-jWFD(!i8L2zzIJFN7=n-XF6H&#MEdBZu zfQlnnfS$#{l9-^Awe$yK&Idcd1M73g&x^zGj~HQ#S5GI~gyxfOD{n7vZ>v|tSHj++ z1Gi2-5BO(pB6rmNL5XNMPiA!VVF)z?U1EyJmYz)i?{8tK-f}BF?+M%ZOBHO5)?srh zrRRobL8d-tei2?ihVpRZ#Js`i8e2SX)X(-$;Jv>mE0$@52J=g$IjU+xx9rdHGA$~!(`Hkdw$uVz$Xs1#iH{Ei5O7bF*-8vi9V$i`FZXY|=q5wrW9 z;d^?4`MTd!0$;1?RqrH8oD^v98N>Vg_b>{E8#Chr&vcb=Sha^50*2pN_ut~#(H2%R zrY#8DsT%YR%a(u1q{T--Zq`lYGF`i|?-1YKPd`6A^Y5^vUBfT=9Pjahy4{v||9})6 zs~w#zNGPe3ad~elGg8R?Sm%tX=VJzlus$d{p*)!rp#3OQE{bGjTq{bhW!`I}JGf$j z*X#Y%hFV5I@bIT@{5%iveoAHeQ#8ZU4qGrl%A;4O6zv<;AWt>CSpLA~+2d<^!DTbiL9F*k=+6#&YH`;g9iESue;_8eh1ra)(U$?B!S65c)u-n7^=%RoVXoE zbwSWhraM0|e?>tho(-T7_CAmap%W#>InpJr@m^sNY@4d1g_e(ZZA99HrSAlDRMsyUb zE@}3}2Y3G#b)FG63%DLP(h~h<8YhW0-m`-${h9A-6!OvcnriRr7rsNgz7~;oWvnuhq4VA%`Cv>4PC^iJ%u>-sI-IW&`Luf? z%bT&7Pt37s&_n;AbY96}ZQXq{>T zT;A+~4&tj$1FlIXNB7!+f+FJX8{U;(Fb`a)i+hsd9E8nSe7bVIZ5-{O(4`Wo_4o2k?67W&pkix?cvAh(}P zXkOD!lui-jdT`Y;IVt==pF{ZpT1G$+X?0*{?RZ^ll^y`C4ek|~n{+Qm`Bz1-|M&xE zXl31^zk+-nD?M4*K4-&}Yl! ze!-_RB%6-)09U~deRJlW>reeD9f&j@;`H?Q+!RfRD=5Lw-E^sfO) zBcEb(HBKod#(ckpNW_jl647jpwcUt|8_`sK1MGSu-M2|~<5U)s3)R6t7a*&ELThfY?8s``D5#7wVvDNO0e#N&? z!E{XfHOE-ucA;^ofbW*$&No9zW?Bw%z3irFY*uawuk}VT`9DC*`V6#JA*Gr4b4^gQ z%Ju`5rB;2&01byC4)Z?)IIDn2r!QZr7-&*!d^eRYbu;2%e(KvF2VQUneo@)P3(oQv{wY5s{R-Qd}{e*Da_Do*mu z1K&xP^m#~*)vWD% z+XSB2Y=@q}-}A0gE&AOR4YwRWPaC+_Qc>y}KD+J_r)>v@QD6e$NGO3C`s;DSXU zeF}F-d$s!r(UBTUJ9hv-6-MF34+j4ivinDq zjoo_qvvd3O=EJ-sb26)K-n6SbMzQZ1T~&>&j5FFHbl6C1o9-)Jp?e}VwJ8_u1Ui+` zi#dVAj)v~8AdGEWfA&Dho4&@uzxd-VRXUP>`?T01t4R&cN8(0YV>0ydht$jla-y@k6j& ztrH!rd{@lI4a)K74T)NCmaBIa-Gd1FH7$h^YA^DihkmT{%J{a!(%vw2n%$@7k)?@C z04eW!IJOq#PcK(K8>f>hwu+&xPbl3xAI4a^cp;F(w}^dQK89j~3`%D|JI<^|cNRpD zjFhu)eLgX{OsEw7w$?50(@IZ(P5XH~ZmesuXSo-PZ$K= zijiLH2R`;MSSCgyR=WMDOA%eha2<7;=;S%@bYM);!&0xQql z{&G=NY52*}SM=0?SfkZ))GCsekok$jZ|!q{Vf zjCaS~XWv(ZBIwaSYHZ6Odw3P|mV#Ln{|@>7ZmEey1sN!x83tbnE25$3QW+^xW7uA_P5l@hn4Kj9r@&&tC7S2`CbLN6XT*swt|tQCeRkOE_HZpm*xJCd5EC(5-vqD=OBFzy8R0b z&T{_nGI8nuqrZ;2OeBFpzaQugFXj5VKex5k9a#hr1T7-kXxwo zOK;)w*sAHuL~HChq1xcbXUvuR0olCDcd^D0aEsVY^^Fo6B4H z#r4sP2gM(|h^x&GNqa5j@3`Xa=nUTU3v$5d<(H|IASBiGorUD!%Sj9kZP`TM-kfsj z%InHvljBkIVjsl2xmByX&nQ?rZeGMWRgQEa(G{x>dwrE%M&a~^70Bj*LUv^ry$^u^ z)o&4w-fz9BRF}AUJyra34WgVVRu{a7v@~~Q<-}8BVd3^FH1x5GcvVAic#QB4| zqlK4eI8~#HRC`%T+tToOFu1JEb4c!t)o_4rsJidKgZK$aI zEH+X|NbPB#JUL74SYO*~jqKL4KXscyVRx1kRao>A@+~zf`vA^S$4hWn#awN=9{OG? zC+RW>+EG{`MY3yhGdzLu>EXI^RLc=|FE2ZT?qDJ)*;V#ntdfq%%M|Ca@Vgr!#y`pT z_0`I&kp-k2J44=5ZKy!TdWlgz{#tKpyOGN?qD)ddG4H%-Uuc4UNG!GM?d~B~h{F$A ze`}}Kx2&C+5s>iQuQB>$Wrw=5g7wWkzHt?g>$0T^eKbDe_|T11Q$igaI z{B9XsEeO#!tPb{c7ync>?$AIZtUjelz~fdz8*Vg@t04GMh^E{3is{koH#+iln-pQ< zA$GMOA08E3UF>J=g}hz87MBM#}ubO^DJBPP^iBeYcj?Q_a z?6zu`gO4@tdE|hZNVXgAMtr)jOBFya{3M7ThW=X~N6;Usd#Ug+y8~y{L`|0|vTFUZ zM64i5W}a7L;ObT5b&8F3{kZVzCZjlcWSlOzqy*NcVw)-H?;}5h5(=Awq1U;h8-|h! z4{EwIo*^ISz8-rU&tinM`as;@)6Rhe)+ku}H4YIztSrCiPRtC4yhzk_eI_$l!5s3S zE6QA&%HyLf3N)Oq4a{BC)pXG!j2qwL5c!xNB;XiVi=`x|z)ChQI(O);IATGg)jG0h zqZ5^762Qb4ty_inL&|*E{`qO45pwkrC#>mFxl;^M;ivjw0o5d(B_gH2A3-}u5QSC9 zr#oZp_Pb-IEO~}tKI5$6e#GU6ko9y)=x!B#*-CbF#}@asFb79(CtEakreJ{!0tuuq z`f>e0_8Tm69!Z_&Mv zRPBQ&sILBfC3Z=zv@GxSfQ)D}Exy(8$Ka|4U7?hvhMHhkLsU4iH@yo*g4sk%^*@M$ z%lX)#1Yg|Xu&bhwG_|>c1(;#@zv5}WZ-vFNuHKR_wy)kY`UxqG&rP@V#Z7CH<@MQf z{hwdI#I7^1V7S}JQhy-gfrY_(Ozn>q*s`PR zOU`d3ZcZHr4ilI`Qx4~lLROCW80vMX{H}lMn%=%NgnAwV`>*r|Kqx4={yUK8$X*Ym z_|dHbt|y1Wu0L?f%*gC1k9{BbBLOYRngRjriu+k9h(}|Dx+{GdbY~t4dP|?hYv=%e zbKAfXdvT1A!mj5VL=ltW2cSQ~wJ-qxqSAk%1;ytG+LJw{Y|YK;$OcKNNx4m*Uh)a4 z-^#Af)kx%uWkygm2Ma_F#f9O>&C> zI-i;5?^(m_f5ezL+*{t?@Z_kD7PHavelPmnT94N<9V390EzV%tv__$@^kLpi1j8+Y zroDa@ndlJzPm_J(9wzf4o2I5&7`gVcC#1eyCPMO_KE|}N0uf(iU&g?SIg8)0ikFJ} zcnIyMefy4!rYT^uZbAZulw#rBzb0kOQZF#VKW-FFv>a;i2od0*9^v{LYV)xw>(=lX zzs5?aZV5czYd3k_@n66gO;C`3%auKHMKAPh!Xpj}e;U3`o56#GiqL|QIV??w_Q_(O zPDt;XQfD_rLjIQh@h3`2jd_jPHfpeqY%9Mo>^GIrqn=3^PkzYF>l89RNtY4nfU`Q~ zUh{}6>4mBqTmo_JhbNQ`Gjc77!38K^G4x6#2Su*(bw$tEVrU<&qoYLi>Prkcuyvc8 znsdy1@0BeO5HltjSU**NINU=9)moO-9f|4$?Aa7-^;}$0&%4TB{*Au%L==P3f`Q@T zI9cskA)}9_p4KuKf4=yfBjl4m3#l3*m5y1IReXRR+RZ;3IF&>}_eZ>oj#q@=T{EE6 zTA*KBr_GQ!<>_uTF_1Q)DR|K;%JLX}Do2TTTAV_VDe@rqGetI$8c7bx2D8nglExnJ z*MF+2!B?zB`+jm0gzDrF8fT$i6J}iNxw--e?J?tbHlc70VVB8!^K^_nu?c{%wN-QBB-s3q zV^O|3AZKznpZqcHW&@F+=X%)#1%IWz~!~x zLzt(4^4n@DJz23+nIg@;Mxvx9m9fh$bcbBEyhe-SdS%US=}{aNkYaHWr4&o#pX8J> z*D-QAb%&c%q??B51VwApcQU$v?!akt**isih?y&KLYc4^PB_+#hv_iQBt*_dkxzP2 z!ojzXY8rtviH@MUEfSIM7L_Vml;Q@1qdjTu*Ys$;*^w?bS}1SP$NbR84VOHrLzZs} zEUv7XSfu%pb%$$Fusz>Rukwe#+2`ai7BQnVkjnrUF&0{eFA>IIn-K+9?Obm?JfEl? zp|#9N;Sskpz|+(jSFsFWbbOIoCmEw2&YCv+!~Cw?V&j^QC9NDkWKow z>}5GgPh6_jZ&9oljpeNMnd?bB2qYR(GTn4U7VT7aYfR!AQ88EwuF+ii(K#sUF->%K zeWk1G?}+wZ1qBeA*OeVv$M*{o7DUG-t=1tD>L-4!j~)0IF9bEW6Dn4RNY3^Szg;ev z=W+cYZkHG_;kkEqy|nHH*~q_<$ivcuM0OTGBd%bJy@{JQg5x#Tu?Am8%X)Z6Bt>GC zGgH9%_YOm+jjmy$1T$tgDAHtp#-|tz7mVBse%HAK|0L4fwQuGapY`YV>Qh4V{=y%< z_sv{!cMtnJ|JB8UpAm5>4LleuJQVl1tAtw9x*}SVE)Xu3-32 zylyU`*icUca^hK_Pxm%|By0%OvE`g1$SW5{exswt#rQHl441BbH8}Xl$68nPf zaj9EZ8oey+u(qij$Ys9jlieGZIo-qL#2^af<4&Z@K4QUpC4W#xdj#fS2P>JV< zk20?LMHBDQ%vn+Mg?wE!`cj@ABBQ+fED`z7L8r%>p$pCPkHj zR+S@&L*7x-VwaJDn77FsHiI6ow{Q9hM#8#FU3#0)X&ZZ zN``gZU`ep5BuMUr(6-vK6p%hGd;sZ%9|eoi>%;eBz`sj5<-AfI zgwA>EtV<$-z{;-%)zJF*X6LA?S@MSI4zWyf4{iY`?&z$r$y#3HJ?EdzxjaGVq;Y(&1%Yt*J8k9`I{21P+QrGwCEnFqae%KX-rZ8TSV_nvl34? zKTDwCrY<0(m_%SqOGvk=#f)7mYeTU8}2Wf>;Lor_pzU90rDdUO|2J23!hr zzRNB2YIN(fui+X*%qK#yKYGqjbWo|!_oE;LnFdOCi9~XcrVe*W+MWg4&IiLSK`$eG z(IuOCg8{LUdcKH~>asmx5_`*Xw#QR%RBiQ3abnM~z|C7)ofj9ajPtO;}f|5SsG3*unYCvUIL9&n0V1EmhV-Jqx04n`IOu#&PMa(2zC?dq1 zL?VP+^y6eM0qy{j!R|hu(m$GRBJx_S3AMdlI%HPw)M4-rgJN{I-5_`T{IKF7J;Rqg zFrzLC7^(2fJsJ}0QW+_o7#zi=Nzv*iP}%G9O>7ob@&sV`?>q&gUF{7j@<%jkc3PL1 zyQVDpQI>w)qkN>fmDW9bm&P)MEzrC(-H>uJA2f`P@uVTIww#h3Pz)jt#7~yNwz))K z+(JmRT4ayP`yq|thCC|STeWJijJ--?w2OfAFscOG;%;1+b@$f#@i52|rZW0+PjNtJ z7a}J!bS%-kC$C>1MHt!G>hqKyzORlwBDUuvmSyX=?DGp5_4!v%7~Ub~u7q-o5Bk`) z9~D{2-s|a+;$Y6fj%#T?Z&OfEGtvtGR4nS` zscl&{k)b%ULIPw+hYQ4B-og zeUSbxxJ(-hW`C(uD2l%3jrGj_JKEseeFfJ)4rpPdQ;`L`;+A-H@Kq-;Nc%{sJc022 zq|ili5o8?hA%?GhP!2?CoDEgkLI&pVFEPiq2uz~PT#3?nC_gEn-sAlP!;u(d?n0Y? zi^EpVMnEW@D^`H4?HvZRzlple{IVSyChr>zt>7dlYi7)|(UlWalqhq56n=6D*fe`D)RY$3w0(jUZFyls^|Etbot?B@IelG1-Ur{C4%rnous__>_BU&=4 z7a)^5)d~AEJVRc|O>{e^8BE$U zwuHTmh#R`Xq?&5(Pm#n@FDgVu)elb7w7aNm>?+*VgYM`it9-5hkI$&&m8LKpSG8W(N~VeAGA0x(se{;*rzs_ZEb7r5pJ2y@1`{Z zevT*@8(Z-Unlzli;Nt}|2_SaG%zkxriA3yQpv`RX_r^`UDd4hNd$6Q8S~ z70=u0YgFG)FD+yI2lI3GALfNJ*D$*zM}?u%K>CK+&S(#%l`>=msE!*xQ~K>qW$dj{ zNu07nYaPaBYL4!CK1f83vw*^ObyY+wvHE;ViH-QW}&Q` z+i!Em$#(aPAi&n)7Etuabzrua_${4%U;QS>n6>YMDTA}B=DNR}? zO}!dzxkn$dfK%5^Dj^+wdz=ue2&kzQyUUpYAj;$QXstf>B}398j$<5 z%pOaTHc=)8r+#U5hkUEcocTP&9EH^gH+F89qbUeVz=i3)SX;`&bp<)RicW7fd{@A5 z{sxrqC)dVeS=`uMMT+M3q-fjPWkdlWrkpOBqdg4aB>1>tR2uZL@LzMwxJx_Wha9oB zwcXRdFqj}cQboQq2nlX*M-^;BJiH+vsOG(3%Hm7SbsriX4+$${qc0#PdCm2RYKn?5 z-YpGA6(K*EMKi5wn$!`tii${DWFej5F;yvT6_u2tAIr;{Jnr9*n-A|EWaJv(WIHqh z4ghMQkD~-SO!OjoWk(caVl)Q+W8{ zl*QdvbpzM0?*$+)+epXlDbvTxWAVpLp%AZ(0;L{a17&l3e&`svH79ZiYoz4$=F8@1 zk26|=ftTC8N$h5BV+Wl`}PP6 zxhsBjMz?Q=CmEBrH>9l&2;=qhXAO*8!~~r zjwtTQ5(p99zF%5!4jVVJHmMNm9H+as@d3*tyKB61T^Z##Cbt3+11*c;NaR}^K}gvC zUGuvEhu8|nBd0|MzvqZ-kLmMh6IYn_VZkl-&;l7Z5S3voae52>0)HlqMnb2#W8iLY z?>i@Ypkh;oPcQSM;cu@-kXfAW)UM2pMgzH6iWFjQ+Hi=e;%?&mz2}GotvoYW{hmh` zHZ!MYAwX9z*TPb{w2~XbYzP?y?~tD@$;tA){-P0P#1ayw*EWtm%tebXRL-9dM{~)!%i8dB!w4bjOjVU`Dq&%QtP#LoUH}z$F^~{g|7*AOVs~um{$n~u%1X6 z=~XT?3O(0_*v$6@psGG7)I$hV`nj1%v>F>XIJ1Kci4o-xTlk>0^J&B2LBaV@kB$C6 zUz2R{aLv!UkE}r|ALig-|Dig5JV@jm9HqfRP0Gc&+K>QH`-Ek-_o_0L}fVOO}t+6 z)wS@-!(e&h)VTbb4+PZKC1Gv`VW3$#0FR^4cfad3e=GZ`;9Nnl6=LzwXO(VqUTPEZ z{;-3O2){qB_uZAbDkn@-k6@n)Vm4Pa(8&N8@(7(cK@^>?S$e$i&JB9Z9-SX(ugkqk zm_8aP6FUhN+Q->7;($KJB36|PH?6q0;rCBu1~DW5rP)f9%>p@>YYQPBLq}Rl)J&b| zLS{=I0OI`a8S29)Tw3gsF#o|AL{R}7MA1mifV63DZfIOGCv#|x$?Wf~GCh|*Y857Uc z8cSa|ffz3s6gJo<~B%DO5J0BIy0j(P1zUPY2HY ze%aje+ZgN%!QwP33K-S&KPb?Frk3SGrY$eRgw{7V10;zE!fU<}cMDl&%4>BcNW|D% z4e>H>cin-D^bB9watDBSGz9awLB!GZd)Y0Trg0tirPf^IP{f}hpCe#W>Xf?r7-d}g^UiyHEF)Rb zmpXMQ85fg^CDbACMWbPw^Cv4Uh29-eHWXD2ENp<$*r|!Ho!qb|urEsQ_k-=iy)CN4 z-%Xa^+``$J^E|;~`Q3aTAm!%kb1OVn7$1P9Da;zH|4B6VURL4tEDc=E$3Kj!6#(zb z1wr2TZ(mPZO8h`2e?a{hR8Wtm8j~?FxBM7DnPHJZH+$ ze!vssUbFQS4>k3doDXV)$&H=e(mycbMoOzuZoP`FDU8tW z>HStfu3ECAeaiLPAxLxG^zmX9QkoesjDNj~3v1mZga(;g>y4nv8b${cnI;up@lFUS zbyiNDTgE=Dg=`6p?IFMMHx%g`zVsTR^b4*Kl|BaD+I3JWD*@Vb+K%sz&qufN9Fh;` zeqVKp`e%lpe|xu1b2?=S(?4`Lb)jg_`%_XmvMDCVcz}WqA&VQCZpBxr&G)g)x!UN& z!KL5S22_u~Z*)pq7=Hhe0EZ8e_+=Np{OJfi8W}A!xS*}Y(eGF0t&iWVs~>wI*HNJ@ zmEUh@UlyGIEIrBpj)eiHO+0+J1Vj!r!ag&eCd(*a8FUXATdyKnP1OK!lB0znBqOpw zgyiB|s`k~uCbAOp6KxxANEbhocil_Lz6TVpObwElBD0&Y(a4TyUjug)`FJ~}7j~Jl zidn3&zeI2&^j#J;ck59!TT#0b1a}}>GtFVl3CC@)+&!D-^zAR8{`()2g)DvpJJ}!( z$1?Qda81smOx=!64&TB#^~<&7@p;3=O2pczQrd0Y%_4}s zKnImj3u?u^ibqC_I5~%y&-yFJCIEF9cCX5*EjKjIW5>@gs8hW6$87bc4q3foc;X+kdT(8BU_8Wb_Rn^|zKR-E z7jTsR3;k%Uj85qP^gBeYWoiwV4+g>!clFVotCF+2A*!~F@7$V(2T>8O<50U4uKO=C z==F#X$Q^YXNLha)q}Hs9#HHX;$qv<5KkkP-T*0{+O~kqL@Lro@v{_0ecPl2w)+Yu@ zrAltd)4bLS|6V2l>D*EdfOni$7)eO+7rZn~W67rwr3Ez`9s4l24#--k09fqLL za5w&ao-3A-u&63X?4!)+NHYWp>ztoMVl&)ur)l)z#2L0h`V{#RG-FBEPR z|Fx|7i;+NZC3~5f0J~?tqd2K_>g{w`SO7)MF%(mad%0DPQ?%q3Slu&luTR#9u9Jlh zsR|pPHxk(@dL3xneAFTFGCe;3g^zyzr3mgf>;S6Y7QJ*iLmy|vu43y?3%u;pc_Lc? zrTmgd9Zbv<+XTlH%+G=Ng10Jq^yxp#3MlocyuvBIQzj&3L1CLy)tK@9m||VubMro# zNA8d$qj<^yS@UEw9-r;`b{WM0OQ%))x6S_(X!;NT2U)-%_K)tvEOrnDltDS5biz=T zt5}y2TT!2e^mk~?|38Mtfat;-;0@qH0P=1A!M|m#72n)H}Gv_wR?8t zG+q+Ln-Lcm($t8F-!6%S>Wa_k8}bJ7am~5qV8@VR{?6dkf@<9xVk$XAY&OtBB<1M3 z;fyIId_0~vmbE&O@L<0f>e0`!$c-8cL#z}ERReDmtbX4jSRP!q<9RSbY<|U)ABdF1<`&lj{8E{Kwx7F5chMthNnihl=>(v(_z1YSIqKf zP9r(dn};r#kK8?y>}BAdn%}MV_8|~_R)QY;G&R_-uF*aJQ6~t;{GKJG>O&-5P<0}| zvW&vcjB~R}Ov})PgR%$Bbmdq8XObP)*O!F{M0$*@aK4}|V1hJ+xD0r6wOxRJ1?*w3 z!Cw7JAjsnPLP{TH&chn+S$jfgLw2ivZmETwL$KASgE5@BZ0+Y+ zMV2Uz`2R5?Pym&XA}j1AQZ0~y*qL$$nt_f5jS z;OY;!sjSj7qQC$Xnk_iudst8#_uwkl3F86Oni&-Gzn1W-4xEw^Gmy>`z2aL=1txa-{WSm+mDk&Mgechha6aKEpM!W47$C0YD=A30s?N%ZT& zwch-H{F2~%RAF~J+C(mh7a+cEM2D-Fr^;Ej7@iLztFVM6_{ZAW8omK`Efolv0 z59d1f;ccW6{RTnhTyre@Y#)>@M_=F{_^u^1D^FR25^Dis{ON`1$D|^|=?7E`Heo#^ z<1tfy=V{Dd;}g}IRcn^;U%2Muw-yp`+j>r-*WN(Zcl!g~_Yw{62}SaeT{n~B?vvQ96_L3J;zKSpNB zOL=j>xjxONPPRgr@vgbvHK-^StmwyG(2JeMm2k?h z{x}Q9`4;uRjbC+dd^z8IRgvEZ)EZJ+KRnjmp|{?Sj##XkvyN_UKWm)NEUDen@`xT4 zP#i<^6|UGrA`KsI<8n7Shs@okI-cUwRc}To?1Q4%pZ7^jeF`2aEdd3nqjFb1`I5LU zd7znE&B^s4Urz1=%|}GWarwU?HynZVFY-2n{E0!sP#WVoJQGmp*P*d?4Fr<-!O-jABIN{ z)P!aLDNYBxG=wFYdL#0sNLuorzT9)uL4R zV&%wU)gYC3h`Y>s=p-en8S|uoe!abk;UXfN&21;Xx;FaxmOds=6`MymRd>#*>QinV z0sWn#d&=)(Slw#ZVi`hMq+#PPL45G$ZW6!R-y@{jX{WBOuiXC8B;-(pL#x?4#u%M- zV`5kX4f0}6Ee%f0~J=UZtaeSSP@ zka5=n@|l}Hehq+&HPK1a{M&{%=`H7jK-r@qj%E;bIzkmA;17|Rzxd+KfXWi@PaS|} zjeXf%mIwF~IuiZpW7pSfU~nVz$-j60Gmyb$lk`T+jOe@V&+?Nw>d23A`>&$=*P5pb zz{i&wVR0&ulF|$=(8t3;U_?zi@8Z;3&l50PACXMZn0402({LsGYoYI8ChJ13_C0Dd zz2*V6GJWs!G9v1d@9*fIG2;t9 z3G5UwLrBD2@%hdS)dABLdF}H3Owq>jsDjf|-w$Y%#67^GQp9erU*s7~CZTTHi$tc$ ziBNERQsO-nKqRRBGMqY;-K;oGCN^BP*IGHpYS;aNZn&g0^(dh`cu0}usQ{VqhJ`x4 zW|BufBari9ei5BMkA2_DZN++H&d)l7)2Ap)>5Js{k5xoXk=b;Ru`I=I}nw(9XJK>3-8$ z@LD;5aE+H2!b6><8X2Kf8Y<6ZLB_udW&_^TrI0y8%*%dr%;?3H6E6S zHi;R}{Q`16l=V)gmm2;v)c|(Uk!>qCJKXsN^4?E$aBrO`GUhbQ* zh(9Y|lHD*A2L#0dSeobJz=EUN0IUClo1|gpy3cC(e02`}!yq>b&VcIrL&49f2!5JK z{O_#ZmjyEebNv2cAt8G=zgr_f?TR@fE-7NK66qgxEfvBRd5-v$XrdeQjf^-uqm*T(kHxT2TH;~mb@zVj%irN0YCP!ulAgyZ!Idqt z@>Zyr{y|VxMQx87XA3biJ~P^Yep;bowZ1bv=svCXB%HoK?HV2X#BS&9c8^*kHzK6) z2PlbY!a+?hddIzhhPjcSnt^)1;#`ymn5c-zf(#@cNtYpprFNOU}RhFQV`8|t#{T2>y7Ztn| zE^=-GgjeLb6fMAEC+_{*#A>owK*kfsKw&ty9ZV0sHo34;=>r-@~|L z^m39To$%BJIgpYA)k%ae6nh76d2(bfiytb)(e6Y=y@TY!05d0V#4P@aVYcmrg(lde zh3H8g)pI*BhpDxO53F7B#Sd7NQ|_PLdbgKeI>l?&cA|!SC3d>f=qL2$9kIfuQ#p+( zhMOX!v&q)MoFFlgTlohiC*Ix9Qh}(_h3yFnh~80@*MHDZr5H>jQiy79NfainEO7NF7MkoWD}I4?Z%)Psocg<_*d(! z$YN1}X$=(PWWtZN+u0L%a3=1OhN@M8uV*c``gy?Etn4;&5oIpn>K_8zBsCQEFchJG8Bx~eQ$QBJ zbUv#NcGYAb|ARRq{4=R3{Y#l&Ob*fu0FDPa1927$gLBDR3e0j-HONPROQ~2#Er*n* zW+@*C->CY_m9pN+#n1T^jc6FU)H3ewpbzWevVyjTPNq1S2L4s`!}-UnI{jO``!x1t zWfX`bvuH#r56LITR)t~@u9q9ZCr z&~6aDBVo$CRXJPG+ z2xk1UlM&+|w~ikOUBF36Fy?%Z|2xEpb#K9N_RV8bbXlUi0e?u5cpqBxq#Ej%6Y|@}_oVMKoz89>Dyx-k3e?##X@x_T#y)M7G^NTRU5AZ32 z?_!wIZC(ONNT0F(T(47=!$)#EqU#yOU<4;NOw2iGc?}gZ+Q7lKq=*_(c;cJ1)?i33 zcMqlPMImar_t@-rO`6|1*r8KX-IJC+)kZnYhh9+%c4v`{a+H(~fh~)2Qdd$O z%8kHf&8YI?h+}6q zb(uswTmu873A)6%&1 zwnq~`xdwvU3p{oDN3#_M?#N>B!1t|)Q4Ci%Y!JpC1m1eOZ{om~`@zVrn^PG|{s$>( z{clXl4~Hc=IDMp3x{}Baj!mcXJbQ+eY%G!gFewe~a0}+fyEDqr^_ZW4u*foa%ig4X zG*l0jw&`R5tD7uNFRMd+xY^5Z2NDvAdSW~9bm+?k>{9LLmzHW_Eor4E^CJm&M?W|I z-KMESD?Ou<$>s@_!|Meq+MkdhmUjcK&hD(bSz1)cO_n>6Anu>3r?g~T4c8T^7snVwWO2Nkww%IAuxzn zWzQ_gBY*BmUIyd)2aX&6&Bm<%Mwg?jNrWaX)upxnGP78)$D~3d)m?&~Sd?~U*TCA- zNY2CPBKFvv-Jz)vF(~{krLjt^RP*l=;U^yVXZvmO`STS~S94S4${aTM(#LzRh?y*K zYM?N?{sDJ{P|{q)aB*Fv_NsM?l?@pRRAj*}dLEgl9>z~xX00E6CX)vYd+uV@zP>~Z zf6%wPD{w9Dx(ouC+7{D1%#!7~$|ec(PA&NH1AGgW+v{+Z@!+Zn1hi%2x|y_MnvU65 zglPN=nD;F!OrL{>uAiFQQ)b9aQvg4W8s)A17HeAMZ6v-7d(heN3BqeKem!84)kqHu z!*0w__rs6c)*D%u@^oR*Y_sHz3p~xKiA|CBvp2(U9xK(FZ1bV`oYo!)sLg&y2>i!wP#vX^!vY2~CWkA#s#nZ+jT0B~#C_FxRhN5EK z(8h15>*j!H+arGou+C?8>M2a+Md0qs*QmNglg#sr4!={C0t;vopZL}~?TV*(Ib3P! zg%o5ZQ9A5yW{(EpZAM83K1^Rr>t|ZtLt_Z2Hl^Aa?Yr!aj$H9xy{AF^>&D4#UE){L zW%&b6U0T(7P=oD#&vMv(K2f060J?GmHLlfx0z-kXU{q0B1 zs=T5>MT;3ztn&T?^dHJ?EKxW#;(hP&!Fwl8><@*v%XPbVU&lJ<%E#v)BTO#zfdyix zp!Dg3j4oxjZs^>#%y;_Ng{#}@PcaR!G)fH*qF1wZX`@Iv?tm{Xt8QS34!(bTOCG-f z6)GDYOt0ER8mBcWg+xpT3d%h{W6{yoN zLztwHn0+AUAXRgx!s+EM$y(c(dm~ z;jUfaf_Sr#+UNW*ityO2^|f(zEq!-x@2 zvN$)|$bl}kIE%KRZ1h5#=@tU=8=RwAc@g(#wf43WE7r92n~TDp)htl&Hk`rfdGjv0 zfD1eznix#;Zi86}yoUGQN=_gqtwE8ZBLtM4>z3hq^5i~`JK<_5seVew8j0J1gEHd1 z`7@%7N4rqhHs9CQts$6Q-@%yE{lAF%MULK<0r(HFNhrOiUCFxE-NSXTTJ1|w&#HCN zQt|qO@8YA+hZ4rcRvyqyY(hY4Qo<`QJx7JV@6@2paKfru)=VDNzKzi zdBV4-_R@8`$I_DsT-b;;Ux<>&P6EpZ75td?JkBw*;{IJ|0d#IV#}g6yCQua=7hq56 zmK{A+a}}&kk#4#dHID;!yOU)W(PkA31}R$Dt+g-?s$|`pd7t0Jk zB-oTw4vNns(K|B(8>^1j3=o*h?!<}HPhIFP`YK-(lvDxxNKMJ}r54{i^Dz5#$(4(N zxm!v6-64)15zm{wO3AsR!tl?7G{B1wxCO zIB96G8wX9}6Sj!VZ}ED~j922`X+`&>Eu0#tMqvlZ;=tUh_?Sm=uHY;n-Yn{tYI&Vq z@Y;U|4Mv*by>>W8;=6BqZw->cP}1=o@C!P83dUIq>4@@5JBpPszC*gXyJMUd_&Z5{jd*9l0x!aHhum~i{JN_pU zvS_O{`-Ykaceyy<8gYqu7y&@=49!i)X>iw)y^%S*x<^%#Hd?LRVh8qRzs` zw?9MdyQFy#Q{+-`wh(pTvIPyFF6Fg^jP96%t_tHvcK8vlomEyra`Z`H(`EktcrmSO zMkWJ84&GVC}JV2Jv=Ge*$EgSjs@kfx%t(M5??2MVMbkvv zj+Q1_WpQTM8_d9Z3#pqc<@J?}bNHZ)%vS!s?N*ZuGw;bV{Qic4HGpzc z1Nm5B$m8ux^sM=kAQI?&qKumWc_NedMS{k0<|t!nG_PN)m0nSzF%i1`>4{mOXr7h! zGOgY)ARhRA)G>@Pt4-yRyNAV}I~d;TZ7)j0YPL%XmGjImVS2fT8C=k6j|qtTe2_>B z5Xa7QeVj4aD&(%cYu;ehCD@r$@^t<59941xOuu)Rq*ZU1jst8|5vPZ+48iMrdOb23 z`Fb%YRuBCUI_hn!V-FJ;{&8-gmA!;XN^vD}oPJJx7cau-A~bkLxVKR6G}@5qb6|SZ zBJGRhGUuFQjA3O}Dm((gvAE7h|5e%&t>4rBeYU65d;F7*Anb$4a)6Y*+6s#I$j_5t%fM}XRAPXv|*4LVk;VS1yrj{V6@Jk__eC$;X}CP z0~Q{`W30-Mevy=WtKIvew?ip+@fLvMpHOyMnsKU`MEN|8K@Vh|5IDc>=l>iz+<9ZL zp`Y1PBm93=an_5OtLN-)en(jRky<`})IZG6JS|<}(QhEc?o_iNCL!Y=UK6io(FPRj z!X^9j8k(U%xFcen^FC(k*^NE2g-}AKDukjU@;-M>;NKwy59aNuq()a;og#|#e+KUF zztaC5aMjSNB%#Ee%QJ_uD8hfwWrmk`jbp>2EbSzTEmPBgx!|*P^X%g$Z0E{ zzfeo-u+DMho@78P$6RncR)iwAiB_py&Og$0!sW35a{?wK2)Zk{)YzE*?2i~JH^?wa zVNGK=XvN9d&D~N0A?;I|SuE>Mx_Vvy26>Q`o!r1V#;(`Zzdr@w-I%n5fD(0104$Ze zP5m`5vC7T6PQ?p9K5KH&u0aJA>%fX@mTERQJ}xNZyJYqro7{t=$@TkpQEs(;Oo=gQ z=vLLC7h}e=E#B`;Vxx(LypiZ0r0%Q{3SNDTK_ANRJki{aJ75LNMmUuU192 zr@T14@t`}#d%{qfdVWNwS}Tv;9<%LxLEn3EE4#1m47L4{EiDdO8OHl(n{@aN_`J97 z1UdBf#y4Ef<96SXyz<%kD{82PhaEPr;x>^loL2UxB7FT~0y-wTGBV?pubyX}^15ID zzB2Ew;Nfx(-3KQ<$k#p|;D9D|F-s0hO2}zVcM2m@#3mlh(C-@Z$kfS(yUdAxTm zI)qqkaFR8y@ZR3`2kN`pFTo|Bv6h?yY=%0aWAkEOTH1ykVh}L>?J7ii44cU0K8^XV z+?HXdef-je7uC$C3paj-IF>ZpwV+d5%h@UDen!j40nEP&n1FEKKP z)3)7|{e(8e(ar~Q2Qvq8yzzlv!cAxVAEeFFJf++0?yzq{;jtuQc)Q2%j1Sw2XWFUJ z(r#a(qoE9~`b^AK(rzDTvEXLw1VO!yN`*>{FDvWOXlb+9XwO!0fVj?q&aVHmWMaU( zE|(d$)INoZ#wgFK9L=z7rIA&5krza~`8*(E`v2cR)Ym+;GxLu@8z*0^&+My$Bb#_+ zG)gVk7r%k~xx0S!;wUG9#pKMH$CsB}(+gslyt1uCH+60ZY~d-19etA$FW4s#(p4jH zZ(&x^j-5?nYa_hski*#U)}XTau&y+OVV!Cc%P86c;Iyd+hq<5Q)aDPPq&p7o5EbaH zHNUQ$eU((>4Hy^t$*b7K96&kWU!soYntfXm2WbFtaXp?~p8fVX_M)h11zw!;_Vp}E z0I$+iTAbdlA8{YX^NkHoA;#>cH<)DlglR+aAkFcU>iiO;klQukL}9Rj&L@1!=CG-Y zp-IdR1UD=8*prt9AReBE*-@L{bCsfvxth1&mq9Jn5M_b|OtvPE{78MYRm>wW;yj-( zj(>ZLEX%(^*{N#(g0eFzYPHI+eU$pUOVzVPg&mQ}DyLa*BO}d@DeV9^&HZPH+EfDi z;HsVKEXxu<*U?O>8xPtKhzAq808srSA~D$k!$qf!y^>rQfbL@ZXVYc{n(&a#9szHH z;ZktS(D~XMh)?+;c8YKtfpw+`$*PYp>NoJcL3Zu7?5Ma6MD(cq-uRK|I?-Q(clab5 zc-`G#*fOQix%UZAE@So$GHUN+_#^hQHxW|hiJYh65QE9dB_6#}L$J3wLspzYdC7(v zTrikl#T0MExx-UydY#6?KDy@5Zt`P(KS|DJPAD*V9PT+woaN2O>k6xp=+~ZHK*pfg zY50;?fS{`0Q}n@UEEzfF<>Vvi;O)o7jz~vNBXO2lp?snits_;zt>oeM;X{?6qX1^L z+S~)K>1ZF#)|K-a)-|sZMMgSLUTngt$8WoZ_w$)F%{J(~0ALP4$w>;iBClVz9d&cg<`@fLP$>lcI2IvcK-OLN@Rji!5-<3{dt-gFyzk7UzBUGMn@HyKY zk_$b*FqK)oqrL|CE&4@=`itVve+JXPEtV>okKtL-(Vsrglxkc%n6Rt7q<*t@UuH%l zZZ1kUr$7D6IUAMw14}LSnGZ3xY6$gzfZ1t%yi>aqD4r0hW&4ajRD2oDN$K!Aq7-fUx16k*?$HTJLvo1Qw}X8R)?QCd>xToZn_1k>uHo4ab6OR zNLjD4Y2+V5>I+eRc~^7u9CxEje_U}=A&H6f64C{25sp~ikQ9r_=IzPeKl@OY9o(p0 z!1#2iKmyp)NHH9f;y>-`G!(D?0&)Z+X)K`~2Ec-099QyjA*wse^NtbPIKUj3g_C=E ze_&QIw{*+v0DwOJj^T8GOo}rfBD|Qa+O{v8rlwGvMUb&W?;#Z^{H;iD&2e8^j2qr* zs}Cx4VhwMOW-498H_o0T|sz>@A;@LUce;mq(r z`qot4mYB+KPGV*IZK~b(OSC#yD!pFqO-KvwA9|JGmH=mP`*Qk0gf7LufmvmJ^3`b1 z`{Wcm^mzm?&?d6O$-dI)$LkmJ1ICxm3(@tTC|zQ}W>#YC;EJ*7&fN=yl=tD?sw~)s zX{d1!%Z+@+YsD)&P%`)V`B`nv`=L3O0NoqR(Y^(lvP!y(11}n*HO7Jj)al>XHB_YCV zRufdhC<^1+1m37@nr7uL=leY1^RCiyv!O~Xr=ZM-?;ux{U-l`%w8Rt+?M%Z8QHa=86dBOj^* zv-H``^myY%TwwExl(`gM)NEr|h_-kNCS(NWG3~OdM?})8i4Nkd^e4*dnbWCy#v*9Le&wA>(G%>JUDnIY`}vB5Z~f!viy z=ef1X;F~LdZoiSi7$(SE$gr45?dRgmkxprQ-;>r0j?$-J1fk#Si4oM|ZYWNPCs_1G#hA1EIRPRjaZ+#fY;9YZ5@a{%o;6e0ZE|npKA^ z`t`A%i4Fa z36#3=LjXZ;0eQx#Z`?mZ>GMX7zvf-`qGDP+y4uDu8zo}giEuhz$dbHbIdIbbs-0IL zux!yik2t~5V}t&dQA-K^rW0(0cz)zT^VWfIQ`uW1%(^oubT&!Hq$xXI*DFz{(aRHm zSHtr2U{1%f7p_^@ROPR6m3bgEtsP?-706u1FqMT#U-LKi9_Hik-_8-AI3M8*Zz>5- zB=C!eeR=ZH0LFpoZB!Ns4ct;# z4ab6}QmXv)sII1hp2tVX`;4NC8u|-D{C8ZB`ghCrrkEjo)j-JWOS~l%xE+3$Ag{tc#!z@rd4s>Y)d>nM@->ej<;~!F0e%4&SRdyO2*cTWe7*qxlt)JPP^zL4cV+!>Cr;~UI4_^+LkMIQe^k4GErYW7If_I_B^!THIa zse-#XxB7jQ=i+DbI)}-c8n8QE<{Udvo%|-5BM(10;5)$gA;=n(Onk&}qc#jLt;XZv z8)1X!TjAqKzLiT#%qe;Mu_b+|BPn37kRn6cX2~@tX$b10p;u*9$x?ae(!>N&H357q zc7;K#7JV1cThBTsIX2ewzPWQSL+Cco^J?l8y=-CYz_|dOmnL10wk(yCRW|m^tGE#e z$!t$xF6!u45-JMLtvawLp(;&TLWOJ2r?Ni?yUj+I&joaDDBEJS(n(prG!(;&N*Olw zWvdj>_r0U{->;@MEU)1GJgJ}YiD`Rc@_tet!hmw0$7OCVR@5-B6#k)jayKZWu8C4c z-XN6M9kk$!p_1xEqV|he4Y&1Oca77um6=5TGNaq2&7E71x#f#Kyh`*H5_W{rIiaPd z;#cctekQnAJmmr3^yd7|>YM%tRA$C%!EK{NKX4JgUz%q5I0KU;dFtUT-pd8<{n4@g zBQ^xrt~)^7Q=QTnm70D2JGbv6-M)%Bv@J?B$s86bK}&dVo6}f*lnrxBP$HRpf|_1X znRegC)0ZE^QpgEg>jtBQLZmx;lz-7P2YXa7@Z5b->;7b?YfI2P41Nh^KfNiN%cS>7 zX=obOP}eND>Vom-sOP8}POw>y%uvt*FM=aC6{}0_q$W1u-95sR8a?ghQzB(knh@N^ zMla=!PweguOau2OB@iXhn)NjYFhqOBnNFQON@L3U?3>LMk74 zb}yb!G#NO_rE;pNu^FeF0Vstv&VMqwtU_1{vQ!1?8R~_dgLau0IaFl_UKN5$@x# z1_mD-(w+C_4|SG~sk8BQeW!s6OS$BZQNCn%sjS*te5;Si2{r^EWJGKVG=ALL3^UQ8 z;xB3Thpy8SE#5Ke0pb$CZ8K=s=+o@X)N}Im6C5era3AJ$R82zJ5nnmH6 z8(k18Ui*+Tg*%JZ!=@Z;rIs%QzBI&jPHst+R0}IG+hggt2w8Zhu>he28u=!uG?eC} ztuaxZejV>7YC*y(-i>%8KVSbS{Po9;iRyQHLWZ@);bC<7I4c}T@nTnnsY~MsCRt%; zo}}4lHSZ9}qvf{sTGnFod z#Mec5)=oS?B~$_Yc$MWIB#(Dzl3gdLD#0z)*)V!1UsVwwmZ!&`2FIJs8}lFul}GE? z$;YkXBEZFCvOOvCDJbjAa8ab3Pe6z@uTOt*(ZK0O00=(VFZmsOz*v`;rEIFG3{Cny z*EeueTCeCH{2=ZkV?R+of@AXNaNhu@i+sPGdV#@MtgzV8ww&&U#VbPh=BM%*cS=jhB<$<-?@bq za`br*C6Jit1I2pcQgGeaEI;MA?;H_>(Z_d)a-ymreYW*mnvH$Gaviv?s^FF~XyEX! zdQ0hE+lb2}dGi#q_%|=G>9=8kP)zg$0{-~8t1vt0w?`BQz9@P>PY1C1gjIM+a5%%- z?0cHo{aT7zut?U$P;Q1@q9e$f@K981Jee0z!C!|$e1=R!_ltCA@{>9muPiRJDtlsEK zh)HVyYYdt$GP((&4(B%m1I%HYvPkJaD8#wojkvl+6+d%v73g;*a`(e@5!OQ}G)OWY z13_^8O#5y~(uAMCD69(OwK$6MR69jVhxc&*N+76w6^N_r6AI7s9)i?DEDak5Wy42|$FEa7_4cf2 z_+^GNgZ-cgP;l!VuZm#@S8m=6AJ|!#g|IqqMqr!}fJg|1eYSul-5r9h$d zwV>uKVB2Eu{sA&+zL~R2!)r`9>WkJx9L0b#~>okF zOGSELPZJ7dN{jSge@aM76qh8luOQt#n(PT_BRkdii(0{B4FgIguexNUtz9j_gFeNO zu#kSYdl=hG=e_M+%Jc-M^dwdeif-&j*Ns)?Og68>IW8EdI1r*O* zse}}R5<@(L)V+lb-z&+uz>3^B2g|k6Ugp&0HITZ$Z`LJA^{SAeC9Hj}vl17hMM`IB zt{>sf)aTHU5rkXLZ6@y}Tz{Z4?$1xFTkzu2H!HLcA^aVf5OXuhvlD?5 za2nPfv!Fh&Ms@tPx)Xikq5I1~2KFFcPnJ_JMU%Qln4LrPMxd1`VrCA{Nx-FP)zLCC z!~$TrqKC(`gdE?tl^Hobw0ia`W1+KTaHLraGHEczv0%6b?av^$OxM{e&U`jKz`s^7 zPhw;$S@F^N!$yuz*J7W; zL$!1=S3i9$|H;&y?7%JC-n1RM%o9bM!KWv#r&W517(gdz9sR}uU(SWvxYfISVL@Th z@3(Vy)AWp0kCq$gnZn1|ht3-3*PGJK?0bd3`&2q>d@3m*3SKq!*Kd1im0=^S@LKJP z%|ukYO3asceCe~`Y&ok4TYrV%z!bsztjeTZj3V1QTlOL^OKm;1zkhu?puzFe?d{%m z{~CqK0(4>u-~Bca-6osWsO&D`@VX$Oo8csl`bPzRUGptW5y4@NihnrkKV>R5Zu?G0`0@xyhjAg_jM9Hh$pS z;Bg=x4LCdiitn>6@jcE)3xEDOFrwT=__;q+kO@h{AlICYdl^_RhVxdapf0kjzs^_0V5icd>_?Hj;RMBp=S1H%kO8T3A0uk5KP!lG9GgCyacS$Zr zAOenJv8EjC1l{STscu<&g0@`@GkAytuA1v&b=dDXH->q97K1H=Y%EjU9-i7B;EC`o-0IbtMeO0?H11hfHjn~X`v+^1^oN{*Y?nz0NY}VnY+=Kh7`NU~gv~FkHYssVb>B<;> z34d0oC<~^p2Anq!rvFR9sY7whK!pY$at{m+2{m6O=(Em4GnF3Gz7Gd`O|%*?PYN>6 zvuMq>3!XU^rVlchVZr6kt()43m(Hx4e!UF-Qc<3l3l2?Jr=y@w-`kD$c0gxbl-IW&xGnJ&^expvMs>%ZI7r%Q z;Mc+3pfpr_db9rYC>{rE--n-`Qfab`wu&wh?q&4VXw4fx32Mw0jhlX@>DgEEI@2C0 zaLWU`FWh+6dQ{RV!o;V__Ai z!oQ8fn`i#!{Iz$_HM)1hC8(%CrFM@Gi8=|(=c~}pk4HDp4i~}~HK1g8Us}h0GnK(0-vC?`Sp{_@jgkJG6v2pb_ri*vW-3U)XA-`q5#fQxPvCCOl-%+1&Z3tr>|i$b{7gI+M^SvLBO(cdI`ebV_<%fvhrT z-1GF6u5@g=&h_)#v!M~MA1anj%8{8thgFpy_mlm)km5qVvKg;05C9 zzW69tbh~UO^Zj`)#>lTuV33OG$PriZo;9$W_R@YOr(QfoQvOA z<_(K4+@$~X#EFs8f&KdIiJoKcTUi7oUfP%i@3E#_-P<{OTf(j2m8VjXz^-4S8w#4+ zwB9cmIkqB1jitK~U*yCw8qAa<<6)fRh^%N|^GU4MVbrwCB3mpb{DS)_RhaI9_Smry zs!dK$tX&Ren&T%4?!)ukFtk^&0LNf=}x zm_Az|RBD{2DJj$6FNbJS(FbhO;_QL@@XSkru+`&AaQ=%o#vY_r6M`c3nTqWN^{CGw zap_`qh~r~9K%OC;#}#Xiqr922H)iM4$p@8~9`4(g-V(drKaTe9b*rJnAXycGXD6UW zT&>XlBHS{SaHJV39V~Et9PBJdRq5`maw0qbMZooQ*pIxU{+tGtwUIrR`FqM=f?k$( z&r^22+K7+88|pyuCtr1W9Q6%|T6DO>R~rDZR1u}4%jAEiOeOU{f%;TfJBU`MRnk69COg6E)vY)^!b-F-#=CMahcJ{YBWr&N4{aXsO)_6<(Mf9vZ&w|3(f z8CSc>LySF&2huc{_{wCyt~+zE6-mT8domRqm+nFJ(+x)avP*sY38JE})UBy+${|_^ zAjQ1c5J)kv6QM1CgAl^v(!TRV8lDM3ib{In|2sb=B5hz^GfCzw9>jcM{q8iWMxqTVb9|#BnZ^U z%iX<2w0B!w4vWUoGsqgPb{2<^{C*=P`~LaR?JWx1(=EXiHlHMrB=z?pUovgrM~Y=X z7Ta;H`kv537u3M?uk)G&NjL42xe68~bHXvm6$^3j2uKlS>?#DB^$n4t7J3-*EEC*no|-$=mg;S4OqSngA#6B@`- zYBu$H<_^sgsXPn|*1;s>B_bfDL*tD269)eKLC(C1{{dfcHyh={5egujZ+yCZRX!#? zm}!6NS6$}RJJbhW280`mUV7cqPt&ZEWpB1Bo*ojVOU?f2bL&EpEy}j8uzZm;pi4ar zjiT4Z=R5hsTY9QY7JNx>VF4&swCZkyv2;r1CzUpnU{C+&24W5TyW189l-lPaK<;nT zC@?gsSP+{KM>TsO$`|A#kLAGjl5_Q>t;$uWrlGcW(uv2B9usf_#KoR2rC5f$dh)wq zsvPl#Qd6QMxX^qUc%2WdTZg2mKZ!(tL4!hfs49`9zhdSNU6s}9>^kG+KyrbkG?gvB zeSJE7=CGOrCw^!uav9@zU?wWB6+V3g?-HH+nT8daDQ{+bzy|S6o0WTuSby~$PR9y} zz8C#ki4*^(ktbE0fuZf${|ix6(ur^Z?wG0>-z%n*3~6c``us`Rysv-CUH8w{S= z1vGWYfyCzt^c=+>5Tic%4fBU8sX42wJNhr5eb!p-v*Gg7yDG9BvBOt{QVQm!HG>gd z9i{{vRkk;J8SnWLd-^q2)&fp$uYp7HvjXggoOMK<4I2w zQ?SR<%E;_ZJ0Fx73Hbi&xJkE!-6y;eI&^TbxJBsUjy&kw_ktF+5;}5v`0Vo49P8VY z6|m?)*zVN3a96En%a+ZPuS_&1pE_m3C0 zzxf#$!X_<2vO^~UE^9(|p(pQmncT46C8nxx^R*whM|u<|38GW z$N{s)!LM7CH3u54TH5+nW|TMOWjPx`TyjLI|-d-e3@JWeHqajBK;L|wp!=+NAmHK%U&3O zA3|YryRL4KLLu|NJL;3OR;5j}z>?%u;%I^!EhZ+Y z;aj+LOqMOWH1Oz>Lc0E} zdjA*x2TnshdCZ}MfVnPhtiOLM;12NLX(<-UCr=JO)HrMF#AzBh8OOpUq&30c!#|rl z*ak%v02J&(VS_g#DS%w^zZe@Zw*GBwkRB`vr8vG(ibGk|AY#GsB)X+-*DXmAD zX2db}&~#fn>Bi4nTP>wQXTh=On)1dQ0ru{N#{c}%=k0a#xHu4ll`3?yf>Rknr=zCnDDTTte41y`2-8tq3Q?&|d zmsoAw*#YS`8EX~RpAj%_dyAqde=la0N6Jfv4udA$fR->~0#Go2~rd>N!_$8KaL0VYgMi*^YO(n7#>i5tH0Yi%Qzc>!4TLLtV>uC~7 z5xe#&`?^_vVTryvXbva!<`00_?$&w$|NXQ?N~gk{mIPaVU4a@E;30WS{KLer6{kOK z#MnR(7VJEQTlwf#1BPfiy8~!7e8r@u2Ydxu-EH(_!vNrxD6)<4rYKh{I<(g7>cp{- z-4rk>TO@`^CF+;v3_+jG`lywa^+--V@#*U2bL*KqC{ORPn^fXJA0g9sp(CZ>DV6}6 z@b10+v`4IWtNX!>UccN(rkz@5Sk{{6gx#~)TRA~_K~DNZ+&pZXw60d^oM*XC3Z_-F zzskCOfIHC&?C5x+YQ9Q^VRnOb!-Q`?hn#)M3OLe;-iB&V%Rg%1(9oe5Hot;bd+NvD z!_2vI!EE{~+$ZcOqY7DMcKK1mUg1+Y;46ToagAaGlxb;oO@xS6=0yL5kG+*|Mi9U0 zfk>37v}%7W1q#NQ{8a@Inq3z^Kw1CEJ)=b<-C4~ zdxYT1_AzIgC|jFN<-DiDUt6LU-%pns{YR65gysKtlY!R)C=-5w9bO?k7 zv*dyHyqkH4n4Dec`08YaPX`74h*0yg3NE*@_$`A zB+Dl+DW_OR$)_LhN+X(-j~|A?Z`+Pe)n>h9!R+6z$nIIYjS6KY*jvW0x>u*KGHDGn zU^m#PwY8i;!sVh-djwlKDS18`>56MgIU_$?IS7P!&}YQ^Mfu!P-qX38zuqwSI16Di z*o9>Fgg@m};g0X+Lff@D<*E(tv31@dv8nF$_V%-7$%*{FzyBBZ0g|#`h2qlfMQ|xT zwpi~K!zCcZ%2>asT?WDWZ9D%5{{S0AidasA>2%(hI)xh7&G0CLpSdf z?^1s%Oi*M>xf)^2$qSL5!+vJOGiBSTLTB+sLKWd-N9s7aL%@7YBHnyVy>k-B$iGqf zCXHM1I6SvQ<%26i4VPvH6C(C`m48J(x_H_gCfV4_rc*Tfdfe46%<)bQy^g za`hr}bUHlgDSKoz9?pGX--czk2ep%{DC*^wlL`Vg?%W8YB*y-KqV`0ZW)j0OXP3&Y z4$|huG-tmyyfF^v;F1nTF&xy~9}N0iW$tp?T6KKcUHUB|6SoOHFIh=T^4oZc&_E4B z3L2yHRcy~L2d0F}QwaIXrwm4)_p4VxZlnqKCfO0b4y9G$1-N~G-xn5372R{u&|Rha zJW<9z>+_0l>GmuSb7L3e?|-%EbT+Ui+P}Vf$k&sx^6;IsXv+2W>&Lsp$G{Zk9D2{( zsuMnchTR%7*9pZ1)1i7>qeHg~*3D>7)q%TX4~y0tV62k-6Xx?r-k-#gqA5wJK%e33 z$yeW&&CgY<>>gT3_rF+}uY*MY3kZ(@fbjUbINhk>h3a9&N-vjGt}lo;jo{smeFjpz zjP8vo`Lty4qICs}!{S|JjH`1IvF&F?Y|klr$H8`j($ha(gkKZ=K?Ox5n`L{)bzSr> z(GSlqS7grE zurvEddbnIc!v#b?2(ABtl3~iQK=V`)eRi+_`=uw`mb-2pSzctKsh%cHdmTsaHbyj{tgyN3qHzqSiqsJ#Q!;A@s%&yzDv z{R=C_Kxo$j?umU6B$e&H0#*WK6IDzqO1PvwtnMw{S#^bgnYwyeo>p5$ZjM@sE|5$V zRy{&sq7s+V+0!Lu(=T#q_r9K8Duxe3@c)Pb98w3UIpvoL}tObQ@<3Xy($eSkLZ|qHzuL{mRET=#~wk^Ty zAL8{`RWXaC=!S4-eiU2$l8ZAbIX(ObHNKvf&>z1jsCe&?oZa8AL>x(>kwzf44EXlD z8KjkSCHtljLiLT%l(Ft3pv~7Q%)PKCdt>O-(2106!$iyEq{a~DZ<@Oc5A&ZPS*WG4 z^H{2S{rzCyHvV^1^*HGpRA;~X4#Jm!3lS0u!!}k1uctXEM71<2H}!KTGSBc6qS43* zl+OF&p(^TGH4Tov-TCQH*8N~m#+I^1OU_ID?Jh(R)2NK^ya4i(nISZFjP~t-l8JWmDhKb}zygQ<1I8Ez^SHcdAC%X>~c7b08e~ddD zbcJ_z&efq&&{qQL#*wksPZ93iP!>6gF=@&EN5jI3pWBMm2rYAoMTWp9w_#E^ebxgb z?e5M!HMXtDGNK1=PQNpHIfM2e4=DsG+YdDUKU{rdbY)xHY{#~3+fKSWwr$(&*zVZQ zj-7NmwmUXDwr%I`ob$fl{qCJV_87@X#@ch?S#ws^Q)OP2RMyUVgL1uWIQIHZPs*f+ zwo^mGc+byi8#4$ui)5^rhW4eR4c6I+GS5} zhSadA%|}IYA2)FoE1=2oUX_nH!U@*muq}>mO=$GWTlq>+(31}Ay%BN${{K1=F0>B2 zN|*@fE^h|JP#$NHd!Z)NG~eQ!*ay~ujCi+PzhBSkI1LUbDBM{lxU1db$~?bv^9pg| z*(0fc+*&F+A=(ctpFug2wxKH^^sjv21Wg#>0a59?e|Pek8rD6qHQTqtiOnkJG${Y= zi-*iYNDd0#066Gb4X0BCNF{q%4gOCek=mNw|IcZ9D|SG7V*2XfhHV}1+*4|BS3s?w zmz5~F{lINx>hPzMr~Uh-;qT_8YXEea+Z-Q3CT3Qj$5GG^<8Uh4oQt{5!0T&c>`s27 ztr_*_)@YwjJWfPQss;941I2&Ms+aVdLh6Mt-TXCJ{73bL!g?+U(5z=puFhkZUMo{I z*p&8oxbOFj`0sP!bx?F$|GSJG(F1PJ_l@F>>M0JWyLEss;RKL*%fz^N7B8@I3H*;{LTxq7U!+&@k7+P+Zze zDue7Y20Odqh-;uIPWsfKxaia*0Iiwr%U&l61yEoB3br~MFetabw(Q(Pn}DcAvd8^1 z;QcR9aJ6KR5gYNXL}11YNcwpRUJX>2R5AapdOm|}OE+BZiwW1jEhGbWtp`oUwIP4h zQE>{|?0z2Zrko<{AF@!V_&0T^7a z3GWG3K^e)j2CQ)zC}t_xUw{l?tSz1GjEXkbk@Ol?Z0Y&wUup)h*d71HmjIB|6X8RhA2R)HA1#%7NEvUuIYyYkO2~nh z6*~Gw>xEtCj%J$?%PSR(eEFEII#n9455se^BRWXPre{)dSYkxIoTS`lb?PlY!o#OD z&0ckbT?d#18nOD*-uDHrL>Z1GR!x&T|HWUN< zWf8DB@4{Ex&ca)^RBnruYjQK443GOm-2KB3it8KZ#5w7=|L_(Koh%G2eY>M*g*qnEbc*5}c(I~`zdb`TtLrzb;a#3%%0d-&x0 z0+?;#Sz^&y=gd7%kW=l0pT42C4kav|O6|oGQlcJyklr=>2n5Vhmm{4UepfX9k(nxD z_T^>i0rRyTK`x8#L!B-aKQrL@-LYctK&n!upq=vl)6_2-uVjm~JZ9Dbg+rae0JnOM zAPtq1=%t_5AZjyR-(bG*oY(3D2+875%|4+{b0QWk#yjqT%4KoK^ohriZXd$nzn*Z% zh~$>)#N_Y>r8#3cQqV!|Q5M(MS;47}gEhD-$mt2%R95wCoy@91G%u%>GRd3F#S9GN zkV~Ie5L`}0OaEyJsNnr2zDu99_<~2NpadiffzjYNTM>V$9k0YK{JFfBy?RHStS>e&~H9usc$eu_Pcio@ef z=~ahO{|D4Qht$6j(75k%uD!th@)5&m;Uxfu#h5+V8E$inJp(7V+@il{3H`B%`pUNr z>m;M&;Qn!bc)S;kml|VuP;;PQwJ{Ia-nH4)Y!bKF zU_5@g*unB&&rS-L?Fq?#1WxEm+emQpFUEsQYAz9#3b}rF-H!O>35+s4^b!2gUWL+= zj;rY3rjIZLtjHqmM7!w@B(Ym(VLZzh_Zc^FCO&f8bK?1)Q5K@p+T*iU%SA0A@{TAv`6etwBEP)UYTpadgq~ddT6l8T=6mv2S(_?>R~&T0UWLVvi;VF|qlj{%7i~Tr_!oA$Uuw{MM8{7ILm`;C1HYrb>1M zO(ntVRD~b$^KbY5?3m2jZm(q7x&}7U-Dp%`>l~4;@$T2*r7vI|zy3m9US(Br2i#-x z81oXI=!oY@%bQ6~5b>exv0@vp{hs~i=_|RQk27+)nf<89TuRsGwZhLz{PB|$t(Q6)9Lk?Q6TsdyIUuF0=nB+pSXFBo z1h{{SDGm`A>1o8z2cT^}tmrsTWBOXg%7Oj-KeU^@ya481gwO;_U_oJsJ+s0=b7xb& z*;4~6C^7rnhnAu|u&l}s77y}|uNAqqA4b(P^5Y2=<7W(SZiWYpS#j&`U_trNTHez5#0|uqVigD}lLdFA@1^)8k`n$d^IBO`7c>O3sXQ*C zc@-|{o-jC4|9U^iqg-{TVOT4;*~pRs^WrRDON{uzK1q(BZU=!Bi%bR|?tGtl<4SPJ zjLLlGxA@qBS7?LVMOU%Lb6^i-?99jlV4zzY>j)EPZ}Vq40VE!m0piSNuWV_&TPW~E zOE7wF+ZI-am~!X9u(HmmudjDbMX}K%^RJ;)Y)2U>6_!~8`a?xrd3RrfAr=dIy>+FW z<6T~fd%3FmQi&J_EBz+=S1)GgG8v1hQ|BAP^sxwfaAFZJQy8U2f3J6$%WviVwwiAu z;#G%Bf-V+3T-W@anRJ`RXd;y=fQ)HW<1$aa=5~=Yvs20)(p(Ra*N*)LT}>8eymx^# znQ_H(aWA!oociT)5!V_Ci-%Y#e~!G2f)B*e?{qNcqq=A4W}~Nak)1q5SWs{|lPHXWI|bwBDfe|zaxXjvgarF)H!KtS&K%Sd}j4om!!}29Y+g5=GE{19Gtk^=?v^q z-$27OnLtE=y$1rtxrcoqQ%g;+ioHq7w#`!CvavZST{>NRZDytThw~_XhhF`RQ;U{A z94X^wp#PsvCf3u(Yy@nBP*D(+_pX(en;iEE9_Rfr_=&6o{)dG121@P2G$DPq%*3A+w*wBtt#@)Qzl>~v^%;-YFX)UEX9X5D^nflVT+y!Y*sRK z4$XQ2LF77Escal!rVOf2^py<61AM>RMciT#aqqOOoEjHUgQwMpjaOis?$j~@;+WP4 zq%XV!Rka^>n&4O@SdYW?d|sz2B7WI@ZsGqKrLGqH29h)h6R(lFL#T0NIY^6aA|(N2 zmovdAhnD)I=}Vr|VeuVEgEAhdXpqajD&A(M5Y3*a>aPxz-}Hhr#$Syow7@6;CJp!! z)BB0DMcldN0yiS7>tp(^CTOeGtN0Q~<`$syXEE=t#!PBH?ueQMugnJ>^GmmX#WkL$ zGd&!i*|7I~y!t#r@s4~WApCdjFqwctTO+Sk3FCjx?lwjH_JD+R8|t) zk!$$&7oQu!1CmbY30=QhGcx%`zklwiVAHw8Pw&4I3oli*9{ikH;Dgb_Uwrh)dNV|i z!(m74owKPw5PuO2PXtgW1&*R7%(lI0W+n&+77QR|GNQ2Ir!g+6)d?Sw*~BJFMl{Lx zZW>UU803BqPM~D>6H9tR{=yaHO(Q3HWJfg!^dFwgOLZ2W0US?GXfo<$5}%g14JcS6 zSZQ=ubrE^ar+Ic)>w$n%aYqTSmpjMnN>3GPWXEdvvM8)In z2>*mBM98fh4I-YeNluZ}CmOX{jZYs@4wv=B({}ecvL4U6mYUzh4WF6rA;pR7@0|}h z8XkHNuY{+Raki+aUb*k}I%y^q5}lYK-WSTwn^LfEk=Z2oi4wz3%H@$oR;!!e26rHs zF5JGVA-}h~cugmq(mR%N!7XWy-XuFAJIZNSC9G`Dp=5_-E^QiEAiR_bBcta3#!E(M z_4*6lgyl%jt$kiz&5lcA9%5{89OS!})M=I)W#jlj&kJ26!l8+U(yR3!dk^4LRHF7_ zQVPM1+!Zo_(o_BKrXJ~<_9y|200@lNcg`;ozh zdFs@L_CJW5^K)Z8oe-hFGHo#pJn8Chb^o;L%S+xTHac-%BExTDBnz`<65OC4Go*nO zOOzvHS3Hl09-{OZ{dO2lCK;mW6h|BD^nWj)t;#Hv^oWteu0pg9;z0rB z&XS_(-(x4EOYJEH(_)a@EEbn&Bpvt=H%$;md{_~0v}~1PDWm(L*>%;)tSFzmaoFj` z)04N`J<{za21G*=9BRhV9(yV#HAv2OO2eKFUBfhYloPCpK7cA--QCJX?Oi=a+TDaY zcbt}&|M-tT$Sx@Bvy1mNy=^0{`aaA^_O_FQd4fi2V#c-I-InsblQOtDTs)U>NW<-^Wc{d(jpec`Dp1@ z5eTul$1rHO?Eg$4Z49(B(Z-H9@#wOsh?DrpUl8{4K5<{}!Fp5hmyFXr93xi#N9qQI zf-2_wdr<4-hH*r8qilse5Qso(mXCGK2ZuMn7D7tc9f`R5AReerC^iF`0P;XJHUC&_FMf-XKSqwlvV&P z`h256YIDHuHdBMo50&u5C}!-?ncJHbe2DC3>zohsLjJUhz9?u%foJGp znsd0qli_{BB1^e3*#fg8exPQQ`4*3mdfNWLW?FNsIhrBwCXV;(ghVrkp;}nk1)E08 zt*FeMv%let=+Ps-peqDVOb5$d(SQa|2Uj8LH~09p!^JueC3_E?{he1$!;cA(o?764 z-7ggI#{RVGW~cYAgvyGKHrV2UfblapzrP{=@B0q0zj&VV)sn08batukAX3G?|2I(g zjJI9AnlG$H-1yD~X#@dXwcKXh3+}f>TaTa|`MBd%`(TBVw@B!_Lpb!MC`Zyb>Zg2Y zwym)#`foWS7I$3^DPLcJWn^KK9S^kL9b;$f0$9D^4-{W|2Oz3s`_)Pda#aUEiHCG# zWIU|1lW1BWa*Uov^tA=Mg}H466AW?=g&O7Wa&Kef%`Rq26Am@XQJ<-Q zst#SzDJ5yJPeI$zy3C8emV1uCjF@Tm;FWc6RRP~BHc&SA-(eM3%*Uqd0zy@dAt@VG zEeJ$$L+8ryo?RCmi<>$)@Nae;xAqCpEx1ktdUW^BDr$7Ufm^4pav&DFtN9c%L@qTD zhA~+Ww~e#}`kd@(;em-G2E<(B|5HN$`6v`lMCb#$RI1zXlc-_W`G3rbPnYQRpemwl z%Mw zU=Msx9r*()S1pJwU`P(>_A4&+b1Opz#4E~y$thBjQ1ZQ&(h+m_1UsQ|B|u+g7L9iq zP)x}#f7QpM*%y}1h7X(3@ZJn2KG2H@#@AX?eRuFZ99w zLPu^ibSj#5U$XkvlHm#3A`H19bdYj6K@UQDKbg87(KCaOM&(nt z-?(y3@;=FE1ZuUCoxvi7U~qzg3qSmn;tz=I?~n5yg=Kq*y~`%z!=novqULmT$PJ)_ z#mQI;KbDd{NICrLT4sVtvb0?C$cZGk)N394XddmO;^k(zbWk~~rFt{BOu6xM!g?|R zaYd`M^ss1>Ff|wQ9>57gT;w zY(?|e*qLf#1^m1kvhXw40_7HSshOl%|*OxhH{2o3KKvS=L z%Rq|sbO|&juP_!JovNa0zT!m>5HvV-?H{FpZ5#3kvXFlSPYoKPf5Le~y1SWmB1c8U z^h~!p0PQ;c`d!ge-9jj+i3lmXWC@y@mZN#hfr%Y6Hdl7rm(}d;$SUw#T`MYql{PAn zTG#gZUoDU4W}%uIAFX93G>TW}4F-C5tWUiF%=-E$;!4bS!1O!7)kF0U3%^(kKcNPG zwZ=UVR9T?bS|Ot<8&|4>4x_(jyLujU(ftjZ z)25Ueq4x`se6z&C;7A+_PRz;QhAfTSOT~p*K^DbiEjlV?1_<`?yQ#-{I&EC_G0!!8 z`EdEUC1C2KOK5?&_zm+#G?yOhcYj!i-yFSMWV*?G=P11EWLg{Y3~`BKDUuN8^_-WT zP|q4^)C{u4wMGHJWVv$TL~v=?o2cDTO)m=S>2O+5%E8(*i_nBs(4>?PN_sj`x$ofj z=LjN7Raki%eOkj=3}ZDn%eem(hBk66n!4*pjnHh*o~BGVo0ZJ3rUt|^l(n_aK}|JC zyi(G;WSng3R+jT}I^qw7i*etg5YhR~{!T@tkJO6j3xYSv^$?C(%)Ed}R*U?cY-all5NkXeN#S8JCxd+( zUsAn;x%I*M8og=4u#*#39X6t_VYe_Tfv(@Ys`2`Kf#G4bI(q&5&a_h}y5b5vyRjs z(PU-OrpP$AGt%ntzf_@&hZdt3-6E*kOt0h^)I{N2{Kl>-mdMTvi_w2BKe1~wKMv~X`{O92B(J-hXBw$slEW1;9-l&z8tSIUA%0Qd9B zgIlS>PD_6sOF2M)X9+Am6QZok3;9xYn%;-e?7ILjC zJF=ztirk7qVJ_5%w?;RlhR-d2idKvSW;Gc{Bimm?G$vZ(n0d90RL7lAc?$<9K&#uT z5b)Rx0(1H*95xm{?qM^B%HMd7doM!wVN@1%but-tHPwuKgK`aQ|bsY#N3m5Uk=+X*3=;sI%6~zM0-cu=IQh<@mLNmek)D60`j^bH1R%KxT zBrL2SyJly>_U$80RLb?3{Oi>JC`^A)POM)#VnQ`BeDi*!0ncd($2)5IBN_WmV=5Q= zry88T)!Ed^`-_1yQxZ6_)i8d0tz$I~WW-st&e$>rm1`;;bX5PT@%8ZiuzZ`LQ^EXJ z?cgJq7qPK0l8ICzUguF^G@-zfUV*;zb<%@!Vgp~NW=%_Ud$!rmUfI>swn=Qrh;9SU z?eBf(i-5PFm1}-bUirJ>?z?R?kpyEb#>&7h{>Xx3(vHJjbMla zwjC6zSIg?W7;#`&WRX^=&1>r|7=I%lUPN!!j*sr;QP_>c-Jw~~(bAnNt~Bra9PG~|lf)(jSbjU(rc|%dLeTORB^2TGqxjsy{66#?Dy_k*OOapS zhYU@5Llg7!n_UDzaE>Y4+9M8gOjhgh7Gjh9Xra!4IwFU?u{K`V(ay0UoO~XOV75-2 zGITgAbVz2-hT!BMPbT1KG<~85HhI%EJeHD{(_CeZ(SvRoL7kcnLtM!3f%8Fi`@AW& zj34RMGeHevetRZ}JG4SivdG8=i28M!S+N2n%T|f|WS1tLSr}VZF;{CD%s^uoE`E-Q z_I4H8)-ex4GTY>IOxlx&I}gVi9Y43tdZz8(dx*5VS}gv`;2m32IHnDfGx z3#3<)R?6+yTSoY=4zPsxwHOPoecdoOwbl{!?cFUqOK6N-4e<;5SA@PbjqkD2SyOWS zc{9(Sy$6c378!=kyg*k8t5p%J$TA0mH}(b-+#M5Ix&%+~=r%qjH=n^|{Qjg#Zo$g}pf*>g`Wrq;a zhxbwyse;Ocg<7n9{R0En!f$ti-C;EA- z&4KQcQSc)NV4=n-7D8oC2zodyO-0I}q3>;bF2Mx%n^-e^u|MKO?+f1JD1m}}?j2fz zxSzogGyN0Z;eW%sKxLKK|4i|5NW922{HG6(j+9v%-&eY*ci~B3a})$tiwr`RM) z=g*-0yp^^|h?#MROQ>E*I?`MU-n7K+&&}m}A;>$MEgA~IszjCmRjitz-7@uU%UNM& zr-x}}!Z)Stcq;FU)G#T&ghGZJ@j0yeLEd@j-x9%hFVH7ZG2|y&KqI-s33l09aNVh4 zIXhFz{>}U2G@P#+OUPoO&)+LpFogcwt^WgFPEh}t1`UsCh~sXh_#a{c6BqsXXPfv zQlwaUp*>Co*Jb)v>cD3mN=3=XxpgV)B90H0gyqT9^K9&h`xh>q8@~`8j>zPvxJK*m z^55(t)Ux_W1U-?1dC^NTN%SU1QVeB3_n)PJE{vrt9E!CfMA>|_GY1qg90@2HfNF-vA!RiM!Ga)hxv36^-wKq^B;jXPI zg@5f{Ej&CxTm;-#hKG+}RMZpuL2w2nb`;$+T~JOqIIAunY5uV`a0{23|0O;{)oPtU z#%!&efBVAHt@e7GY&g9vy_C|AUYR0YFy&>(=$4z@H#AKZ+_=QdHH6k#$*CL^RG;*X zLP~0MK~sKrqBOoHdgk21ldq;HyBa8?QfZ=uOZi&E_v{+)OzvDAI?vX&3oEBjtFSzu zgt2*g6g4ttOWPXWRXwu8bvA>bC;M<(MhJvWCq{!5n{Uuoy&o(sf#xUS;k0YCG(t4i zuw-SFd2W!QN>}kK38~t8##4yaJv!F94s3^0v!C{AUIv*ZQ~Em5Wkh-+ z3fY<(q7q{Y85vTEj*lW>K@0=7%^7hHuXsreR5R4Kov$YRuyOu<;(NyDd`qaEuISYE z>_s8rZ4Rj4uyD7^CyUKa;Pv+|K0J@vNvW6 zMVH2rm-XFI4!&AsPs;XYqPiA{G?LQf)%nPRVn*~JCc~b5Y(XH^ZN7{yU_fjP)kJ(% zDf{iBI_T-71{R6pBKvNmN-f)aKflPl7s;wmXYG-+IE*+hrjRpZM}|Lo(yKEms^BEd z_5=T_--4nQKj~*T+>r(o0+XS?dT5K}nk*9*)COLFKMd1mIt&@J=iT3x%DrWo+n4S5 z1DQRNecum|kESLqS8v(n^#@laGLM7YM^zhMq#m?~3S922?B;jJS6VTx;Jcv>eZBTV zm?XX4P%6Tnr33x$rLfS=5P_=^U_R{}CcCX&h@}0adtz9tlD@!CvMbluigNuS3PR84 z=Ci1;+hA8OsyrP70B!wS!-aj_BJ&H_f-U(Ti|rGs*yw-GA1MN+n}a$mN{J4CKpfqb zL|c07b^@y5h`5|5e{~j5#HEWPjDU-i^Y^=&7Sowu8Hu%eVyt#LussopiV|pDq}r`L zqq0NH`XaVcFaV^1Z3K!u5=<8&d%C8r%@7V{6$jJ|Np;q%V?hS0B;E1La3@0dajewZ z_wTH~oa#}0wn+EKqk5Cz{EZnjjgsLvPpm=3>(Vo0sW3wfj4ePDf^8#K5~&zalD2hz zz6_KhKkZ?WVX-UZS|ScJ>xDIp7!7A5oT5nMAOxD_5+<+bqq+*8uHh4V$=V9P zO7gIT8?idZuzuQ&sVM)0NsdG%HW@w9G`nnp+L_SZXyJ4Zv=O!PWvan>n2GC7#V^N{>3LhWgX%xNgj`|||Udn;odlkDL6 z{NiOlglQ)v8@Sz7St$pJ6t4&BgtpYNx^wR=ZbVeau75PCg){Lh5)GRx&Q|oVgVhQX zXm*!3?cV3*JyMHN(P$x!;+_6>kjAQ$*x|i^N?fU6AD)Pw-p(YVsB|Wet&{wPapkrjBA7Of=oik{N#O|#?b)5@Z7im74t@Q3R zp^Rdm@dp|mkyH5-F7yeWj8MVYA#wG`JFvO15WCvudy(Q2uPc6vM6TmBawYdGPfq!D za71`%gVl4?(CsRVcQ7A)zc{T_U;JBu#0<}FIany7a!S=iFF^s+8nADg9%Seq*y|u* ze2c%eQ5b+aBm4F@lbZLJG;CaWgOrF-XasjeK>WRQSL(9}gHRtiRFCz6;UL|G(Lu}d zU`$2vE$n^!9j;k>E9{VqevI(v^&RdfTzf$X>8hdPE}S* zZVfKw!s2fVW!O=@HtqLE;nCGNFIXZ0Kj2_-Bmi|O&G0ShH~=-CgYd@y3S7}+_k6bZe8z%0 zcT9>$pEi=--N@jyiT}5EseJeN5%9zpF6BHClR2WAN-s#C0c+~2mz`|;gWs=TBT9Fu zUvGvQxIZkv=;2sIoa4Gywr(7Rw!r1|J?#~gLrRq^pdf+^nT4yr?)zP)1@r@-aHNPLNry4 zo20Df|4Lvz#JRM}Z}d;65W%g^3fq{`34ekO8f+%Hv{Y}&#nl%zlhnsY$`1L4@KZ|F zB;|G>*WBDNZ`BKHzx%|9LWSu z$B>?*JLFXw8UX=0q5D%7FJ%EfX;-JeQ%L1UMyN0%ZO0?(=Kf+Xd^hPA$&Iim@=8MLEG&| zvl_3FvEHAt-^;;fontaYF+N0t%EH-ut>mVn&4k|2`jMh*%CNhlcG@(s%DuH8VMJHL z4!Cnhy67GEm$+BVl((jNyLMB_ib~b(&26RaYgV9?z^e%ybMR6Mc@tu4cAN>-;)Xls z=9^uzj6fmYIBo@zlSQW%h07$Y?i!S?*WJ)%8Ih4Xy1|?e{=!9etRb$eHgH9KXWf`V z!LiyNY8)o)NK$ou?d1cf?eXN1pX()_w$S9SeI-jikkuDaix)mwHm1n(%XR3|ALMYg z^XY~{vtGpOC#vnpNlG{l%Oq2Pe#&ER`GJDO3DEeKYsw9YM&+nk%;lfrF1pU_!4?7v&?ik4@ zlslI%bhR91TCll!?>;x3TaqhFHK=^zEJ$tiD}BVD%}-^`3=;X0B- zAoB6(9&8I?51Q=zi)S7GVCMKY+jR%0r*VHB@?xPv>=C-?wI{g>A5V;$%hYJzepfVR zG1TBnQ+qiS@qTN)^gd&8y#j?-A?k0^KNpukM7|uMN?X?6IS5-g$n(hro^|&?4xpoj z(KxDArc#~Hu&PXiiWx@GvupRl--moQzaaJwHHCT+_!ODPPO$cu+o2t0y>4Y;zP`W< z0#X3y!8wA#YA0N%pdg~Mcyr&h$T{t}WM9b6P~DGFH}96auBEpjMSM88z7Pk;*1!`- z6sZ^XnAa;hH=B(J1nuCxm?0HNDVfS?=l+7Ur{)h`n4~!T!&3RYLSDy?tW+pzTb4eN zEch@Xh*@=YIDzXX2H?-mht-1#&nvWJx=mO^c1hh;VML&ik6XSK@UM-Q5DP@Z3Mu75 zWpK|hClI%8A-5^#n~b*NS$?pKVZLEaSbkwXi%y1T)7o10;a)6qZ?`ZhHeJ*Z z4lYVzh6lYAkNnH1zCIyCr(0iwUb*of-C!07h7~c(3p*RJMmID=YGMY+RvI&Z|jX9d6h^Z8i9LK_J^}G9R^3py=Zos-qLj|Gu ze)T1nn77QNHPD#QVfU&w>kYP?M(7bh-)hJ39OKgo>pX8=bbDb zkRU84_%vVv#&!LJ9(SOD5*fu=a}}7R za2YST-e{-_SI&SrvM@&g{H5o1Q91Cel1cvb+(h;3EiF+>E1?J zpUp*KFYex|%(fXTTApUi9D06XclZ{4FN49kdOBV@TU(W!9EWNY8W;b>Bsrx@78Nx_ zqne1m$h)uI1_a-TeUNU?EkToXMfx#{J8!qPE32X*V+<1%`h^b;M?>^Nj$yZAaWm%bXKK z7pQ)N{59|$mw>lh?YsqUCO(64_0ZKH*#1)2{CCm)BGExWv6+PMxirr0+GZUo)R}(m|DIEzDQ9pGsuim%giJKYFOh!j zmbf;zdAJU)j7t2%NJ%x>V~gh>2IBK(MB#uBqL?eRf=dezS>s4HPgkLWl2W5_{y8=c)L}V)&>a1l zDUAY@ad(M%ijq0|*Q;ogBOJ97(h3o^NZm|u_xu%YRy-iBNXe6|l*5u1n5W1Rj6yH+F}Imo8x?Er2si%54$c{PqALm5D3qW=A+CBb&rSTXM_;ZFHJ< zYgEhbN5>>?g+=gG2dL4RHA(8Wefu6qpn>03Z^ zng@<~FIt@U9s5LKD?lF0F`r+ANFc_Ui-7rYy0bQM@ylszAKL+YAer&y;+AkTa&qv} zC3Du(j=1;Djq9zi3-WDsKj~}>)8KPN8FOTz!YM*oi~ZiN4}0Rnw9XOxIXKaQN*1p( z4pl5c&-4w8L{xjYv$?#%Mwk2cL7Mlc;>kVd7<63eT&t<*+r}_lwz51aH$T4L>y?mB zONzh67EczRBesyu-yk0p(@R_yY(ldU*w58~MAbxCk?6SJNBDAiAOQ97s39nR)6m!Jqfq>F}{&3 zq|yBh7YgxWp8Xf~=!_S5F`kMz3?I3r1q}3g9De2e(On1)P9JDbO|Uww5Fc(wL_>=6 zwCjB%nY((06l?tA&Pjv48LW^q-fre2z@^5vb7vs_(0bbQj8SFQI$rU}uRC+lnxl*1 z$$T(m8i6om{MbMKrcGbQeq6YMtBCvqIsWICh;eHI|GXvs*~t&IA{Rz+pQ>$5$S1W( zCF4*qggyV^9b3l<3Ye@MjC#*#!5pVHf->{Ng|A1cG2T-qlmasTiYqA@DIi=}Kcl4q zoQ!l_M9Bwp8p)8v@=cfyL(6@d}0bVHHeb~FSl5;tH1d{8#*A28vI4i`XfIz(IK+G|GE^{Kjr7&8ib43HxJGYzbHWILT2Xu15qKp zyCRb-tDm%&na;~mQdc1wLHzBol*WVcGby%`S@J)TSnzcp7#b#fDr?hAp(l@<8GSqEvf;`k8zmdzaCD9YJI zQJL(+$ytSOW)N3jHDhHfV`w@pXQ|ygEM=LIksmt~+{X5~X`Cwuc0~iPqR1QogM{oD z9Tcq3frb$c=Z6t)WhFHe*3}{t8T+L?kOV5YCSVh?o4NE>UU$ zMHqO{IokgoJ8+LGOI$*QF*3O3oYU^1$9| zn;qz)!=$WX`6I)JUMA_2F+1u1*DpyiDmf}?$)?P7sSL}zt);uM14acBveyI@j*rXZ z0rRmPR=jo4{lsV%}FE(rIQU)1Dfh=YP_$~ zh7ku{;-;9Vcr2yFjsu^hIo>N^Spg13Y1K-xb=ek6Q@iT7(Y64d$|T+gQ7u$yCsal< zt<}&Xyysh&u#iR+r*JJiV}UvTDr?Zh#yE6`rnT82JqR@0VYK36tsLbOV*rEo;2(Hf zLu6K9i9rbhUV7kQNFKqa9HHiXI`$^ukc3rCqiQ;pt;pRQ1$sSo{d55qTvbljxmeK$Tq4A!Ql#p%jZD)z=d{HlwC)5_ zQ-_OLy~rNYnqtb9l%(IuYJK}?qSMfzORo3K!HxR8NHmC&f-99w|1KvLlO7sin{{DD zPh_k-GNa?2wEeV#tPuUUb|6NV*rCT-@SXYSD1#7LXBlp*FNdusH1I@OjV`aDQrlXQ*IfNPZZ7Iy%yy(yelL&{%IK10Yo}_=dIyMp1i-a#=GVBWkU?@3SC0(H zLr8^TN^e{b0rW9-YpQe?cxf{Wc4#_ys(gxH|ucPD&! ztH*xt(KJQ8^tr%#z5E@;y6A)vY~ROLk7(>(Jd;0=AiH5;s6URS2cJUU`@72@sZ$Sf zBUgR1uEQv=tvFzEqL;||Sq;uCya(0rO(?|HuL0fX!7qF$3S|)iRHV-lCoZLRb8%Ybbv<%`{A^}WA6fN z%eo3R#s~B}Q&vw7!O#}>fxgCOg@DF3HU1*GqYoXGH?uiErN9ydW%@zwQP8-D{0J|| zzTXvuAa<#e)m1oc5XGI=hyF+J%r~vb3pAiJoFjY+JIKE-92t5mFe%|uajEDL((0&j zB%(aDnr^2tgt}RV#S{zi1g_Xr1xe{Zj-qJs?b2yu6;xgy)u{0-`5Ct7?Lh2F1@Ldhd{`_qin3&{ zUnqhxr8+ohPSk-|MA98aL)E9bN$7uHrGSV&2ME&3z%*6Bf214=j}I=PKRpP4Q)4am z$q|!NwrPPplJ2Hr={H^=3T+S`F7=>?V&G7FDx~vt*QavvN*yTAhfAVZ7a%v-b_R{H zNZ9P|8~0n6T)oQ2hySVOBmS!+BjfrJ9UGn$hJ=>VyBn~ebmC^J2i+H*{A0#JF9>pF zC-v{zR7(pe#a<;}-{J<8ZaEa9R-QB#S+em4(2v_r$lQ3uR?O{Bm`ptP}e4 zLo(puRDrw03AMgSl$g4uOo)QwPh?d8AVLYVksNVWF$5rcaQC;UdZV-;D_c@rSqTgO zZ}@R_dkC(&{S$t0;0h6qKKm4=VjnSSRXH*~ogU-=Q1;eQRdxNpC<2n3*mQSyH=@!l z-Cfd+bazUJ0@7U~-60?)-AGHrrW@`;pXa{sIp=ro7)=|4-nJHiIigZtf5ho|QWF<7wL*}-eKBnuS~e?72y~X@O~|pl$-Pv{ z*c<8XLMGhKkQPm#*83sRnGsHdgkA?%@4!&CMw&U}52ewArFtL08&YG`^Q5hzXJ82c zFG??g;G9Zu5EVZwngno`b2wWrD)4v)NJ?GG@=tqHl$h%RQ9yNQ@9d4OP;b07DZV-v zgyM+5+h&Nzy1Oh+X?ZI~0o^Xn7#k`hh0K|ai9Oi#OYrTUt|X_$Z?G6sm$ zCvUFGwj7Sjqb<_V1AEp!;FV02;=S?9#C$YD&uD8K>sLRj5Ha%^xBauQZ=df-NScyz zCLWhj=X1nlae|R}H6`&6{N_EX;`rp!=(x!)B=Zd1OdWyFwzfGsQ5$2V$b!+*!LKG@ zMikOKcp$}n3L}x6BCV%K>jt0M`-=Ipuo|?O zp5X25uAQ~o8b|M_5rT#IzAYLw#v=S;H{`Xx74%mbRW>f=HwCk(W@aG+LvmdgvfJQva^Ii{ z(V`>awfChSa3ctXr9@PPn|XA!DEw>zW?m|Id&ome45Gf~Tr61~vBS!pV?PLm1=IIg zU=^A5-zXuT2VaH8%gnOLt2W@3r#oY}I6J*lP71?N6D*cN4l&UQFVCkU5^}*le$4bCNZV0j-YM>+;D6m7*_TrlzvJ0 zvhzH~BfxBUr+wN%UIdeH^1|d4nVjtQ(S3H>3D3D4^o(q*<*jDdem|FH_=`<&z|ZKy zaQQoQP)G;)r(F9r2^W^PQFdz)St$ZpUKHx0KmEcZ@$UO?Dv z4X?Q02Mf(Q-p~NNR7N?`UIQKWvn|RwTAPKFF2}iZ8GB8QrgJqd5p~@ax&2#C{Zd^& zlbGjyQflhiBBnwa@oe*|h~bdTn93eW+)LE-K1t;=$TCuPH%(2_QXT~qG;Ha7lIhkF zPUx+dFy7dffl90$VG(UQ^W16D@HO`j4~@ThF$oQJd@M{-t!=CmtC^oMm4rVC4ZK+; z_K;#%0Wz)wrB3?nAQa25hq2{(RoOjv{I4c&9e6l2EKb}ox9?ULM+&Uek(QnRyHF=! zfg38KHjL*eijq{6y}!3YbGIgap{Sk_yrtm9>M|G_->)Pk)+b3cX^9j0H)*aTR(rdemyn&O`kb6d-+1pko1$I+sQY|qM8foP zIp)QBY|q-+F+{D6L>|8|G&hNfy}Idq>dJx45C9Iku89XNYMFFA)#$I4c! zB~vnMJktq%2`b91~JNqcAczSe>#;#v^7Z*QO zB#b3(yW)I072-|Pu@-G6QxSEjlY6q4J%Q&d-+giNT~nwJN22?wHCsEXPO%R1Izo!? z(#O2AciO<*XsFf>?`=;L~V7)BCJf>(vi=ns*1p z=4MOGK%fL5KzjY@2ViQW1puP=%0jJVwD}lCWX_Da%20OtbYv5aE}6>seeZu9Vq2p;{VF*D-gvF zy}wqepfvo0_dMT8F|jMqUsy0zZj^4EgpOY06;`TdKfvmS_qtsK9_JR4B*^;Qu=&pU zpud?tBTtd#+Fgz9i1ESMQ1xQl7;@e@or7i~QsJMH?47MLQVWMEZ0~@2v2NJ6)g%Ao zgN9O*9S3Sh2eeM2=f((YR={Bdkir^_0dnUyQ8u>0?68xCfuYfwr1SGlIojC}RZtd|A=J)gtIN`%`ItDnZ^LvvrMnoUKKTkqfF09N~M z)EIuG20)&`Yna*)0KFp?IAp%j%eE;M?6jmA8J~PNVDoWx6-O_i=af_S(+O$Xzg(Y- z!DzgIh;~AWEZHXqtngHH-csTZD!a0|z7a8M^Z!-J2HqBIlm(zZU*du+2IDKgK=H*q zqxo81=-bAgN+y`DyH{P!D+wQ){jh)iA_CQ!*aJa3gl!AB8`=Zp&O9pSTr^e^5 z##=PMUGTANx%p?Gruh<|g6Yf89tF!B_}*x#2ML@Dwzgdh9<-#q;N&$T4R#G}#NC)u z%r;z0iBj$?C^3Wg4dFjVxWB)C807f-C_R5|2mpvD7i07AdIIWaj1H6*p11}n%J)Z1T7qLY%;k5{ z$P51!rT9d7P^)D>eDj_gr~MXGsNe_pv#kkh-~5i8n?pgX8Wl&FO-9px&z)3i_M|bc z6U$LQP2!?5Yrzp!5JvB0CJY&p+c-SrTy67+=K_8eKa1)ch}F zy1WRcX_!ra*4Sw`>vx2kpT4?`wOx(8+y;5yHJ`?rK(;#}8vnUK1b9q2611o}t}VU( z5qy>y$Q>HdFx18Rc#jI=_l~fLY+c2>oMUC$ay{R+sfOL(&ElzlFkjtJ%#Hf}QG2w9 zU7M&yCNnPgg`#m_YG39pD&FarmazfJP1hK?R6_WgGn-dqmQ3a%)MzUOKfXQ54db&M z`02BuW>yYkOA9;Ub(#6kVzL^mN+wT~?XaP%^t-BT6W#B>+t z#?bF}7WTbOm`Dvcz&e>h9G!-t#93bLBX9h}XzXNd1xxSq=58MJE#d{r0*05Sudl*Z zfzqtm7T9?5FvG^0F{e2t^F3k)1wJ%Clvb`TQ5$U(zJl!M0MTWuGx8v1E}jqPm!&xQ z{z!I5Jj%K|zEva{C*%<&$r#`0D?pyblzC*a)!dLS^6I1(D~J6<=9fxuyQ}EJ*x_fp z6GL=9fOd;~m{opO?&N;^)F&PsjKu5qz&0j&RMI`De%*|Q)lW;`6APSYKk+5ai`y(? zMNdJO0P^~OMzInQS{b8I%Fl7)YF4?1l(ay#)#DLyp*WaFz3w(-oyHXz2r?}TSwtl^ zWW3_SMAo#D)f`WRp@W;=pcA0#i+Y2Gsi{5tHP98FAM#H56{?1S@?;2M8|uPU4*#Yp zS)E*?yl{Aff$wwL38AB=E(G&O~~f8)%JG zX<_p91!JpTdE?sqc@mXmTxkA#ZNkF|066b|V8RI`C0#Ih(-UHuVshHKu(unQI8R0u z)=!2c-ORVfbh$UTDK#3|+1XRJ*Zwfgj41fcSsB#|JF^jAL1vj z3Zk3FH`uDx=Xl`}XCmFHq(8fR6&Ug*?!y(Y`YdCo{*ys5MfQ9}N|_Cf$4ov>B>WeD zE{{l*pC$4BbN%Gu4Ii$Pl4XNXig2@ZSMbM_lXX-Ov;9VIX=zwIW+KmP2m;J z2uSn^o~4+x@zx=#X66htC@&~B60G59zvep9%UaI{%Wbf%ZKo`kVsyj~{wqO8@5o_V zI__Q~PGfL=g=sLf7B!*19kkWfp3Lq%<|B%8dl6an5dQP(JAG#I)V7;pPY$S90FLZS z(F8rj)6k!*RSkls=LoP-CKBzf6C9ef%D?Z|$@F&a!ucC%;sS=v=Rn`Qm2NBApG zqHQ|?Lr9*F5p9*y8=nil$HoNsIA6592E634B&^6b^69G{gvxf70TiU~>Bs@sTLUkt zXmmw;wLG3Wgo%*rLP+)fEQAE`8Op*Bn)9qjEny}5R;xtA9LO0EYu1eT&ido7e{b*a zJnWF|=tYPZIvYe^I2U`rWD@M6KVgN{kCR-De@8_ti5%w&efQW#Xd&EZxLHxwsQl2h z+#0$eS*31M_PIR~S4jDPrPGZ_M>F}NN$U@~+QT{AUxGrz(i>fH6nxr2q=)qdIJUpHX#CI!C^bIq;nQq|EZMi;eRC-* zv9wBR>~0Brsp^S?x7-odmqPsi#j~fXS^gh9JGU8R_#1DbZzG=ls~N(q+aC!0060Fc-Bhu#K+19!qb}(x)n-SFj?#%Durn zjK7C!(Pj#Z9Ory*Lm>w*6m(^At%_q(g=?fUxsrJG%)uW9RkwwMG~JLpKVRuf`nP?h zvl)AMvv!ldxsh;vo5VWn#q{e*$~~qOhv&bvK_CB{oCjp~r7V8i%>-Rw`Iu}aCyOb` z8KcWlJdn3JxBj^XeH-web!jMgCT9vbtmFUgXFG1(9@SJ=<|GOsSsK5O+V6b4x>|i= zh7Jg^gQ#66vDr$7=`87;91eOu)Z8@xtzTpRFz3sz|G z_Ve4cmnUE|s?PTz5C*?3Zg`2S=-B(iu?7RJLYA{-!ZH$P*Npj^t|h?T`jN`TDE~S6LEPwX6B1wxm#uv% z3mpm)yQ<7AxLp3y#0u=9*aiGj2m;}me!=7%)bKZEZ?m(I+%8%0t{aNjtUg*#M?d>| ztiV9h#su?+6;sovZIQP_#D||H-uUgvR^yFlu2}!k(zqB_=OY3yP~dt`oj?C}1&3yC z*P)IkO9p~7oZO!aZ}lF?e$v!jo*&n@T0u#r%qw^R|HY_Xj;*b`5{z91fIdg@3F$G> zLhRT$Y+RhU?H>es^!ZTh3*nRv3Mi;DpD?!*ljm=D4#L6&bQn0N2$Ha9C_l^!4hVi# z$(YSfLnw;(j`{O}N=-(9GuR(OS838(uq%PWR4io8TeWg*LL7}Js~zInfTg_!)Lu?6 zrJj0`Z`MC`*}|9O#D!=U0>)=x08I1*EHIPj`Fq+@YbIo)2a5F6hNO_#EH&pQ)}k=Q zsC9d@pK_{zaWNy@Pwdh<&mLbus+rJIlXB>233+9cv@)lpn!NFOPod82u1vmsYMM~2 zkY39^i@!ZAdTY%--0nd*bGYgI{F0|g;MS=YE7x%14O^3ul34>XRe(_;wTO_ix$X&} z*KIp(%`RL2c z*04-(g#iWE-#JiBgueXs3FzQMiANT(w^{b$}nO)JqE8 z4a`9nSg;xr8ZSVguc;Zp)()*CHnL~90zleUm{a^+gJ>U|E;&WO14>LB~0#eVaG!UqbA;>_=+T`+aZU9NM@yr^OKZgN9c) z^+pLZU1x=I!5?$A81_+w;g5M_FdZ{&z>clS%zLa`8v;))Z^E ztFRW0gox)G#U!kFQzMBRG&%dc08*!hM&P$bJpQtLQH{pACCnecUHX}f?)*Bsi)ZOx zKTsph3XorjtMrcOM##}*{Mn)E4h*GxldT5^h7%TUZh-c_JSksgD_0EN{s?UAUOqE2 zqMC0b#(2d0U%{--Ho<^UK!(5Ph<$^+SIMXSSpRY|5ku2&h8ZF-dl)=-=Eh&35VQeD zXJ8a3Ta9;Nj1W-YynM+9l#C1IdQSGz>M)BvvL`=wn`s@jp4W+TF(w$B+V2g=@j-}P z{q$SHQdG#nJaOy+hxD9aZ*HA2eM95YwNnJq6SHOh7izCI^Y%_K~d zQPvJ`M5YD1kY|anJwMIG(^m0a2~nw)6pT6y{PZX1JHd`7B!TIcTXC=HTc}dzshQKw zLkECFwweIG`e4fS-=w;93v+> zi2h(;Ki-7X!72OVSu4H*@10a%j6PdAl+gq^>Rqr#uRdf!PFD8@rNs;c)YT=|Bd z3j!ljAB9g0nulE+}Lo&+11~Bu-PQbYnz6& z%l!+~6+w7dm@TvY>xn@z`9=}Aw%OkdrIv2`#grOD4*z~1e?YxBT5)*oV|A|bC z&bp?C{N}_o9nmWiraG8^%By;wbS-|F{mXB>oB=W>?v;C7S7rx2l&kBTWObk3{^JmB zs+R>hg}*=>4->r@AF4FBv3sn+02B|Tgrq6^X{4`C zM=F3&^GZtYGX_+HRUGljg|#O3x_`+rYiDO`(Dmie0|NM0--{~m$P&O6BvwK`S9@b| z56%p@=P*h%uf#ha(3HcQK`Fc)B1J~~U ztnZALvqA5dm=F)Il4Y!~&S!?^R=LA~?jP|Hijwzb5}xWQ_sC z)P;D;`mILqV!WNcZ%zT}`>&6ta|p*#3E7Vk_EmUYWr`nMoa;pIK4a-dqxO%BV2;^J z8O&J<`7Wfdpr_4|v>gxiSN^=($mRGNAh{AYz9?;H0f4bL+4lj?ylRlWX-r|k`7SO_ zxS~HcPN39H;X#NF+OD? zy`dr|@g759U!NAFpF{X=-%lFdsfohS^!%HS4c*_*crc5Qu;7F*Kf);Be+aPG(BNB= zk+9KadK8F{w0l@s>x6&m{yERHGh2q-teH%HDIrAhR*_=%@Xfi~*tO8FKZjq6$u892 zel}exa=7QmN1?HO9^o-@J@c!w-LKp!ZqLk;`+toh@JDn5cFm2iZwx>eQ}?aE$!~WY z*V3L(_1)GK=U6LpFNZ&mx08YCZ)kQV7UA2Ey4f8sf>Z5jtD~6#xn{olcF#oaZu=y7 zdC2KXUSh9*(!u$O083A~lELu~CxulQD(^O$^&?*J&r97vy$>SM?sl&pZ%zo^2U~8{ zc>bpo2wWQ`cYR4Lrhoqi6O_dAA@9T^BqPy#QqLm_WRPY=k^ zuM|R>+${mlfrm-g$#!2*^RcK}q>Xm%Ar-D$+2S)B>2`-^psU5%xLNOh+L`J!2<75O zjAr95(bo|;xD{(R6;S)l;lku;W-c=-s9j1Emo|zPd$`Xzc(NP1s^8k-K~yerX$@o zsLzQM=;)YB^N-kM`&)fq0kDP(09uH*Gp?q(6L|t_AHBDDAUl_Ahl>I)ACuLl|0&g6 zpZ$}@W2QrBUdIcnBy{8x1#|9X=Fj>gxm9ix0*Q3!d5gFCn2%~^WYCoC`#-D#Fy8dO zVt@Uwi>aF@n*fn@bK`m!p`a@3E2_y=_RZ@ss8%iOFJcZGWNum5DTiF@a~*r4S}zJ8 zER07TkjYr_!W4$yR4@ehr)dK6Da5;nhBwu?+VdX7Y+E;juOkM&J)wiJNvQ+~X16L! z&pi#7dY^x4*Nc9Q*l^?Vx|1pf_|^kKA{>n2N>o`i_-7MW75N=!8@4Y|#}?9KcG0oQ zm+)73pS!?iSuHmFi_PA?aJUY%{>Zh3uIqBFe6gpOu9qX-0pI#P7{isTlJeOpR&we{w*@^W7)co2`gwg5Uj+8Tx2|g?_%uD zVb=wlGE)aSGh2Rx6pocT6)nN1qrmEG1^ z>6buiyZ?M+4uEM zW37N!oqotStm;)-7(ZcPywzIR>~?h0S2b-IAZ?jV>=mjvJ!$F)_*i%HK$QeyrY3+Jd&iylLqP&`wv8Q^Mo9d{Fg;&Ng=5lz(!dNqIpU8 zQ51tfuu*rO6woz&EZyzx(NL0R{PB$kVS`@*&@?^;<;|QtJjm0ACWYA#P9Me3m^tM+ z4%z)V4w;EK^^4pZx@uhH-0<Olosh_7K!dPkt7z{m`AL_v-S1lbkuYF#c??s~U z>(gQV`CWz4S0cC%vO03qXH=fXc+j6q>c9i^V8LMCp3{iWgtqZPcAqTr4M>2efq800 z5;|c4pe>h0;L~F~o~)dIFB)b5jt#ju75_IA4~tUDL;>v0ZcU@hBNlYrkNwBTekIr} z{y0X&-GM4=*JgP9&N*F6BwOnOTN`cu){2gx^a&tO=|&2vBQSrZN0tuD{Do(c5k_VwWQH`&y4i3R7g@9@zz!KE&i zD(=uj+4DhlUGsBiJtT6A;GCuLrAj~_Y1^~j)9rij4Hfse4~vxKMX+K^a#wi1?Y5dH z8Sqr8EMPURfadNCLq^2P=gE)>5c*-j<_HX6wg~u2Md)~Vp|XzY0|SgIw;^7qPGG+W zj<+yRVp4KE49DZ|KF1Dl`mO&QlUkA*71xiSU}efojgQ=4GrH!4VCB}h z7mN-LzP1F%yYV`@YY^xoFoZ%@gvIZ+b?#OIQ~HqPW$Ru||C@^F0Ppv!tRQ-i|^Q2w>J zX!>@01dDCuN?q^SZMczo!=rXr8;OQkqQhOgcZ&<8DuqT5IOtY^A@3+3-{R$R2K$OS zyPRHj`FE{1cXM6)UN2d|TVCYqib;qCoFu3Z>Z0|@s3azq7N=R_}+aUxUOW6}w zVAThO<@ZoyABdy)k(m&S4R|6d2qE3Lor`z=vBJp;6uE-^|9@;s$pL*s%W_>YE;Tt} z3c~keBTX<&a=or0KYEESiM?{Nt2i$EM)*vZl0Hold<)CVoN#%L*bN4PcNc!hOAfWT zOtXQxQ7W?SiT#kZiFEjy>EzLJD!7cy0GxUomI z1LeBgXipDzj|#U)SwJmhg|ge1NYnpErkaesO5>!-3PP+m^6)X5u28Pa4jF0_w{cUr#e-;d+=&v z^~?z zmSis+i~1i?AG}x~Rrs$hiAA%7?-?LB+^Z4d-7KlIo8%N$y8mF`b*c;|X>^n&n`LKp zvs7=$kmEV_eRxP3+Y9zU!D_T>-9xi(g;+7;x=)5c5-_>CKRFoH}OUHhcrOO4SDrIVA8 zL;ev&(T@^7fiml_#Eg9Ewhy255oX}2$;(OU)cEFEN{$W=Z&9=qH-&J1-)Rl59^`G+Htle&Xt+_Um?#q4U!f`##SwWCi%71KLV?u7-o|G=_ zZl`A{BpMl&#xnUBg0GUE^F>3*-)T5#&2Q6|lHQ@5}*jnuj0y-VqfI*C%Oh$;c$I$k9$sZ_CpG-lS8`{?UJItgV6&;80!Rc_hWm@Ldx z!|zqIF5Y$w$UkR!ek{(sajz1CeTqh5Oj*r|VC|{%7Jf=S85?4(Uh}KDc>3h}ssFK_ zO8-Sl9Q0+Cihv7b2bt-Hla%c+mS6kcaguY2Yu8UY`2)XuLs}U_J zXm=q%Lq&<&m1)KgD@-HLT3Uc$En4TNT2?EDqT3xQU>~FALC{MHU(iRsKyqmw?ZfF`@L7a-m?oO~m5`U>IMJIi!g%5m`V zU(eD(stK+0LG}u=&q$IW<0ggi6Ls`WJ6^ZStjtw&4A~8bzGhOa{hr#$Jk;XMMZc+z znR*g9LR?m*T2}{MJU2{>)nm05o(M>~%tsG`bNXU9-^v0JCWw(#OtthmgpY9)U7f5P z)Kz;qj?3;P&cm~};FtVDy<;PUx7pI~5DvL&xdI$Ju#+8DQnoc)3YUzu`0D(-X;|sY z5k~zxZ9cbJiB)J;_Z>#!!LuxF5}=(t=lw+{+I<;OCx&Sz)-MBt%?$_U?Ojr^2)trT zPG88qakXgy-VKlFDx49iMxW6y*PF^cnm^*&vJT%E+M_!Q_WPjP!OxI+pARCwY55Nq z?fbp2`=dDg#?jNMOtGj8H0JBL@__sTO~=D2jeAa#$5%^z^~Z#LK`$`DA%Bv z>Gw2J4^>;+*aoFWbR_`s|FqScWq?TVNmQs^qvE2C3o`9-?Od43p;777VO487$*Vc1 zamPr~YDYtI-N2C-v=Ox7U^9}pqkBQ=eD!$=#``80vaP;N%8<@CHRGHug&X&czJU65 zI-7JuL3ag2QryP+Qp3Il>A0d1;kAK#{6(;c!&bxkn3-~mw%<*~oIRO$Ef&y90Zujp z`d?zO0#>$Hn~Hv|2t9@D9vug7f$xhmEw3g8@px+9M+$vx`@c@SVq3hJd(+@BeX&-T zi&hdFU4c9mNoz7;jMPeV87*p>(dD)6El^^iz?sBV)&yU9Hg44Xpa&Bg8YUCrwm+0& z&9(iDT*_LoI~B6E%>h`AQWF~VbzJma<*Ro6G5jD_1JSr+S%D@z4?brK@Q@!vlA=VJoWuJd zR_M}9(MbSohM`vUO^SLj{*wQR8nt5_Mqj%!Md42(-j@F;B_;96jY=hijR!Vz66{F@ zch;Utx-#C613qi!K4RnUb~FI`qn>dD*T;bC+xKE=g#<40>ulsWgSO~53uba2jKquIHzt387WGfW{A<%8 zt*7zW#6f2JoHY{OiY3vIGi{OR5;q7#Aa(bh#XE`gBqMg;MsD+%YDt4n7-B?GJ%rsS zxOc?xf)smOqiTVu>$jY&ghs6${LrmTvp6RadZla#3XT%hp3D`l?Iy-5bH^=w-RKSc7{BauRxH&co?r-Y4!y?bQ&#mRS|s+dA(g zF-)o0XwqShE~#{LZLB{08hB+ajpGGBxM-)-+TShvy65TCq1E?2P9tz2R_UDkjeZ$Y zq;8}p+7@|r))T&$&RT#t*GLEVvmeoxRL4{u@lq8|R!qCrB9|4geb4hTajm#djyPcy_G$E9Bm zZ3L8rVU(VD%JKU*f)?vR_U{{$leWC7Xg$r$-_E$dfDCsp(YqFH%1JSI`xM0E5rK_? zj5jPAMjbeoKLnKfjYlT^bVJuwipmJz!YEygevTXcteN2< z=5XQzo}epAcY)zOI@8lni?mhkZKX!RQh3>S(UgpUuUs(r3X+fOcyahb=5-<6e896e-%-3s;-k za{`_b%>dk<;LBCVaGj^(*ef5-`FjD#P|;vC>N4DmpOrApsP6={(+F|>i#cBpYmw24 zr*$A;A(7&+zot-l$s4kvFG*Hh@aYuHc4=!CT5M|+i~Wo=j0-dU$uf7Ejt^C#R- zXcMSYcv*A3`-O-OTub|E7Ml)i2`f_ygeB*OS)pQ{4`8w=f5}&0|6xZAq*plF%gQM& zSYRmc6A4Izl7vcOW#BGqlS2(B0DFgN=BR2YDrYxg-g8D(-vcq5qJW=4r~wPr)Xg<{7hFBOZu;v)s&ic?d+A#BLJ2=g_%g2peP!gH9EsTj6W<7 z=_gnLkmmRoLZ6d25_Hthti1JrZy`%CaCAklDWY6NE)T<{`mN|UB+$x=yevtxMy62g z<#@wfV%zyh!&rx^)Z{%i`5NHcOGxOz`~(c5euzKY^n1Q77asjIJU;e<^zg2%HBe?Z zEWM6UX8>ihA)z5x9smtCiwW)}- zn|Irb1m;%v8<&s@$FECJKul;i_edYmwI{>%M=KdxjEfW~2~^+zIKTWYyEiq7Z2jwL zZ%bX+hZxT3t?1QFD0*}kzBm04{)QjpIrsS%ub``dJ6Jf{hhGpY?ypwY`C6L<+Ih?T zHLpeHJi5C2)|)hAv3)*!LEmUjIPPy>oTCW{3u>PjuD$k1NC$sN@T0`*`oGtM|JjB2 z3ughwF_!W!&n8O5&bCCKGvAJ;P~I7dN`S)v)u}`-*rbZmpKi}MR5Hn2ESFC`gU1tc zr0L_$8B&4kd#~Vq^r$%{yKBublexBk9K^ycJM_()B#&)_yapVF-7+ezH)6C@yTMkS zll{ru(AYEegUoRK^}0usg0yY#0@eDMPIDlnj-Cb9&V1lSRBxFR)W#m->NBtBFMcaU?HsZeW~SH#-MJmi*N={Pm7u$nQ44 zDC#&wtss^h0>JPeR^>Z`sGDklWHQ@G)OnH-*B=$yeJ%(w1BQ z(0suG&iukvmETh`Xkw*s`c6$*m#hv?YXT`Izlc~}mQoo$`FH3G{UrEHcQkSKp6#1)*?5Nar=I2qR@8i~gcRh*BkE=!|+J5(^1F_^6B?NK~W z3H>C{a)S_yHP}|6rGD;cqg?}wChv{^C*#A!Nl*7N?2rXqi=}X=X8x`E3JQk=io`>H zw>T(m_vAuk6BM^y?k~+?7|G6-2Lt)a2+`(UWi~MS1QS60!U@WBB(c+Cax?dI{hgul zND`?C)ME=0Uo{EeDKmPb3TnA7_;EVCW6BMha$)J|L&2M=%fGruu_@(}XKj+2d6={`wH%sh%2)7@=9G^1=KOkY?~3ZI5frtd=a zrl#0-Xs~TaBZi~^?a^s41bAjBr>wJdoK+Sc1%qp}y zl?M}f4cQRBa}d0<$^f52B>V!G^^1w3*1)_U}A6+U6&@fu{&S_S;?GVctn3hLKhv@X?CkJBr?<0vdLf|T1dX}WJ?QMY;olgVq8CTaF45eY@) z`z6?4=W=v@ZPNSLRMNq9@NR1}+U&I3mBSIz-PdFe!CjEn_{wf951U&chhhsdQq#A7 z&E%`U#qKHxbOrK~s`iv_i53?Lf4QKh$-yf)+JJnl=*tqP8#H z^%XY>r{jVx=vW180%J&rXD$4r$5I{^E!>SU28i|Y)i~?bi&{{8^l_|D9b`Uzrb0F|_MScfgB^XH6A7;YDy>BpRm$5< z9`(J=XaWqHjvcfC!c$tr74rk8`?keu-C<{x0d%4|RNUxG5^p$&58loM+Rj*wRVX}o znH!WcrkAYu4z8!CBbTY}CRj;hX9cAaU9pyIr> z@9V_iQk50KMeWr&(@j*@Yg$}U?b@4^<)jxfwt`W8@6Bu>OXzi-cuoP!U~v;um&wH- z|9y>_{#rM^f)qyc;yA>1QdLJ?|swxkd_9 z*5H&?2N!bls`g0k__~V3*qyQuY_J(M$RzmXQ$5$O;1(12<~sU(4|N3%6B4%SclM(Y zN?ivy*J=nU@zlr(BM3z3899U*lE@eZpogwzxA}E?^6uZ>1DOZOsqQ5q$#MMV(tbii z)t=jGVwPTZdwAvZrLZo#Bkb+qT2F%If@8MJ9LF@sJtv;9H;-?)_0gCPB|CxtZtY=k zD8arjs@>A)F>ed+(T>SNX+5v|{E`ChEzTpHoHi=RTX~ekafb;l+05#PKm53GY!^mz8BaES z=SVjP)?>ZFALVl{63{Lpm7yAj9#@fUQ$}dQ?sr~ezF696d?HC4qlE&6ZnL2tTISN{ zFIp+R-7|VDtFbPhMO=|IFec&?St}XkZknWI8-qVirf%i510vEN?b=G1R(a*@kBH9n zn4&^AcSrr(C%uIT_ZaEX9W<3zvQ^GZ7(xdr=9Q zPh8*~JkrCO=(k6L;bk{5M^TKS;^LQ2CJ}CE9maBCg-(2Ik_kjGEO?m+w40)@ymIE; znc%>d>t{HH-(X>1iW@$JszCg1a&?9DQ@_dGQxIhhP7WLQNfu7b6v7BCZK)?T`Yl$j zI=oNfda0)fB&e}r?+dKi2l_j9Tho$stQ*VeIS~A`pY&e-3MR%6S-yMA?&V8XNK|TT zU>8PND905a20b(o^khxTZoh&Zv&w!}&4Ryl6=&XRfFX*0O+Wfus#h-q#TrE(Kw`PRi0RoTfVgWu}w+DnRHLuLv#5LvbmvWy@c`w1T0x8(ZBFl58tj5 zb=K;2#*739Io>p%ztP%6WaxhX{D>6@$N2oxE`r7d3Z&czEbad1Ft5qvDQOp67^-Fyp7?)~1GJ+Rq2xXb|yiW)O( zcbs%ed}M{7yNUZI_2|KG#J%?ElS+1@zzpV4_$cGAe5;nMsaJ-3Y}N^HI5m3FRMP@y zQH(vQ(q+W;v88A)1w$Lmj)V8=$7dDM{r7A|FE~A3)^f(e(hQISS}cOLD-P|3Qx(bI z-px@Bnx}=Gd1OprD&JU6se84qlrXB3+@k3cuyJA{orY+79lK#H=l>m=<0zVGUjxYT z^!=`iBYqx(0rtw;+J}CqvuIh$DDw1Z?dglz{KIpQHkq~3<95%GP@rmZ{d76sthTos zqotyC3G~I?jXN=j%aT@%!VD24Rg5#AGTmo@;-B~)hL>ois@`!cl9lB zKAzOKxfYY6An(=(Xq$4MxnBHiV5oYI3}FC#(_uIhp-P~VwC#6qO^aAe!2d92{(}T) zFwKId^_kaz0KCy3XZU~aZyCgFpB$)bOJ;_5Z{{zX9HKZ|RAuT;tH>31>Ezjmn)hA( zRR!Ky#PlaRGx!fWoWpI`H4|$k;tu5xH0_^v{U_MBh*m`Kdd?Wy+owLXb}rqHq)+UH zaUu#{v8j4Guiq03DtV3xm=0x|>3rNfw{yI{y5zrl5_m24{g8rGUr6VchVZ{`|ivd=TV3L z(5LGbjlzkIQUOp#S4f~r851bKa=05AN4jBkK_1F9=vX?6l4U-Z6Q^7<2AI7m<`1^; z%g@i3HVOO~)#NmmkAz4_`?{+O`wZzH#iTOHyzc+~*<=DtiCK z7n^K1crDblqoQN^73G4FU!9*a+;<2jh<&oQ8hFz?eL3A=;md^wFW?zzXRv8=j(fU# z$@TUaVOI5{{*P0ImT4Vo%Ojoax{zOF{P=Wh&uY-bk4l#`pGzhw#_w|ZcVT9g1#ZMEqOH*WW-fjE1}Rso;7_KNY)lC`XA=nE z?XWNU!`o5(zV-GUXp_2sMc^p&$>sJBj85h`Q|dI~3V*7e5A)P8V@Sc7d`~#~ymb!S zJD?x9q@9f(XW|4~nlf9&z(9_$DE*^Ad)_JO$(Mv|XE|L*eYrhrRyvZ}9tnYr0x@@S&SFqj5IZlYdcao|0agLvEz%#W2 zHgFYS`vymVRKrQf^$DSE-v{rLi}0JvDtW;+gf4WxDNugrDD)CD@r=B@t6vRBOp1KQUn7 z+~U}H;>sS+iXEHCfs>WY7ccY;GJH0$;>kXpa)ktRC{-eI?UNOLGkee33+r>Vy7f~< z4-{|bi(&Ssl1I^$!eB`w@gt81$w2*Hjwa9uE19>EoeJ#WH~EOn#&7&IdtEvC zx(eYs_RQn8kC^Zm7Icia>5)Gr3AuqZC@(D{H$v|jhQ~;oryrlVaJA{dtSKKqYx=i* zDy&j?#o*PG93_L-VXyPSjz4sa=iWVeQmyVRNn08CXtb^LO;cI9Fo|D1Bism;7vkn} z>fykKjQDCuFfMnC$=7K6_sYnA=f@kJk=co)fHwVU(LAx&PEt0=_0*tXP}IXy<%PF& zat4wA?Ril5zfQM^cWp#EZ&x%Bk>Zl$1omkVs#b9Tk;D_3R#|mJL#z+S3h`@FD@}#B z!`1h_4JOp@z%tsVzvS<#>5{NTNVrootu`|&JSz2l%YG%Wp&m)Afon>>ppY)a&}{ zg%cWb)2gZ`tl@exd`oVj$YYb2yavOIovPqjRvvQO-0D2g6DO0ok#zCPI%zq)`x%Xb zco_C&{#6=9VyH>iNjhse#*-Qy<;AQK-@u}tK$<_z#LDsn$faVa?Ut9}$-kG7pe+We zc`b3L@IH}~OrQjfPiQ`^f40QEo?AekGsNTBPoDLW-D8*TN)%87?QYZ>sWzAis3>D~ z6`sO<7dmp;;wG~TzOSuDi5m%8u2QtHgyV-FKapTCGMbGbl?$$`p#Fe0$tS`xu z1)}G}OG0%<%P6wYZSed9|0e!h?ddtYNjety1L?-SC|PFbC=nwkAE8C>iBvxaTuO&^ zWPX%L`9MSzIWN}BS!2a>A<7hlfDnpUL`v!253E{6U7n_7k2oAWH=NNh)v+g#auW--4>_XQnuNX&I^WFNGC5Ey!^J?!Cssdi^irVKUwh`UzkL0m%P(pxJ39&F~l zqyS;yB*x@E6$RT9`;}%1`tI5O`v&oM?|*%BW)V@F4*R#+SGS*QdovJY53noM*>7YD zViZ~KJ(#Bp^$uJYG3;=q-!Hh;KkjDfYMl6ScIEwZzm4$&!>i!B3HBU6J;A`Mi<<>) z=%>E1X~grEZlfN@WZv9{OvINf1{U4ZP|3Ps#5d#yq07OI(w$#W?3LPEXR_ta+kf&E zw*lAQkm?{;Uq!Oslm78@xOP9E#1X)Wo2mm@z2`cxMA@B3an>*rSV^)(t<`)OtsFB} zSoBDkBzxiJ64U&h1J!K(*vbj{Ir@HCPUa{a^h@zf579Qdcl+xXEM$fDFwX(5om)MO`=rTf%%)$Z;!-BKzG zW8pG3v#b5bJ(L;@d1u5ni@D1{@@?>!)1Cj2(`k^jng_ZEEpVw&CK3slcaT0g2g zg``sP6%4W+O5zZ3UuKqZ-Q(P$8qNteVz`$Gkdjsdix-lZBS>v_G^{|y_{_!Xq>rab zYfyal>j(btUCoRwW>9@S(MU<`Jb?IFomIOX!Te!o<#u$rkAKG@A3lb*Ait zFCk;cwE(Hwr+<2^slRJ+P=F->Bz5=pk#{HAhwK&*{wBqs`|psH4Lj49Qk^eC#n@+9 z?B#>}g?gKk4|^5d`DxGlb#P62{5Ia{`tKqoBn_<=a&OEu*z%%>_71 zy<*0`he$Hah!Y#i-i^4Q%<;tj32>^trtfJZ8~=rsDFL4jj2Tm$Z_Qi_#0PiBg9fpgL!Onn=3Y z2!VW~M)#-mQeGB4@gpx$zvc@CT$Lj!StZhcu+%985ONz>_kDFVARUg=<252pjg`8+%lGmGGOXQH%IWiDGGNF8Q|9 zYLo3es8d5kR?_#OR7Xc71t0afKxbSbKH|raTbmY;EY(=^mb?(b%ZP?ZHoL?ODq;g^5rS8w!=0Ers?61um<}=Wf@i&IAyN~N zW3%$7$G`SUwpt`f#>r@w6|AJrPX%EEZT46@>XqC{6~p+Va9D+p{hh>rov9zI4CX`* z6?1+z_t1&@hPaGei|X4f{@8 zqi-4t-?gne{!PM)P3nhaog= z?fL)VXLNYV(QO_ITUQ*e(~ys4cs!sK0#_!*26dZ0PPsHFhJciJ-vAEVHpWT zRMaAM;(Yf#spH%(=(BAATojnpn+*;bY!?;)q zAo4{Zo#RK}I%T4zTU}}Vc3^=aHo{u*`SX#g>duyek3lZ>J#%cHw7)F|yEwZxzP(wj zdrsd4yD{QJxCtOHyB9a&4n}_7_;G~ZO8fe35|+{al&2(ox)9wdfDKD@6zZ&0aXz1- z5QhlgNeG;H5K$@m(hD^;bB`jaYi*7r|A#MVOe`z}6L9X@cNJj{j&6`5@WZgZUH^KU zI>F#h#q^f>%t<6!j)g#P<=BHkBMM$d+x2UyFAribq|^lL-Thj_tXgZH7LbRt0HCR1 zw%*`pVZxo`yJ}Tpti)o^q97gNbQxuIM(n^$msKxmHVJH|7 z(TH>WM-{dr3b2b5Eb@LBD^PmCkbO_eguyyamP7|>!LbGzQLI=Bq7}L=eUBofziY$l zIji3o1(4j=J2D*H=O&cYB$XG}`%!G{=+3>$)!1_Hwi^b0?96vV;c*Xmvi#(hj;V=P z`tJ^Bgk!?~iOI6N6~1URvu6uE+LQuQe(Cs-v|4G9S$4ne8#iO(5`~GD<+(PYf6EvR zg%oFIJkOq)A5}v42RMgEFPa>n^U4QpMscb`pTWMk_`ZD(zUx`u9Jl?Yvq$CN-1Adr zZ6Xg5k!)KGYEy5fy`HRBzv6L)Ufn)-n{hrd7Nbdhee#XvxWKbCpt0)LzxOV;*yEMN zpZMx1=j#Su-{?9)yg^<#=zgrsw4^=tqoW>aVRljb^2n@~`S5Oj(M;2`+vB>QHZQcv z8i}%Don^3d>|nW})UVtJiCm+8Af0Qf;iK0tO z>vw0X^451s_@sV_lUT9ovTC2z>ua~1H%svTrf z$w<+_>MZuCG9}jvJ^fc=^C8=Zws0)BzVg6Y5G_C55-%xsMzaY^&2L6dgY&fEQ)pT} zk;!o!A#FmDb$x80QLH%Fz2cXlGiY0YvJf0;kF74=8okt-R@@~D)S;bioO~z=>(|Pn z<|dPTtRLX`+LH2Z_nYM3rDMhMbLMRO#s+X7A~R;S;)94?ChW@v{Hm5!Z_cJ0MnvBz zzF#jzSnn_%?bnOx7?mY0G9stJpC-|sZDkm?n)Am{Rqd6DA&0SrE;@BD<_Xo1*hQ8D z#uoANA}}37y4o-ETOK6;;dlii>b$##_?S?F+p163rDu|#4R6ICBV4SPB7TAQh#l~Z zqxHkYh;LSSKy?|jaXKAPgd74JF&28@51+b)y@z7CTw1EZ^AO=yd}}CuJ*03 z@n`u#INVfJ>U5`{6bM%;zJC^RqP)ixUaPSb{a><6>aMkKR4spcSY9PXK)@U`DV3x!)MwCpT#_|%>rr|RYz)>EoIgY+OIL<> zwf-~DpV)*;q_RwsclD~hHhmzMoh3QdmtVVN$P+fN*#dPT+Bi&)+v@gLjN;HiEZ*8q z7tIHrKSZL!Pv+r}Dz5SlKTmh5-R<)U7!|~S|9EIK=LB}Ln$dR_ROzCgB92P!nqa+> z>@~nRe_Qb-M2pvgGBTtc7iQ=ntNiR7o6p#k%&tuLf;M-=S1L86l**NV-O79qZ*m(P zY_vI^tITogSVT7G##fwoP%Gn4xK}ew3fHobmo4TI6eB@wq^*8FZ^R5A=upv2wlR4m zYva9b2_I|f#b8IdM-NR#;6F}%#@44ck-z7cpchgNP#03;2LClAvkOChpP#_aW`Y~m zBJheE_0kuP3)N0;CCa{3xlUWF7?=>>FN%6%WEmrWmlB9b7#~KN&mOCPP&Xznn5kDE=y4~S<#|!l2~dfQAM}egr*0dB0UYq%u8GcRG>pQi{qYBEJZ>NDPaZ)C%a!5)ZAy-;^r}J zsi?K;MpUF%&e;;I?_&S6v`zR{6`~x{f1n1M%}865SQ?RmM-v;sZ(#Q+4YFFi7#kcG z-O6MFd-l5Oess9+&p!>4os3=$!dLT{FM;5V@18pyex1~=m6U+4H8H80k2J0|6|~Ji zi<9)7Zp36jfy~l1PvhJ(=ZC8^qV~s)QN%r>BBD37Q{o@&rrRr34FBUS- z-RDy{o$nnkjvZ)$^T%z|I}A5=W2@HsypR`Ysb0lw{>XBNrQ)e7xNMo#p`sqDVZp(i zJpW3nx6h9^8gXT1ZhE4*+la0ia99m1-(iUFE&Z{SPBXzD{+=Oyw5^9FLJ%#nVGv!x_eDBw3P4UhS{Ia zHMf3SZP6U$YjJr_rlY6l;m$MVo#jzx_*Fmm9|C5*60b!W{p6s>`iHUt#;rnP#ylBD zjfIdBsXfM$+e`+Hw|)!AsHJ_#V)L1nYZBhjyB6`ZzliSoRj@l|->@Z>8*q9tzhEaL zBuA&8fabeFAbWbs^Zl`JGQsou+B8>#+G{LcVIYNxJEoMs?A7eV)7Id<2g$;OmMZPV zYrPzS3?&9jdbG38cui_!0!uD?;n&i<&9WVjB(FD??3(7CL;Y?9^H3!JzHfPl;GJ&C zCZ4h^t69wWDnQ+m)n(G02!^G>3F;p>87G-c&p~vVA(f5qA|=%QbeLI3+W6D{jwho z^!@GPj+))CxypBzF>S|Zfarc#<1|2fjjBh%EM-9FOt6cV8w3P9c1DIS2EA7oqe>z1 zZ;Y+um$DCt2nZ@)4CuoeX^K}9ncE%|$~1oy_!qc1>F$XLX8 z$eOv-dM|zLd!IpHdq>WLZ zS9PI*Ey~Tyg>eh~8Ta|~?s(zzS0xJeDYbGc&6@cy`cgUsq#MjEnn#$gPg6v&o`^DG z%#3@cYIhP@bw%XgDY0hfF}m=?opEf!d^*zTFCy|DJLMpzT_OF@6s!k*S4SIB9f9=Fya0(DzYM{R_QtJFNl0J+EM(*&J31Q9 zA3bxiOzX41C64@jFj}D3bKGDNCuc6k#n;XsaAYnBlxc=ZVAq(@mQ&s#7;DtD2?rdd z#g?w@8Cy&)bJ7hAInrsVhP8}cMLzEGg$liW-pVUu^6IK@ta>Is@dw!lCUTTTWwNuc z4=D%;X4=~r$?#kxs!!(pQH6r&WB%SRSWoC`rk85+!Klkt5d?YY9Fg!II~*s7_m*gI zDeDgpq)(Bq=b5FaMRe>Yi*Nq+e;sdMvnvZ3BLlu6QFm!$nqI^eE}WV&n>hg#OI_>) z1kYvWrFm4iRqgX1E7N;txLu~a-xX%1d)DZm`$DBm_>l@mi#bKM-Lq)lGX6Guoo>Jl zg3j>a`3iXA?8VRv?3r0mRM{JBJEU_Nw{h%YGv_PCbdAjYQo@2?onFmb;yv#6sGH-y z-Y9=sFUgS#7wjYp$p{a04p$u;f52Uu3X$#coGlwky{-u}3gWu0yt%$wm za7(uvcNaoBPouZA6A|9uxy*lui?!iF3?QcL zhhS!m$3A5?BdYG#nMcK?lRvVQVYTn8gI_#Pke6rc>9QHBOjk25I-BcWU{4ZLqi#mh z2HRm94Wjj;&ing&qia&&8BXer40Qk*8d?@1ak9ka=#(kUNr%}~cAEzq#xIqt8U9)1 zCE&fnd&NOlQWj`*i{}(NDi-cTWlk`r`6?amb7g=)$RgH^p$J6bd`Xt)@8OIW1a=}! z-7xDTOZ0_IUatP7h|Y!T!^eGs{O8~WeAir2!==Y!QRNxA-hxzlbER$uLdL4MCK~j+ zfn6Dk_m`Z5`qX@=1UBEVc&7)+6C@%!V7V`4diYcihUV$weWUox?(FMo^VEL`2<98s zQ41cMumr%R*)eLBuNq;Ra{NXK0Xd+gb1HhyD-|W zMSevSSk!^Ew(57dPm!Tzy&>_!6R$AyiQpPh5l)r-@2`A=n)B?l0re$&kE>9#{}x+c zkP2KS+vyRfiiez_rrcA+FBxjkhtl}a^XY~V_5sWUx#Q%6ot74GL_Mb)B|sg9bjb+`kTv=}Q9Y4-8Wn+hlP zdZ-|c=34&%omy|W9}&Sj_;K-E;1fSZmBKC?!e;lyuEgA((DU`6bv*VmSSSt}*i;5B zr>nWE$8j|WXSx8UGC0E~GmJa)y4dq>sqn;)vZEi|B+5Hstl%G`zuy>{JV>0-!=S+4 z@q9yUyW_6;AC%Hf_#Bhpg3gBXt8jx3?;Qvp%|8<)nI;zNX)jzzb65ymTMvpd(cH?n8HK3to#^#AKyEBbjc!138mG#Lb&)#AZ&2!mG44r*G+;)6lfXA;itH^Q44-4LCwa!2Glf-t@66mA^X6d_jVPc z7se4F$egH$C2 z`S$?v^I3anX}N8x_wti4b*ix5YaOxDq81Y1rLH>wL~u~*eX_;#eOk{gS?#fQ0Vb!M zciADJ887FE@M{#N5tX>q_baUK=_1GFLtp<4)YYjVJ_eGKO?&0ZweUxAS?sd`wCWXV^Z_x& zY96?McJ|Nbu!#x*6(^_H@v<(LxH|gX?3d#vkkbfu699`2lttJ{D+BjDD>nkr+0hRY zb$f25oiOUyB8F5);2ur<*)Ag1gkmBOUc%5*>6AzH*n+lA1D1AyBBiZ0i9FUyFFy-fMEq;`MW!^<~aN6Q#!%c}N`I-+$!?PH?)|kI7a6 z(X|y;xT0#ltBbT6WG3FER2+q1+99i(no%sW=B6{YEYz%CG%5F^=t`lns<4a ze5`O@6^cY98|f8v?#9Qdl3l1z|J#4%(+H)rNCn#=Uo7eVJe9MxR!K@$OtPB=)UE+k zDvtZKFw=h>lCv)5vfex1$zoRcU8Q-X!2SvGBC`%onI;U`E;s)B8h(xLG z66PLq6Hy5;fd$?sbCdp+H#Kw*TSshD~m0%>N4bB#vP>T-CDp@spr`sJa z2gXVDhW9HpEf{6`iQrjvS}7Ub%n5EY7a$p{J{RW*!4oO?3oP5nG+1x&tCU!QhDycg z4M@*Y`t>Zqqx9n9;#^QwkVR!V75Dga);fV+a|t%m>&e!}jTJA@!U7Hvk?F5mK`Zk- zUjk5jh=@b6`q=WjONJV&xA=hf4e4F-P)$P)R+a3NBl-UK1NBdM zjO2I#iSTxe)v|B(4y1b$+T$?FqKO-Z2_E+x)4Fy7_y}(qf^3}o##*)fb9c4BgFh~g zP&1O7kB(fK$+QLWnO4+Quk{>iusUm7sJLwzk^@is%4jbibs=bN+0nRl?6x|-jU=U~ zlt;Tz@oReX7PO(%rDa5{j>Pz4E68LxB{n_?+Wq=4ik@AAxY;O{v_Yc+)TRp9E-KgB zyw5_71eZ%vU_baDrpaxdrYd_vz3|tjt+?KSs%p$=AM!5Q++gLqpVvEe1evXW2DY2ZK~qhgDcb&)ph=8Op8)^wpv~MgMu2 zw(%l%fVXF%MZ?s?^RV&gIX)DSprsW?e#sLlx7oYp+}=2ImCmv6f?ea$lq%dW#;%`i z$2&u@C%H`?^1WKAjW$Kt)Kl?oPcEPUiu87M)pq-g=h$}57`Rr4*CIPHJ zVs_CHAd4=SN_o?u1w`ik4fQ5bz}XCF0(Q#hT0dX#Ji(8ZVG>m#M!gQ-0SEj_0rmVm zE9kbDd!&@1&$J&8moZ1#Te=FBWl)mIrM6C)h4p~5OT@19-s3Fcm{-F-I&WHAztdr< zVINOxqt!qSmnXJKr;*MigR6SFrc5lFr5JxKX{6=$-dnwKWUSA{V}fAb8o*76;>g+Q zNLUZ6J|Fi&N3Zxfu1@3tX5@zBcx9fx@%|T4r;2@Lop}pZl2`Wf@pA-uf%504*Y2gB zz+}xuC7m{cId%Q~>-oWN<4ZVI@;<0EJ2F)C3h}?${O5Bn>Ef&Pky8U?s2(|6NPn)^ z)wjHFSHU-`T&lB#&hibb&EqPS?`@fM+{@+k-T#7D>(x5l&o-H!Y}Z}Ew^o$Ojd(77 zBfO-l-`Sq$ko{6xj2B^{UQ-qwN!$dzJT~@AN>OgOZSDXczHkc!4Trrfld(F4vX#J) z$T&aqAq@9yL=F@aYhFeyHpLmc*i0h|YzRORe<5S#QOSSNdk4<^FkAd>N7t+FvHN-D zbNye!^5E*w2Hv#Bn)Mwb*1Df6H750($#2+p%{(K`PFP}#)5Q3T6FjEPy!yz5^BO^G zHUq_x-g0s}$`E(QEixLD4Z_4J250V$_~fc{XZ*HC99OL<20(?e~^SK+YXX`MMv?&Jr3o zN*`;tyY&o45h3T)lwn&4^+;jBs|d6i^EyL7rMVc41+v!Zx=x010Op@&QesVbt`rvi@8;Y5>_-y;j#Q$miTBC!rsZRMC5mP&X{}!3`oTm~1oMzzYrR?rF?I z7DYUc6?%FX&Up#`+ggA3o8w6Rd}W^J-SSI&zproFvF6T0;oVWW%B4p1_FGwDY#x{* zv$3ZQX>Sm^Rugw*a_qJf8&Q6U$U`$flb9xCIqgX_H*z7`IWnB4G-l3c+c*2!Go?Lq zN;R&7s4s|S>GGDRv;4D|VF&)$nsRRe_UY3Ia)hkNWj(L-H>0H9&sqw&>nLr9VTm9n zXiqI?++&ODG5ri>?b9nL|9X0joVQcP*}elZ`7~`p7VhN|BRF1?Yd7>Mpk_5RN>RI} z_!-mXW@6V_8Z#6xJ=-u08h7yhnfg?F-152qfo{R8|74NHytSc@80YLJ$d9W2xY=Vr z-lR|iu`B8yuA%pS;TB}^hpv_3VdiS)c7hd7mr8KOVzLT;qZ@SEM>vK4ZKp>suXH64 zC~W1rSL5cs@f5_HG z1phVA!OTMXilb%jF4zst%@_Sed5^pWhD%LllnaO}q@h%v6)fx(LCCU8mNf~;Umt;!&qJYas)^FLw1=afRSG|qld_u>^0 zv@rHaZ!LV$4>&`b_V-n$7+MR578&fPmfpM{cY7$4hIbS?93e$tf-c# zje+Y$Cpk!GDk|%)UK{;G@EiBPy|+}Z{a$L?nRrX#DSOfI2R?qxSbou=?Ne0H43I|1m0o_U!+yBVK)uyYs?d zzSe9i_myW7H&mDC!SGb|X}vp{YSTOf1jI|`lx@w}!#_i*&#KI$dndyKMh)Za+y+9M zJapAU;@54>S%5&nf8(bEET6TpsQ8V4Rdu!@Chf9CuEc)_0o?nEefl`F;jYP0?&NL) zF<{05t@7*>+q?0usK&!NHDqbc2y}epS~Dh~N?>^7E9RBy7xQitj?fF-pPvSkaRWiA z7gK)8d#)oR?{y*h0gC#G56x&7eapD7 zzlDZ3CN3NrV~M3cupQ60?Asy&8PC!|=BIBfM0W`gI1&S~t3Rv#iEZe)A%GZ-JXbP9 zN6V(sX%(U>hSh7|9YAZ$Hj0RZ!22|elT`wjqxvG-ON|$p5ru{o16UuCuw~w3o*T=A ztbgYGTTyCQw9^w3i5))XJPDU!&Ffi-+o!z4WbZo1#4KX_PKt92Tp9j8Q{5*vM+(KD zi)>TtSIv1z9L(--<1@4=>s}N6UAtg#V_GPY`@&Mw7ocH?b{>xe3Kdd|lP17o1b_NS9vXH%_^R6!eIRPaLzX6>` zZMz`-6ix35F~t=Xd+$xngZ3u+Bjkr;(lvLPd3V(HJg^3SJ!^;s>IOL>?qt?*=LR+W zIcB_rQQo&9+OUa}9eSk~6JW12XvCyFQ6PN#YW^uIG#4F%4lOj!{qDA44Hfr2H(2cn znGQtL2My&5TAjiK^Bh)eIc7Rw$;+8}|R%^6j$g`CrrbKusR% zo*Blz9hjbTCUqfa?y7)uCB?LrzFOjR|*z4u+eKWxu1gx{s8G@TC^Hr@>50- zdO|bf1Bwe`qnYtXL96^i$x80K6yf{h+)W*BrD-y}S=p!VIK-O1cA(+m*6Rj#hb1=@ zJnEwA1di>AlEWFqe65$(XX`F$K49)1P|bz;jazkDSVViNs#z6w;3NaDG%@1h63!#_ zYM_lhBNVPD1yo3gj@uT)aUOWrX`C(wWpC+@v2$$>#}(mwKBX8P@^rnvZcR@%GzIvwvb4Q@m;HCizGcEW@;5} z_rjOjEq*sEwUZKP_v?EKxMPMT$a<;dyjctC_@Qcn$uTrxEYylHnGuD)D!4*Lvy%a} zR>Uq}yBNC{9le2tr@DKQ(14*+Xy50WKqeN^x#c!?uE2}TMu^U)II3&FY9=dm<;{AD zU`?^sX|aXT*t48>2;J4yn*M41FFdr&(`KT4>=kn?!#LD0&JoRMT7r7=q`y*}N=9vF zW9%D?fp)yz#bw??wM^>CZ$gx}o&q9B&JBR%lf~j_sjE`jsi#(b6hX1JCB#UNL4TIj z9=EUxAV@Y@9hBjH3|R4c?i*BYr~E8_M;+a}1C5o0oW-CrJ`?U>+aioAu8kDLQmGI8~DFMIuRGiP`jY zjOG1VIfA!RY&@3fCCr~EZgVh~_NPiXX;&XG%aiV>G8b1&W(mGUc=p}ViY%%SdHs1Z z$TjiMbjJBtRzR-He3xfgyWq?I4&Vu?LO3 z0>7n z*F1I_19Q;|+TZDO&k97(0BObL+$=oYytN70PbETrr?Ks66_o*XTn$)tm^N0Q`DRN0 z2l&_*AJPPzNTJ#s4r3!--cTPnJx?hgg@9`O{)%D8LO@Ilk=$bQC`79I#ZOp_U9-}Xu&Ae3^Tl{tn1)N?kyr0a6tejD-mW36Y{#g(L*`7Ztf#EI?pdFfLFs_eX%rR+r zr+4PeGyB|5M>k278%(39L8a<~tcSrtC&m zxi^S@;1B$*6|f()(N$#j!$n@8zSVbnt!fj8hfL9h3NZaMuG!#KK*3Byq3wMe8Abex zECzpf)v~;bVV7vt>K3^}au|Jcp{2@VfPG4mbvEDLD6W}=?g5q!5z&WPctF-+q)W?d zXhf$AU!cP9#%u))e%@Ma7HA*ZPjtDIJ^bqJsTs&>yPlJJzN>6yzhV<0Rom~S`?baH zs+~nGtC>wH>ngJmy>&-A2v%#FTo;dTdK2^mgtSSF_WCGa-pV(fPj4zAtI#_Ez zsIl6k%C%b4Yv@UpI#5kES&ecrqo0;-;#4J-U{PW+pl3GaKat7B{bJIlJOS^$H5$`%|t79{t@#tw2uglBc; zJKjwWo4w!N_Amz+XlJSyTP=ODQn0On9ypz7UE*s2SLOP zXwuye@cI$gH^Q-r+1st^{!rKpZO6`TO%_+`2FQfNZxyB}ALjHgfY@;k*6zRBKIhE% zJgDgQ#a|zZkiGdfq3JD&V2*&L|+QWD)SXi0taP}nk-E=KpQ8fR%(%fL1L|RSZxW}J>01%~oG(g?j#_8+9&$|G;#KF8AJmA|# zWNP;L8jIIA|2>3`5{aKRJcyZ=eB`3sr009^d1{r`$~|3AUzGT4rSWjgya zH#ClOw$5!uU$pKL8=&ouAQ@fVpAG#|*5EsRP_=qQ0fI$tQYjGx^O*cK?AvPpV&3|U z{s(EM^q==!cYm;x0B{%;b?qw87x5pkE6Aw^uyk8>-dTXy+RND52YCe_xIR-8AAeUa zbMJT~ztUeEKpL0KkFRm%c3EHH=*3#JJe#%u!VKVf73)7{fQF*=9gTA9%-<{|qEjZf zvke=?_%n@nuPV&y*o9T{=LeJ*C*RKeH>nyb)+$23e63X^Zy8AH={qfJTNu9>+bGs0 zZg^s^Dej`d9AC@DMq*;mtqdgKHe(CMI;{t|)!1RF6$omiT6phd%0mh>QSXR%h?<0e z7SdP;C1wh?(9tuVR7xbXw=h$-q|}D~l!At&{sf=z*$$1otlvw<(FXAblVP_8*tVD! z*Mi;iV^fb2ho69pOA#{yoz$l12*R(5*P8^kKHhGpVaJk6>|WABo?BMN6^pU=c6Tr^ zQ`incZw;J)_M_B5hgZp!<=g;1GuB&bIvPMPz zOFcr?zAZoST-$&?El-c#g!+>sh?@qsW?@EWYvyYb;{$+Kvn4)B53aa)cW}d#4b74W zsfrGc0&35Sk{=qD9hU>c`&Qw%EiQ5AR}Y~*ACp4U)AJ<@mLTAm)}4dKpt&6Hj>Wmn zXv_wD4bB`Fbt}|t_vy~-&4nGlhdZp?f44F7doCb@u0P%%aP6pef2lRjdknT#xw1jc zD_ZyUUkG0BaDxWZ$pL<^NTCjI|I>Z_H;pyl007^57|MCk|9i`fwz!OETLy3=z1!-= zKM=Jr(xH<{;K*+JCh42~S^A(cjCtD7x-TAH9!(4%j_?HB{Mr`WP(BYWH*4!b|E(%R z*P|oOl9PYL^z;8Am?!)nWRk=toIVF`v`@MG@XEL4JF0o?_F)}%Vjq0`BHa_?aq%q= znAcU4?rAbr9hgi`tMlt>STX1jq!n?zHZQpk?TCzwChktp14Q0xjJF&*B0+hASXHMi zDtG#~N625RG`N)fPa=0EXh?@+?^TJ)7~4ZcsxYexMngWquIi!sh{)lW^L<1KOEVKi zt|r6%ed6w+VtJn!+EKYE{hO?n9gM3M*sks5k5p|==XfRN-a@Ezy8 z_kK8coIB3F<9^urz!(fN1}k&TIoJRHJili~cN!+Z_=mz6PJq#LI>NbtajU^g5}M&) zs4st{Gu3^*WZvC;vvA`}0gRgLv)LOKbuFb5xY%K@gDIIpm)>M39B)(Poj@{8%RZe4 zV}cUj8L;3xgmJ+f>yY|QiMV2-P-VJTQN+yg=k&}#dK%^SPNIL$_OFe#|f0DsEaJty}>nB7x6W;Y5J0!i80Rw?K)TS;Z#NJ)_L~fuP15eg%~CGicNis)eTPeI`95!|1e5cXl2dF%7na? zWTYyaw-y~{kIrSs+EPF5rC%dUZhW{?EVGaRn5oVI34DIW26pBg^DKf4_(`ARTYTBO zl1af%;R%S{=FI8)k8TI|9xVqCjxVFG2u1_)5Af3X2SBsuG^z+xvy^u=W`FShWu*PL zB*0~;-mL?A5tI6;h)Q2a{rKZVuNpbMkq-j)@fr4mjN!L{$>&0|fr(gKUul_zpA$}w z5n7G{NvYPzfmh$RE|U2c;!k(#gGT_}=_^j*wVj087T?#@x8ut8t@M6Y-#NMbj8>=l z5KV}xj4h6?W4_y0YCLF&ZdxD$8N%}DkAn|b=3;obbOdblX(zVC&zAnSj^*7Hn~;Mz z6ThAiMx(Cr$@&`sWPKRGeC_;74!;FuI`Y3fCy0|>7(y?xYlF_X5%x!u;^s|wm|@r1 zWi41yiaLgd9R)SNdlmqa33O$kR zY)oDb@%jUq{b>$rCDiikpSagRg^sV~O>m3O87!Rns^sVD*4smZ&_N!*z6=L>rQ`;}GvcwCQy;eRkn3PPJs52D;_tlcc@ z!^iBRZ44bBBpe=j$sn{$QdwHW6RIo2dztaQ5u^DceFzs}N+1s>HbFyZjVxE2y?=j} z^yNZP;VpIxI37P)rx00Ho^(!s^auC^1h_t|2;wBodO?l=oTAJS;_v=r6^{DqQ|t8> zaUz2hQkK!BL+u*c+^_j;F#U(5AI!B0bvxUNuc{h|KZ$~rd93do_Lw%(Z<(A69^TR< z=->?P9V&Zx;&wx%4f0#cG=1~6qCW;)PLQoV3g4x@wML)$1N?C&zR-d^azbF8nFO}< z$(r}3Ud5xq@^CZxxa!wI$6?rP3oO`@zcw?_6tmN zN9edxJ8nf_Z(XafvL*wM7X9tfpwk%{{%>VK?IfnJVC?0r%b9v|L4mCS4;z8vWbi~? z41ZYmQ-vy%aD@MnrIjQ*(|W(fluQcL^eIp9E7&de$fi4({d(5ynTVk)m^ z##{n$<}BbRP@xsp|KF1x|4W6~zv!2Lc@=6c%C-rnVX3M>txnKFY-fXli$(##-k%u4f$ntec)+o^d(rIIdP*sUSCqMS@!+9q( zB+szZ-1Wv5f(!;=q@q!(cYJyD6%8@Y5TDX{F82Hsx@|{O`>p*u)`#x1IP$_`Gf1VRH`C8Mj^y=)fafc?8rC9pSy8N7qxCjw zfa^E*S%2+a$%Ji_4?LYMX{LBu4jOqNRghQ^;rvIV$YlmkpZ~ddFRlMKjr%)K&|H zT|d6(puc)W_|EPEINX^gEIjZ)7{A6&niA=CdqJG8%+kgTIQ+Z0UFWMrsD4b~VBY#_ zUt3LEUc;O6?0-s=6rn+=pnP9L3s5Lhj7G-?V~vU&>UUl$-$eiOy<^NBsE>nu`3!dg*M288T-r~#m_b$BvYAvi>iAL5(d^<_kh@lPfYgEzQUf6y zhZg9*990K1P2%uY1ff?tTr_EAPO9Y#X8`UcAuzVj=10i&2M_-paVoP)U1arhrE z6E5j&USHR!dP8pB3j5KtSK3<<>I7ChhLcWErZ#fNzHAWQjh_%Z=Lf$BZ1c*-8dsg@ z+XfwKwJIZX?jWwx0$Vm7o5diT9oy)ffNCnY_kwI|AMSZaK#f@?l!JmJ_Z}#Y_!;0b z>XoP<5Ff>>|5eLSK)ZUIk;i!Ni&7La6NC-fJb}PI7Ql9lR#MdT?fMY^0)deui-~@< zK%}E9Dj=9)*<{)J7<;{rQVHwLg!9HhqvcIT>qXl4)P;tQ`(=hJTR*6NT`>3r^w6i( zeu^F?_5BUq=}G~hzpB)WS)8z`*e6v#nM+pn4n5utY3{GEB2A8Gpc#$LbZP$c7K)y=-kE!-)`=?PK_U zA77OZB^hN`CON67#yWSHl`V<)q+;JfgVC#y$e7_VTJI zpO4GMPXLz|Ssa9Ps0fO`Q*gh)111s@Wv&*9!4Q%IG?;A)RZ0?dH7qRV@^ZzDlkfJ_!IrdejXG?9j_`JuCV6b@ zJs`j>%3SWn_d{*VhQWuqvzu}&mQCoE z(JeUi%CVTE%t*fDC5UYEyVC?&omv{2xLFNN606O|@l&m2i89v-+68Wtg zfUcg)tgL(-cG&{q;}oBuQ;RzZt!LpZyey>s24>_nznOc3GquS6`UX4&$9YAVnQm}- zvie8+k{SnyN*6-SGEoV$U$l|2Ma%|CS={8ecVreuDOxk^1+mbKf_Oz$Znl^Eo+)Z? zl|tW>$+nyr`d(9TDXt4m9#RrIFXR-KQ9>3@_T$OO_4vuWZDjJr|2u^TnRH=JNbYf! z$YF7+rA4UOq(;$FU;PlitcQ90VK8Nkv$j*!-q(j!J zwUKnTjXlJ}o9&SK(lDcPDkDq^iEv%V_q zvUueVdw(?fTW8PmV)nw$ZPyf#v_4^+{R#3}tvy>2!ha=unbY?%IhahuAiwx@aEp65 zSQzmWy*9(XZgz9z=h|#iS{CZK@Y^6v;)=3>RObdA`Qg*0T4D7T{uIKN`J_x8zFNz~ zcWjkJM+86KD3}pG^yIeUEjHzgFLki`EsvR#JFJASPQeaL+@&!_NO7rR+Huc`!no(g zJ{zj9EyAix4C9q(g+yc&8?VKF-^aS3(1_&@9$5<@$w9`2d@7g=#fmNuf{=So4)M+a zX0k4&EUNJ)-+22_ZDZ0H`3}yCOoDH9l+-`|_!5gWi*n%RxsZDm)c*Kh_}aJQfNA=N z8#12XDuPLTwY?1(nz$Y_7mNBd8*k&1^#H8AfgHON`D2qK((O(HgwoDh2xm{Q<^s7bn~5$%i98`zudi5EJ2u_UuAi*(xJUVhg? zD}i9z=aId?d#Ub`zVKX_ljE+Qz0G0!MV&&w)V#57InBJI-fpSB(D@uvV5Gn>|Gv0> zsblt4R?K*%q}8#3!F{RV;j@b-%}cLV3Rl9mFPhBPtMKwt?n~U)PFJJ73V!4WSHdr( z6cV$k3OaO-?X>eH0_!s%GHq-iKO-#vXaw^mq%=e8Rg8x8CKsjSUZcjs7ZTqEEL>^x zLT~J7e^CU`^|98X*g6HpOM5lRm{_vSK1^1J2{xzrU>7j6zRN5S_Hgg5&(BMZ+%)CDhwp`qZ=*ap8&Lk3#*VgK+MdhAplXTb!e2VNiY3w{a}EFWt7R z1veCdQwfl)R$R0)Ne%B9l5_nchDU$^qH>MG{DaAmBMK$>~BXW}%v z^hO^vQgJcKfeYnXUPwKEj~G*N)p`#W$>(v!L|%P9(}JV2=s4wNk&|Os^(v{>t&(4b z5&DUuxZOhBq-a?kRT6tF2#Yb1i8!&<)Vn(=d(Sxh?=!F(RtF{~=OyoTC^|VtKHl+K zX)0zjhLuM}32ea$&8^z^7oWA{iq@pY3Me&v|E&aTIlgFkjb>lrW@UjcS=&%McI{TSn&=_l0H*9mXs( ziX|oGjRXv;L>OhGX6k;=cwqotA5sSyf#9?UT(%O>HXF_{f9b^J7<-%PY%jS{4Fxy2{8m}Clo!OmnLq4>MPVvyfJ%&wJwM7Vfwnj&v(%RXUh64bnG5=3 z+kUK8Ve0N`(C=Q_$&nYf`5EtbF+?vobrQSJ*Njhy@N$<%R7>cA&1Zumww2ZC{jED6 zb?e@GKgcKp;LIR(_*Q!)!;w5xb*Yrw;}-Dc+VJWu*kxeEpE2{Fc#hL=J6GB;H5WBU zM4NpFzoi5i-L^kzD~)G(ZB`rOnHX8+Bx>jTwdZUqh1^HJy(^RJ_hYQ$vN=L}+sFl& z6?#$RJ9*Z!Ww+QNgq^gynHvBi1?tl9rmZp)vQ1o2v7YLO@kgyBG$>)1 zJ@*Pf;vp}begEiIS;YWWq0y(|;+roy1pG8y2#L4r2QQGLuC~zeYpqLbm+%9lMu|?8 zCXeg`5(Aw{u7-NH&t=Dj9eobH3ro)AgW;lVY!9l%2?%zqf=BHM1A5|A{b7Dl9|(=G z@>#AZClfXD%nPcFnz0YxEi^Mj)7r$6mrSk3Cyn9p;4PcgzwW`=#O^5E(Iro+S4&y8 zim)jHU!iIEa8XQjT8kn{Z|b@NU!se30nkWZsC$A^b)B>8u2`UnZM6KJ$h;=ka&MT0vJ_PJV6DHh+K7%!n@J%cSTk zAK3@t%xWSdYDMPdEM=_51wHvBRyjfYfT-EsNv`2K>UfAALGd;}vhR2kX&xv#|A+ho zf=c?5`0q=ddA9V#Oj%M^W{MGHzu45NYcF(2?#-_1Yubzem1#kT^J^~dd7`TgX9Otd z$??ijL9aaj`Fntd51~s(@vugdOPyLqY&lv#uD4Z*@%<9u%Fg3^DvE}u{&F&QdrIP1 zKR|0qIBA4u+s&tmj{`W%!E?+1f1Cu-+j|8JJ;Jfgk;^3s)1J6@s`kyx-LC0I1#1`n6X+6>T15z=|~ed z%p1`ZuU+3Gk%sPZ@s^ zcg<;9yClFSxns*VU})%Y#={IXrfV}(`QCh+=YCk40Pgw4#7@OF;vd_deL;^3gy>A3 z6@?pdIk~IKh`L_7_!1t_g+xc_Xv(PmlrVMO=7Cl$%-M$~R z?mV}O<~k?efd9^gUgS#T!~V%nMzLs3l``q>*PgJb`~Fn`}!k|OPfP>o)as=r?n zd^MC$T_Cg+6NUC#2Stqm-RKtd)o2A2h%_Uz!Sk{t&p83dpT=_X`ef_8Geb(HnxGhO zS*#12b}F-S$Mf|EJSoI>Vcyy`ZsEwqOcC80KU@mngQTwpAi|1nd<<1#T@Euch)@y2 zN=j5@^OEOOWv~r}CVk6`NtE?-d^tZtvUW1ygg1)o;~zT?AI<*g>Z_Y(j>YgcN0;B3 z*;ZQn5qL#k7{#b)oPgY`(Hegb$9CX&Qm}an(^1>2hlkH!2u9Jp5+aJ879plJB!EP` zzJjQsZWqJiuqc`5zQ)Tv)wfs*lc%n{p`C10R7h^XP%#9Dy4w&k>a-M!d$ne1o0Z-Q z?6K3@YHrVhT)&6T+h5UNk7}L|7w|>|>5ch|%xsfSx4up5%HdNvw-2sgq)FM8rpneB zwz#%^qq){?ce=_0bzptP0`8_Y@!_N+!^pfKhC3_FpgOHnTH4bqIs}8{6JOFH*4M{g zB%|mC!OCoiL+g%%v4exTOc1g+=%yaipBvF2_dQvU@Bzb{Nhg7toQNwqYINKhh`wWtqz2K9 zkGHbgOpf9(z0XE^XgThh%j~K;%dCAKks;m&q4>Dqh^4Ab1?3Qg!`!tfk2z^3A6d|R znfpR^z?6(RH3EFRnYKy_jHk&QkG(9ST{bbJcK`{hosE^JpEC&S1#8K4Dxyqh7rKm> zmPTA1O($N{JgT*j8g88^9*+F@S1=g0QFgHIClfTko0*LOb%lt~_Ug{o5oZtI*cJ!W zdVE)(tjFlPT~=;2Qwt}z2D`h{sKNWvWK>jQm}tl#Qf8sC7Hy)wu2BJ~I&a8t{peJ1 zspvJrs)a-BD|+qzQP*$Ri1dJ2naC#_p^vsBiEMSFQsQ_d+9BSpR*1qj#6P!OBW#0q zWUxW+hK#piCciDnHZM^(zY0|pgx@R~h!D(=a5EZ++635(JFv;Fpd)Ps-~7IyZ{5?F zZwDv@15OXYu#VE>qInO(beT2SM}s!5>F`adsw@~iHCNME8qR#sq*l_h!CElarBCZv zw=2!XM)L93(hQFSwiALW4yMUO&CrNQF6It^mJy?XbC3E)?qcJ@|41P7mi z0Xxib*gklBY6W=6g&A>o4C&O&H(8P|jr>qPYX~$gDk^M>yV6g9ePU8gOyAYqEh@QD zxNpLGiZIY)er+|-)Asn2DWTPl4VhwW)_bt*(yNLL>-{h)74Koh^+9WNBb7Vo&hbXF zDL{GUIjs)p%4n!>r5+BqW4|f+jgbj22-#%x$nIe+m$F*Y%9PZ6mVGeI#Q~Ph>r5Ko ziQ?ct&l2c)R}dW`i-_ufwgT4-Fo@KkhpTc2yC1K>3li;{#xF8X%l0#Eam!cUoaXVh zvB?CZxNAXinL8_Uq^B?aoa9SHj`Fh=j^_DCv~kx`)@2>t zop)8XW?S*Q#-6SC(is^@A6vM6d&JU<1JdeZ-It#7HZp;m1?+BO zl^b-ZNSMsm+WW@`YjwbU%i}}`ibIjBE~~2+1nNFlL539h`s}x$w;qm|>S6w)J?W&v zbR=Z!hUxEJ7v_$}nkWAieuVu7sA>R*G*P-4DQYTM^Z0?2o z+QTQ8V@>fo7Ph}>wzKY^6dB+6OaB$MkjFjC>R?O5EKCH1rFafxqZ?NdB{z=E!?v20 z2ur$k*bngp{JTAI!O8TcS-+5Q;_#Z%{&6K?0TKOi({MXPS^cnMmsded>U#SsXxF%N z@3^(OP)<7mp%f#hrO}NV3=^o~pgtNhlDpoj}Q+>S+Lg<#xYb z`Hrsppi{P($PJgiU1;VpCQ(9q2o{>BkUdck4F*mDz5>4t{b<9Q`Vch`Gt@PIJHV&` z!P(3pUyF%#>kBPV4_!L79v;d5^lO@(#PokPV~*xZTvd^)xek~>K1}0%%C`BrngOW= zp=P-uD-#Af@}j74YBNXI8#?QHXECv*KbiSe+7976pZ#^G<-OQi`-nT-!{xV_!WYVa zx;(!CoWY03szMTn-4ekI=^Q(uGb=wP-j`*XUfZM;aArglNi?tHnxX|~YL~Z?h}2@S z{VDlFPs2Qx6!D#RlY)I@&d*GzV7Vbu&bC{jPE(>!elWlFcdyI{_XG_WRc5_O1ZxW{ zGtI}6zTM9Y*>KCas0R$xnMv>|<8X3H4qz7izqgD|(?+BBo($#l3Bm)VW(#lZRNfSl zwq*5@w4;#LN8V|rHp3=s@5Nj=<2n2D_=Mu_ZEIrz5^b|Co_M85 zI_ZYpCB^kH(v}iACeCCIAVw(-vPD&1jvaRrL8m5a(Q>zlYWUO3ynk|PF%JEi9`kP& zsLYVQB`Hl{^<9Q}AF3*NT4~L0SHr>hirD#2Qc3zT6L}Nwhh(^blvDvamcg3E+l$#9 z6Y|r8ZMpSpx6Z47V%Wf*tAGVHklqR~f)HaZi$c-A2X!^x&X$<+uwoI+gRV*_Uus~pveU#*?3k(W&JysNUW66hvbTr*|o^F7duX)*!*e{uNj zq(SD(xCkUgk6%?4!QWG4z9W0~wIvSG2eyCKJ8BKr%`1;f@j!otpG?6s;h%pluA8)N zRK>xe&|iWUJi}u9;%;qyW+FBYb`Q!VM0x%R``Y|sqAZBA_tRJFxK(%zd~0FWt1;?c z*Poli0j{>PN0}m`3Es)m(8PT8LL!jDUDK{qSJ<|VFGcrKwxFu{)-3XpVZE_LyWcb? zlr7&C7MA$!hPs#xY=-F_Z*VORzkBNQ(p;#P`eLDp_$Rkuym(RTaDVby$j2yv&TlFG zN3u4sVh_qp{{vRKU-^fE)^u-Y;1o+v=&a;}S&$L!_}S!*sqpVjtA}+$f9@?1+MtQl ze&fU&49U-Uen83L z8oK9^f2fmSJpXbVM!Z5~MV*dU{awKAoE-bXU#+1`z{ux3j84{r<(R*d%b5$+#ymE& z>y(HJt29H&UULz^HPRrxZ%0J9OO^zYQsXbJin#U_4kSFxVMZ@LI*2uR&6K1z{ zXfKu^|JXc%PDm|tbKunxM1L`4pWt3nziN>i5t$pg{@&8AK}3kYHVtSqjb|x`kS)QM z-UGL27yGPPa?UzFY7!i`6Wg%$gUq(Lf;*?5 z0La})<-Mp>_HzHNK``AQ`caz0h>BqO;K}LV9mfiF*M&-J)YbJ@r+cFJTL~;8+ zg2$SrfO}-Q+=dXMf$P^hlg;*2;|sqRrJ=rIc40i`hH(_&oI4vw|LV1}U{CPFmJL2( zUK|i$9LSFnK#`SXYpAp=8GNHDp_2Xh>0m0DP8nSXdzyvVJ{?Cwp7`Qo8+3qtm#R>x zFmulS=Y!02(A_(}TP<^J1abaQ=FZ=}+e06R%SQ~jxu66=aEYN!b&!y>$i}ZHH|oRL z(+`(pa#-h}8*lrPJhC7C-0*`k+GorL)@!U|$H{L0&=Nt(Q(A}WfS+V+bA*t}hZU>; z;r6-X0-?vhqV(uXb;_@*V|BiIYCE<80Ei6vGj9vu2~rlp&PL!5F4hTv8W-CG6X!ZQ7DsB6#bEOR#4Rhfm!r$UPT+?FUzok>(&XQK0YPtKGZA;H zk9r{mtAGS6gRprQtATmAj238QbE7oR=?!b6ngLQwf~9YOpCKRd?zU%Wj}BqYuB#8&B5ZY=6OF=7`Go6 zb?i4Fnt;TUNEBfp5ZPTP6P%(MjesnfF?P^)F6c;MCRy@SYD~=@RF?fF(lp;Pe4ouMa>}`laLUMuri`h2G9G;IVSZJxX@wL1hjYuNtk|jKW`((a5_g z#)g~}pD1W{Ur;}MEubhrVJ>&W;r3o}W>%Hr^lOBdRrtPX9zUDL^=tM6%!AiKH%cZp zOSf+{Jcc-LWAH1jrZk0~nu3OB+m3FCd?D-M`Hd z0rS~&vNRd1D2|#33A#^bpkLQ(&-D1D2^!B`c-=Mai~bZ?z^0BsFP;^Q1oV=*m^uw!T#KKhN3yrr=+I8T5+j@-&$*@ImvhY&% z3LXn&m6LGB(w8Sl6a1uG6s*lijE(l>*8}Q}O z^LL|xGG###agD#WO_evY(k_*e^2CuZAXS&!!otoPzD)a7q0iT%=nr<)saHfF}r*|4Vm%`FKPd&RzT zK=FkeUteYiWY-oV3Sh$-1)L|{U#6lU3Y2C`$C~%f3%|cJ(#^cd;&i%tn#aKbC+FAx zJOW_4?P)v^&}|HTtbcNrq{2JBb7wxMpYxH1+RrHlsGPJGt|#og9jE_$Q`cfsKd&Tz z`Yz Date: Sat, 15 Apr 2023 10:15:41 +0200 Subject: [PATCH 15/19] Refactoring project structure and adding RAY-X --- Intern/CMakeLists.txt | 5 +- .../{TerminalApp => RAY-CLI}/CMakeLists.txt | 4 +- .../CommandParser.cpp | 0 .../{TerminalApp => RAY-CLI}/CommandParser.h | 0 .../{TerminalApp => RAY-CLI}/TerminalApp.cpp | 0 Intern/{TerminalApp => RAY-CLI}/TerminalApp.h | 0 .../TerminalAppConfig.h.in | 0 Intern/{TerminalApp => RAY-CLI}/main.cpp | 0 Intern/{RayCore => RAY-Core}/CMakeLists.txt | 18 +- Intern/RAY-Core/README.md | 3 + Intern/{RayCore => RAY-Core}/doc/doxyfile | 0 .../doc/doxygen-awesome-sidebar-only.css | 0 .../doc/doxygen-awesome.css | 0 Intern/{RayCore => RAY-Core}/raycorePCH.h | 0 .../src/Beamline/Beamline.cpp | 0 .../src/Beamline/Beamline.h | 0 .../src/Beamline/EnergyDistribution.cpp | 0 .../src/Beamline/EnergyDistribution.h | 0 .../src/Beamline/LightSource.cpp | 0 .../src/Beamline/LightSource.h | 0 .../src/Beamline/Objects/Cone.cpp | 0 .../src/Beamline/Objects/Cone.h | 0 .../src/Beamline/Objects/Cylinder.cpp | 0 .../src/Beamline/Objects/Cylinder.h | 0 .../src/Beamline/Objects/Ellipsoid.cpp | 0 .../src/Beamline/Objects/Ellipsoid.h | 0 .../src/Beamline/Objects/ImagePlane.cpp | 0 .../src/Beamline/Objects/ImagePlane.h | 0 .../src/Beamline/Objects/MatrixSource.cpp | 0 .../src/Beamline/Objects/MatrixSource.h | 0 .../src/Beamline/Objects/Objects.h | 0 .../src/Beamline/Objects/PlaneGrating.cpp | 0 .../src/Beamline/Objects/PlaneGrating.h | 0 .../src/Beamline/Objects/PlaneMirror.cpp | 0 .../src/Beamline/Objects/PlaneMirror.h | 0 .../src/Beamline/Objects/PointSource.cpp | 0 .../src/Beamline/Objects/PointSource.h | 0 .../Beamline/Objects/ReflectionZonePlate.cpp | 0 .../Beamline/Objects/ReflectionZonePlate.h | 0 .../src/Beamline/Objects/Slit.cpp | 0 .../src/Beamline/Objects/Slit.h | 0 .../src/Beamline/Objects/SphereGrating.cpp | 0 .../src/Beamline/Objects/SphereGrating.h | 0 .../src/Beamline/Objects/SphereMirror.cpp | 0 .../src/Beamline/Objects/SphereMirror.h | 0 .../src/Beamline/Objects/ToroidMirror.cpp | 0 .../src/Beamline/Objects/ToroidMirror.h | 0 .../src/Beamline/OpticalElement.cpp | 0 .../src/Beamline/OpticalElement.h | 0 .../src/CanonicalizePath.cpp | 0 .../src/CanonicalizePath.h | 0 Intern/{RayCore => RAY-Core}/src/Core.h | 0 .../src/Data/DatFile.cpp | 0 .../{RayCore => RAY-Core}/src/Data/DatFile.h | 0 .../src/Data/Importer.cpp | 0 .../{RayCore => RAY-Core}/src/Data/Importer.h | 0 Intern/{RayCore => RAY-Core}/src/Data/xml.cpp | 0 Intern/{RayCore => RAY-Core}/src/Data/xml.h | 0 .../{RayCore => RAY-Core}/src/Debug/Debug.cpp | 0 .../{RayCore => RAY-Core}/src/Debug/Debug.h | 0 .../src/Debug/Instrumentor.cpp | 0 .../src/Debug/Instrumentor.h | 0 .../src/Material/Material.cpp | 0 .../src/Material/Material.h | 0 .../src/Material/NffTable.cpp | 0 .../src/Material/NffTable.h | 0 .../src/Material/PalikTable.cpp | 0 .../src/Material/PalikTable.h | 0 .../src/Material/materials.xmacro | 194 +++++++++--------- Intern/{RayCore => RAY-Core}/src/Random.cpp | 0 Intern/{RayCore => RAY-Core}/src/Random.h | 0 Intern/{RayCore => RAY-Core}/src/RayCore.h | 0 .../src/Shared/Behaviour.h | 0 .../src/Shared/Constants.h | 0 .../{RayCore => RAY-Core}/src/Shared/Cutout.h | 0 .../src/Shared/Element.h | 0 .../src/Shared/Surface.h | 0 .../src/Tracer/CpuTracer.cpp | 0 .../src/Tracer/CpuTracer.h | 0 Intern/{RayCore => RAY-Core}/src/Tracer/Ray.h | 0 .../src/Tracer/Tracer.cpp | 0 .../{RayCore => RAY-Core}/src/Tracer/Tracer.h | 0 .../src/Tracer/VulkanTracer.cpp | 0 .../src/Tracer/VulkanTracer.h | 0 .../src/Tracer/shader/approx.comp | 0 .../src/Tracer/shader/behave.comp | 0 .../src/Tracer/shader/collision.comp | 0 .../src/Tracer/shader/complex.comp | 0 .../src/Tracer/shader/dynamic_elements.comp | 0 .../src/Tracer/shader/main-glsl.comp | 0 .../src/Tracer/shader/main.comp | 0 .../src/Tracer/shader/random.comp | 0 .../src/Tracer/shader/utils.comp | 0 .../src/VulkanEngine/Buffer/CreateBuffer.cpp | 0 .../src/VulkanEngine/Buffer/DeclareBuffer.cpp | 0 .../src/VulkanEngine/Buffer/IO/GpuMemcpy.cpp | 0 .../VulkanEngine/Buffer/IO/ReadBufferRaw.cpp | 0 .../VulkanEngine/Buffer/IO/WriteBufferRaw.cpp | 0 .../src/VulkanEngine/Cleanup.cpp | 0 .../src/VulkanEngine/Destruct.cpp | 0 .../src/VulkanEngine/Init/Cache.cpp | 0 .../src/VulkanEngine/Init/CommandBuffer.cpp | 0 .../src/VulkanEngine/Init/CommandPool.cpp | 0 .../VulkanEngine/Init/DescriptorSetLayout.cpp | 0 .../src/VulkanEngine/Init/Fence.cpp | 0 .../src/VulkanEngine/Init/Init.cpp | 0 .../src/VulkanEngine/Init/Instance.cpp | 0 .../src/VulkanEngine/Init/PickDevice.cpp | 0 .../src/VulkanEngine/Init/ShaderModule.cpp | 0 .../src/VulkanEngine/Init/StagingBuffer.cpp | 0 .../src/VulkanEngine/Run/ComputePipeline.cpp | 0 .../src/VulkanEngine/Run/DescriptorSet.cpp | 0 .../src/VulkanEngine/Run/RecordBuffer.cpp | 0 .../src/VulkanEngine/Run/Run.cpp | 0 .../src/VulkanEngine/Run/RunCommandBuffer.cpp | 0 .../src/VulkanEngine/VulkanEngine.h | 0 .../src/Writer/CSVWriter.cpp | 0 .../src/Writer/CSVWriter.h | 0 .../src/Writer/H5Writer.cpp | 0 .../src/Writer/H5Writer.h | 0 .../{RayCore => RAY-Core}/src/Writer/Writer.h | 0 Intern/{RayCore => RAY-Core}/src/utils.cpp | 0 Intern/{RayCore => RAY-Core}/src/utils.h | 0 .../AutomaticBenchmarks/GPUvsCPU.py | 0 .../AutomaticBenchmarks/benchmark_diagram.py | 0 .../AutomaticBenchmarks/benchrayx.sh | 0 .../tests/Benchmarks/ManualTests/README.md | 0 .../ManualTests/RML_Test_Bundle.zip | Bin .../ManualTests/TestResult_Report.ods | Bin .../tests/CMakeLists.txt | 4 +- .../tests/input/BoringImagePlane.csv | 0 .../tests/input/BoringImagePlane.rml | 0 .../tests/input/Cone.csv | 0 .../tests/input/Cone.rml | 0 .../tests/input/CylinderDefault.csv | 0 .../tests/input/CylinderDefault.rml | 0 .../tests/input/Ellipsoid.rml | 0 .../tests/input/Ellipsoid_DGIA.csv | 0 .../tests/input/Ellipsoid_DGIA.rml | 0 .../tests/input/Ellipsoid_MB.csv | 0 .../tests/input/Ellipsoid_MB.rml | 0 .../tests/input/Ellipsoid_PM.csv | 0 .../tests/input/Ellipsoid_PM.rml | 0 .../tests/input/MatrixSource.csv | 0 .../tests/input/MatrixSource.rml | 0 .../tests/input/MatrixSourceMoved.rml | 0 .../tests/input/MatrixSourceSpreaded.rml | 0 .../MatrixSource_distr_seeded.correct.csv | 0 .../tests/input/MatrixSource_distr_seeded.rml | 0 .../input/MatrixSource_seeded.correct.csv | 0 .../tests/input/MatrixSource_seeded.rml | 0 .../tests/input/PlaneGratingDevAzMisVLS.csv | 0 .../tests/input/PlaneGratingDevAzMisVLS.rml | 0 .../tests/input/PlaneGratingDeviationAz.csv | 0 .../tests/input/PlaneGratingDeviationAz.rml | 0 .../input/PlaneGratingDeviationAzMis.csv | 0 .../input/PlaneGratingDeviationAzMis.rml | 0 .../input/PlaneGratingDeviationDefault.csv | 0 .../input/PlaneGratingDeviationDefault.rml | 0 .../tests/input/PlaneGratingIncAzMis.csv | 0 .../tests/input/PlaneGratingIncAzMis.rml | 0 .../tests/input/PlaneMirror.csv | 0 .../tests/input/PlaneMirror.rml | 0 .../tests/input/PlaneMirrorDef.csv | 0 .../tests/input/PlaneMirrorDef.rml | 0 .../tests/input/PlaneMirrorMis.csv | 0 .../tests/input/PlaneMirrorMis.rml | 0 .../input/PlaneMirror_refl_seeded.correct.csv | 0 .../tests/input/PlaneMirror_refl_seeded.rml | 0 .../tests/input/PointSourceHardEdge.rml | 0 .../tests/input/PointSourceSoftEdge.rml | 0 .../input/PointSource_seeded.correct.csv | 0 .../tests/input/PointSource_seeded.rml | 0 .../input/ReflectionZonePlateAzim200.csv | 0 .../input/ReflectionZonePlateAzim200.rml | 0 .../input/ReflectionZonePlateDefault.csv | 0 .../input/ReflectionZonePlateDefault.rml | 0 .../input/ReflectionZonePlateDefault200.csv | 0 .../input/ReflectionZonePlateDefault200.rml | 0 .../ReflectionZonePlateDefault200Toroid.csv | 0 .../ReflectionZonePlateDefault200Toroid.rml | 0 .../tests/input/ReflectionZonePlateMis.csv | 0 .../tests/input/ReflectionZonePlateMis.rml | 0 .../tests/input/SphereMirrorDefault.csv | 0 .../tests/input/SphereMirrorDefault.rml | 0 .../tests/input/allBeamlineObjects.rml | 0 .../tests/input/ellipsoid_ip_200mirrormis.csv | 0 .../tests/input/ellipsoid_ip_200mirrormis.rml | 0 .../tests/input/globalCoordinates_20rays.csv | 0 .../tests/input/globalCoordinates_20rays.rml | 0 .../tests/input/groupRZPTest.rml | 0 .../tests/input/groupTransform.rml | 0 .../tests/input/groupTransform2.rml | 0 .../input/groupTransformMisalignment.rml | 0 .../tests/input/loadDatFile.DAT | 0 .../tests/input/loadDatFile.rml | 0 .../tests/input/loadGroups.rml | 0 .../tests/input/pm_ell_ip_200mirrormis.csv | 0 .../tests/input/pm_ell_ip_200mirrormis.rml | 0 .../tests/input/slit.rml | 0 .../tests/input/toroid.csv | 0 .../tests/input/toroid.rml | 0 .../tests/input/toroid_swapped.csv | 0 .../tests/input/toroid_swapped.rml | 0 Intern/{RayCore => RAY-Core}/tests/main.cpp | 2 +- .../tests/output/BoringImagePlane.rayui.csv | 0 .../tests/output/BoringImagePlane.rayx.csv | 0 .../tests/output/Cone.rayui.csv | 0 .../tests/output/Cone.rayx.csv | 0 .../tests/output/CylinderDefault.rayui.csv | 0 .../tests/output/CylinderDefault.rayx.csv | 0 .../tests/output/Ellipsoid.rayx.csv | 0 .../tests/output/Ellipsoid_DGIA.rayui.csv | 0 .../tests/output/Ellipsoid_DGIA.rayx.csv | 0 .../tests/output/Ellipsoid_MB.rayui.csv | 0 .../tests/output/Ellipsoid_MB.rayx.csv | 0 .../tests/output/Ellipsoid_PM.rayui.csv | 0 .../tests/output/Ellipsoid_PM.rayx.csv | 0 .../output/MatrixSource_distr_seeded.rayx.csv | 0 .../tests/output/MatrixSource_seeded.rayx.csv | 0 .../output/PlaneGratingDevAzMisVLS.rayui.csv | 0 .../output/PlaneGratingDevAzMisVLS.rayx.csv | 0 .../output/PlaneGratingDeviationAz.rayui.csv | 0 .../output/PlaneGratingDeviationAz.rayx.csv | 0 .../PlaneGratingDeviationAzMis.rayui.csv | 0 .../PlaneGratingDeviationAzMis.rayx.csv | 0 .../PlaneGratingDeviationDefault.rayui.csv | 0 .../PlaneGratingDeviationDefault.rayx.csv | 0 .../output/PlaneGratingIncAzMis.rayui.csv | 0 .../output/PlaneGratingIncAzMis.rayx.csv | 0 .../tests/output/PlaneMirror.rayui.csv | 0 .../tests/output/PlaneMirror.rayx.csv | 0 .../tests/output/PlaneMirrorDef.rayui.csv | 0 .../tests/output/PlaneMirrorDef.rayx.csv | 0 .../tests/output/PlaneMirrorMis.rayui.csv | 0 .../tests/output/PlaneMirrorMis.rayx.csv | 0 .../output/PlaneMirror_refl_seeded.rayx.csv | 0 .../tests/output/PointSource_seeded.rayx.csv | 0 .../ReflectionZonePlateAzim200.rayui.csv | 0 .../ReflectionZonePlateAzim200.rayx.csv | 0 .../ReflectionZonePlateDefault.rayui.csv | 0 .../ReflectionZonePlateDefault.rayx.csv | 0 .../ReflectionZonePlateDefault200.rayui.csv | 0 .../ReflectionZonePlateDefault200.rayx.csv | 0 ...lectionZonePlateDefault200Toroid.rayui.csv | 0 ...flectionZonePlateDefault200Toroid.rayx.csv | 0 .../output/ReflectionZonePlateMis.rayui.csv | 0 .../output/ReflectionZonePlateMis.rayx.csv | 0 .../output/SphereMirrorDefault.rayui.csv | 0 .../tests/output/SphereMirrorDefault.rayx.csv | 0 .../ellipsoid_ip_200mirrormis.rayui.csv | 0 .../output/ellipsoid_ip_200mirrormis.rayx.csv | 0 .../output/globalCoordinates_20rays.rayui.csv | 0 .../output/globalCoordinates_20rays.rayx.csv | 0 .../output/pm_ell_ip_200mirrormis.rayui.csv | 0 .../output/pm_ell_ip_200mirrormis.rayx.csv | 0 .../tests/output/toroid.rayui.csv | 0 .../tests/output/toroid.rayx.csv | 0 .../tests/output/toroid_swapped.rayui.csv | 0 .../tests/output/toroid_swapped.rayx.csv | 0 .../tests/setupTests.cpp | 14 +- .../{RayCore => RAY-Core}/tests/setupTests.h | 0 .../tests/testIntegration.cpp | 0 .../{RayCore => RAY-Core}/tests/testRml.cpp | 0 .../tests/testSeeded.cpp | 0 .../tests/testShader.cpp | 0 .../tests/testSources.cpp | 0 Intern/{RayCore => RAY-Core}/tests/testsPCH.h | 0 Intern/RAY-X/CMakeLists.txt | 16 ++ Intern/RAY-X/src/main.cpp | 8 + Intern/RAY-X/tests/CMakeLists.txt | 0 Intern/RAY-X/tests/main.cpp | 8 + Intern/RayCore/README.md | 5 - 273 files changed, 156 insertions(+), 125 deletions(-) rename Intern/{TerminalApp => RAY-CLI}/CMakeLists.txt (95%) rename Intern/{TerminalApp => RAY-CLI}/CommandParser.cpp (100%) rename Intern/{TerminalApp => RAY-CLI}/CommandParser.h (100%) rename Intern/{TerminalApp => RAY-CLI}/TerminalApp.cpp (100%) rename Intern/{TerminalApp => RAY-CLI}/TerminalApp.h (100%) rename Intern/{TerminalApp => RAY-CLI}/TerminalAppConfig.h.in (100%) rename Intern/{TerminalApp => RAY-CLI}/main.cpp (100%) rename Intern/{RayCore => RAY-Core}/CMakeLists.txt (85%) create mode 100644 Intern/RAY-Core/README.md rename Intern/{RayCore => RAY-Core}/doc/doxyfile (100%) rename Intern/{RayCore => RAY-Core}/doc/doxygen-awesome-sidebar-only.css (100%) rename Intern/{RayCore => RAY-Core}/doc/doxygen-awesome.css (100%) rename Intern/{RayCore => RAY-Core}/raycorePCH.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Beamline.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Beamline.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/EnergyDistribution.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/EnergyDistribution.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/LightSource.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/LightSource.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/Cone.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/Cone.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/Cylinder.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/Cylinder.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/Ellipsoid.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/Ellipsoid.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/ImagePlane.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/ImagePlane.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/MatrixSource.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/MatrixSource.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/Objects.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/PlaneGrating.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/PlaneGrating.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/PlaneMirror.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/PlaneMirror.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/PointSource.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/PointSource.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/ReflectionZonePlate.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/ReflectionZonePlate.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/Slit.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/Slit.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/SphereGrating.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/SphereGrating.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/SphereMirror.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/SphereMirror.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/ToroidMirror.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/Objects/ToroidMirror.h (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/OpticalElement.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Beamline/OpticalElement.h (100%) rename Intern/{RayCore => RAY-Core}/src/CanonicalizePath.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/CanonicalizePath.h (100%) rename Intern/{RayCore => RAY-Core}/src/Core.h (100%) rename Intern/{RayCore => RAY-Core}/src/Data/DatFile.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Data/DatFile.h (100%) rename Intern/{RayCore => RAY-Core}/src/Data/Importer.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Data/Importer.h (100%) rename Intern/{RayCore => RAY-Core}/src/Data/xml.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Data/xml.h (100%) rename Intern/{RayCore => RAY-Core}/src/Debug/Debug.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Debug/Debug.h (100%) rename Intern/{RayCore => RAY-Core}/src/Debug/Instrumentor.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Debug/Instrumentor.h (100%) rename Intern/{RayCore => RAY-Core}/src/Material/Material.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Material/Material.h (100%) rename Intern/{RayCore => RAY-Core}/src/Material/NffTable.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Material/NffTable.h (100%) rename Intern/{RayCore => RAY-Core}/src/Material/PalikTable.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Material/PalikTable.h (100%) rename Intern/{RayCore => RAY-Core}/src/Material/materials.xmacro (96%) rename Intern/{RayCore => RAY-Core}/src/Random.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Random.h (100%) rename Intern/{RayCore => RAY-Core}/src/RayCore.h (100%) rename Intern/{RayCore => RAY-Core}/src/Shared/Behaviour.h (100%) rename Intern/{RayCore => RAY-Core}/src/Shared/Constants.h (100%) rename Intern/{RayCore => RAY-Core}/src/Shared/Cutout.h (100%) rename Intern/{RayCore => RAY-Core}/src/Shared/Element.h (100%) rename Intern/{RayCore => RAY-Core}/src/Shared/Surface.h (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/CpuTracer.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/CpuTracer.h (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/Ray.h (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/Tracer.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/Tracer.h (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/VulkanTracer.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/VulkanTracer.h (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/shader/approx.comp (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/shader/behave.comp (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/shader/collision.comp (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/shader/complex.comp (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/shader/dynamic_elements.comp (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/shader/main-glsl.comp (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/shader/main.comp (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/shader/random.comp (100%) rename Intern/{RayCore => RAY-Core}/src/Tracer/shader/utils.comp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Buffer/CreateBuffer.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Buffer/DeclareBuffer.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Buffer/IO/GpuMemcpy.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Buffer/IO/ReadBufferRaw.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Buffer/IO/WriteBufferRaw.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Cleanup.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Destruct.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Init/Cache.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Init/CommandBuffer.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Init/CommandPool.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Init/DescriptorSetLayout.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Init/Fence.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Init/Init.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Init/Instance.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Init/PickDevice.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Init/ShaderModule.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Init/StagingBuffer.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Run/ComputePipeline.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Run/DescriptorSet.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Run/RecordBuffer.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Run/Run.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/Run/RunCommandBuffer.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/VulkanEngine/VulkanEngine.h (100%) rename Intern/{RayCore => RAY-Core}/src/Writer/CSVWriter.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Writer/CSVWriter.h (100%) rename Intern/{RayCore => RAY-Core}/src/Writer/H5Writer.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/Writer/H5Writer.h (100%) rename Intern/{RayCore => RAY-Core}/src/Writer/Writer.h (100%) rename Intern/{RayCore => RAY-Core}/src/utils.cpp (100%) rename Intern/{RayCore => RAY-Core}/src/utils.h (100%) rename Intern/{RayCore => RAY-Core}/tests/Benchmarks/AutomaticBenchmarks/GPUvsCPU.py (100%) rename Intern/{RayCore => RAY-Core}/tests/Benchmarks/AutomaticBenchmarks/benchmark_diagram.py (100%) rename Intern/{RayCore => RAY-Core}/tests/Benchmarks/AutomaticBenchmarks/benchrayx.sh (100%) rename Intern/{RayCore => RAY-Core}/tests/Benchmarks/ManualTests/README.md (100%) rename Intern/{RayCore => RAY-Core}/tests/Benchmarks/ManualTests/RML_Test_Bundle.zip (100%) rename Intern/{RayCore => RAY-Core}/tests/Benchmarks/ManualTests/TestResult_Report.ods (100%) rename Intern/{RayCore => RAY-Core}/tests/CMakeLists.txt (91%) rename Intern/{RayCore => RAY-Core}/tests/input/BoringImagePlane.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/BoringImagePlane.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/Cone.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/Cone.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/CylinderDefault.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/CylinderDefault.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/Ellipsoid.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/Ellipsoid_DGIA.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/Ellipsoid_DGIA.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/Ellipsoid_MB.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/Ellipsoid_MB.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/Ellipsoid_PM.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/Ellipsoid_PM.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/MatrixSource.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/MatrixSource.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/MatrixSourceMoved.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/MatrixSourceSpreaded.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/MatrixSource_distr_seeded.correct.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/MatrixSource_distr_seeded.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/MatrixSource_seeded.correct.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/MatrixSource_seeded.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneGratingDevAzMisVLS.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneGratingDevAzMisVLS.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneGratingDeviationAz.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneGratingDeviationAz.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneGratingDeviationAzMis.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneGratingDeviationAzMis.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneGratingDeviationDefault.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneGratingDeviationDefault.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneGratingIncAzMis.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneGratingIncAzMis.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneMirror.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneMirror.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneMirrorDef.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneMirrorDef.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneMirrorMis.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneMirrorMis.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneMirror_refl_seeded.correct.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PlaneMirror_refl_seeded.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PointSourceHardEdge.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PointSourceSoftEdge.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PointSource_seeded.correct.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/PointSource_seeded.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/ReflectionZonePlateAzim200.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/ReflectionZonePlateAzim200.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/ReflectionZonePlateDefault.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/ReflectionZonePlateDefault.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/ReflectionZonePlateDefault200.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/ReflectionZonePlateDefault200.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/ReflectionZonePlateDefault200Toroid.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/ReflectionZonePlateDefault200Toroid.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/ReflectionZonePlateMis.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/ReflectionZonePlateMis.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/SphereMirrorDefault.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/SphereMirrorDefault.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/allBeamlineObjects.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/ellipsoid_ip_200mirrormis.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/ellipsoid_ip_200mirrormis.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/globalCoordinates_20rays.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/globalCoordinates_20rays.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/groupRZPTest.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/groupTransform.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/groupTransform2.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/groupTransformMisalignment.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/loadDatFile.DAT (100%) rename Intern/{RayCore => RAY-Core}/tests/input/loadDatFile.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/loadGroups.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/pm_ell_ip_200mirrormis.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/pm_ell_ip_200mirrormis.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/slit.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/toroid.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/toroid.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/input/toroid_swapped.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/input/toroid_swapped.rml (100%) rename Intern/{RayCore => RAY-Core}/tests/main.cpp (95%) rename Intern/{RayCore => RAY-Core}/tests/output/BoringImagePlane.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/BoringImagePlane.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/Cone.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/Cone.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/CylinderDefault.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/CylinderDefault.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/Ellipsoid.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/Ellipsoid_DGIA.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/Ellipsoid_DGIA.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/Ellipsoid_MB.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/Ellipsoid_MB.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/Ellipsoid_PM.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/Ellipsoid_PM.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/MatrixSource_distr_seeded.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/MatrixSource_seeded.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneGratingDevAzMisVLS.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneGratingDevAzMisVLS.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneGratingDeviationAz.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneGratingDeviationAz.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneGratingDeviationAzMis.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneGratingDeviationAzMis.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneGratingDeviationDefault.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneGratingDeviationDefault.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneGratingIncAzMis.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneGratingIncAzMis.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneMirror.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneMirror.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneMirrorDef.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneMirrorDef.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneMirrorMis.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneMirrorMis.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PlaneMirror_refl_seeded.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/PointSource_seeded.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/ReflectionZonePlateAzim200.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/ReflectionZonePlateAzim200.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/ReflectionZonePlateDefault.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/ReflectionZonePlateDefault.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/ReflectionZonePlateDefault200.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/ReflectionZonePlateDefault200.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/ReflectionZonePlateMis.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/ReflectionZonePlateMis.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/SphereMirrorDefault.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/SphereMirrorDefault.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/ellipsoid_ip_200mirrormis.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/ellipsoid_ip_200mirrormis.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/globalCoordinates_20rays.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/globalCoordinates_20rays.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/pm_ell_ip_200mirrormis.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/pm_ell_ip_200mirrormis.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/toroid.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/toroid.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/toroid_swapped.rayui.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/output/toroid_swapped.rayx.csv (100%) rename Intern/{RayCore => RAY-Core}/tests/setupTests.cpp (91%) rename Intern/{RayCore => RAY-Core}/tests/setupTests.h (100%) rename Intern/{RayCore => RAY-Core}/tests/testIntegration.cpp (100%) rename Intern/{RayCore => RAY-Core}/tests/testRml.cpp (100%) rename Intern/{RayCore => RAY-Core}/tests/testSeeded.cpp (100%) rename Intern/{RayCore => RAY-Core}/tests/testShader.cpp (100%) rename Intern/{RayCore => RAY-Core}/tests/testSources.cpp (100%) rename Intern/{RayCore => RAY-Core}/tests/testsPCH.h (100%) create mode 100644 Intern/RAY-X/CMakeLists.txt create mode 100644 Intern/RAY-X/src/main.cpp create mode 100644 Intern/RAY-X/tests/CMakeLists.txt create mode 100644 Intern/RAY-X/tests/main.cpp delete mode 100644 Intern/RayCore/README.md diff --git a/Intern/CMakeLists.txt b/Intern/CMakeLists.txt index 4954945c7..4e0cdd0f9 100644 --- a/Intern/CMakeLists.txt +++ b/Intern/CMakeLists.txt @@ -17,6 +17,7 @@ set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/lib/debug) # ---- Subdirectories ---- -add_subdirectory(RayCore) -add_subdirectory(TerminalApp) +add_subdirectory(RAY-Core) +add_subdirectory(RAY-CLI) +add_subdirectory(RAY-X) # ------------------------ diff --git a/Intern/TerminalApp/CMakeLists.txt b/Intern/RAY-CLI/CMakeLists.txt similarity index 95% rename from Intern/TerminalApp/CMakeLists.txt rename to Intern/RAY-CLI/CMakeLists.txt index 5e9a1e31c..0f27cb152 100644 --- a/Intern/TerminalApp/CMakeLists.txt +++ b/Intern/RAY-CLI/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15 FATAL_ERROR) # ---- Project ---- -project(TerminalApp VERSION 0.5.0.0) +project(RAY-CLI VERSION 0.5.0.0) add_executable(${PROJECT_NAME} main.cpp TerminalApp.cpp TerminalApp.h CommandParser.cpp) # ------------------ @@ -31,7 +31,7 @@ configure_file(TerminalAppConfig.h.in TerminalAppConfig.h) # ---- Dependencies ---- target_link_libraries(${PROJECT_NAME} PRIVATE CLI11::CLI11 - RayCore + RAY-Core ${PYTHON_LIBRARIES} ) target_include_directories(${PROJECT_NAME} PRIVATE diff --git a/Intern/TerminalApp/CommandParser.cpp b/Intern/RAY-CLI/CommandParser.cpp similarity index 100% rename from Intern/TerminalApp/CommandParser.cpp rename to Intern/RAY-CLI/CommandParser.cpp diff --git a/Intern/TerminalApp/CommandParser.h b/Intern/RAY-CLI/CommandParser.h similarity index 100% rename from Intern/TerminalApp/CommandParser.h rename to Intern/RAY-CLI/CommandParser.h diff --git a/Intern/TerminalApp/TerminalApp.cpp b/Intern/RAY-CLI/TerminalApp.cpp similarity index 100% rename from Intern/TerminalApp/TerminalApp.cpp rename to Intern/RAY-CLI/TerminalApp.cpp diff --git a/Intern/TerminalApp/TerminalApp.h b/Intern/RAY-CLI/TerminalApp.h similarity index 100% rename from Intern/TerminalApp/TerminalApp.h rename to Intern/RAY-CLI/TerminalApp.h diff --git a/Intern/TerminalApp/TerminalAppConfig.h.in b/Intern/RAY-CLI/TerminalAppConfig.h.in similarity index 100% rename from Intern/TerminalApp/TerminalAppConfig.h.in rename to Intern/RAY-CLI/TerminalAppConfig.h.in diff --git a/Intern/TerminalApp/main.cpp b/Intern/RAY-CLI/main.cpp similarity index 100% rename from Intern/TerminalApp/main.cpp rename to Intern/RAY-CLI/main.cpp diff --git a/Intern/RayCore/CMakeLists.txt b/Intern/RAY-Core/CMakeLists.txt similarity index 85% rename from Intern/RayCore/CMakeLists.txt rename to Intern/RAY-Core/CMakeLists.txt index 1c92e4ea9..2924e5391 100644 --- a/Intern/RayCore/CMakeLists.txt +++ b/Intern/RAY-Core/CMakeLists.txt @@ -6,8 +6,8 @@ add_subdirectory(tests) # ---- Project ---- -project(RayCore) -file(GLOB_RECURSE SOURCE ${RayCore_SOURCE_DIR}/src/*.cpp) +project(RAY-Core) +file(GLOB_RECURSE SOURCE ${PROJECT_SOURCE_DIR}/src/*.cpp) add_library(${PROJECT_NAME} SHARED ${SOURCE}) # ----------------- @@ -83,13 +83,13 @@ target_compile_definitions(${PROJECT_NAME} # ---- Dependencies ---- -target_include_directories(${PROJECT_NAME} PRIVATE ${RayCore_SOURCE_DIR}/src) -target_include_directories(${PROJECT_NAME} SYSTEM INTERFACE ${RayCore_SOURCE_DIR}/src) +target_include_directories(${PROJECT_NAME} PRIVATE ${PROJECT_SOURCE_DIR}/src) +target_include_directories(${PROJECT_NAME} SYSTEM INTERFACE ${PROJECT_SOURCE_DIR}/src) target_include_directories(${PROJECT_NAME} SYSTEM PUBLIC - ${RayCore_SOURCE_DIR}/../../Extern/glm/glm/ - ${RayCore_SOURCE_DIR}/../../Extern/rapidxml-1.13/ - ${RayCore_SOURCE_DIR}/../../Extern/HighFive/include/ - ${RayCore_SOURCE_DIR}/../../Extern/VMA/include/ + ${PROJECT_SOURCE_DIR}/../../Extern/glm/glm/ + ${PROJECT_SOURCE_DIR}/../../Extern/rapidxml-1.13/ + ${PROJECT_SOURCE_DIR}/../../Extern/HighFive/include/ + ${PROJECT_SOURCE_DIR}/../../Extern/VMA/include/ ) # ---------------------- @@ -108,7 +108,7 @@ if(NOT VULKAN STREQUAL "NO") ${COMPILED_SHADER} ${COMPILED_SHADER_FAKE} COMMAND "glslc" - ARGS ${RayCore_SOURCE_DIR}/src/Tracer/shader/main-glsl.comp -o ${COMPILED_SHADER} -fshader-stage=compute + ARGS ${PROJECT_SOURCE_DIR}/src/Tracer/shader/main-glsl.comp -o ${COMPILED_SHADER} -fshader-stage=compute ) add_custom_target(COMPILE_SHADER ALL DEPENDS ${COMPILED_SHADER}) diff --git a/Intern/RAY-Core/README.md b/Intern/RAY-Core/README.md new file mode 100644 index 000000000..c2db22fe5 --- /dev/null +++ b/Intern/RAY-Core/README.md @@ -0,0 +1,3 @@ +# RAY-Core documentation + +RAY-Core is the core library of the RAY-X project. \ No newline at end of file diff --git a/Intern/RayCore/doc/doxyfile b/Intern/RAY-Core/doc/doxyfile similarity index 100% rename from Intern/RayCore/doc/doxyfile rename to Intern/RAY-Core/doc/doxyfile diff --git a/Intern/RayCore/doc/doxygen-awesome-sidebar-only.css b/Intern/RAY-Core/doc/doxygen-awesome-sidebar-only.css similarity index 100% rename from Intern/RayCore/doc/doxygen-awesome-sidebar-only.css rename to Intern/RAY-Core/doc/doxygen-awesome-sidebar-only.css diff --git a/Intern/RayCore/doc/doxygen-awesome.css b/Intern/RAY-Core/doc/doxygen-awesome.css similarity index 100% rename from Intern/RayCore/doc/doxygen-awesome.css rename to Intern/RAY-Core/doc/doxygen-awesome.css diff --git a/Intern/RayCore/raycorePCH.h b/Intern/RAY-Core/raycorePCH.h similarity index 100% rename from Intern/RayCore/raycorePCH.h rename to Intern/RAY-Core/raycorePCH.h diff --git a/Intern/RayCore/src/Beamline/Beamline.cpp b/Intern/RAY-Core/src/Beamline/Beamline.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Beamline.cpp rename to Intern/RAY-Core/src/Beamline/Beamline.cpp diff --git a/Intern/RayCore/src/Beamline/Beamline.h b/Intern/RAY-Core/src/Beamline/Beamline.h similarity index 100% rename from Intern/RayCore/src/Beamline/Beamline.h rename to Intern/RAY-Core/src/Beamline/Beamline.h diff --git a/Intern/RayCore/src/Beamline/EnergyDistribution.cpp b/Intern/RAY-Core/src/Beamline/EnergyDistribution.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/EnergyDistribution.cpp rename to Intern/RAY-Core/src/Beamline/EnergyDistribution.cpp diff --git a/Intern/RayCore/src/Beamline/EnergyDistribution.h b/Intern/RAY-Core/src/Beamline/EnergyDistribution.h similarity index 100% rename from Intern/RayCore/src/Beamline/EnergyDistribution.h rename to Intern/RAY-Core/src/Beamline/EnergyDistribution.h diff --git a/Intern/RayCore/src/Beamline/LightSource.cpp b/Intern/RAY-Core/src/Beamline/LightSource.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/LightSource.cpp rename to Intern/RAY-Core/src/Beamline/LightSource.cpp diff --git a/Intern/RayCore/src/Beamline/LightSource.h b/Intern/RAY-Core/src/Beamline/LightSource.h similarity index 100% rename from Intern/RayCore/src/Beamline/LightSource.h rename to Intern/RAY-Core/src/Beamline/LightSource.h diff --git a/Intern/RayCore/src/Beamline/Objects/Cone.cpp b/Intern/RAY-Core/src/Beamline/Objects/Cone.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/Cone.cpp rename to Intern/RAY-Core/src/Beamline/Objects/Cone.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/Cone.h b/Intern/RAY-Core/src/Beamline/Objects/Cone.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/Cone.h rename to Intern/RAY-Core/src/Beamline/Objects/Cone.h diff --git a/Intern/RayCore/src/Beamline/Objects/Cylinder.cpp b/Intern/RAY-Core/src/Beamline/Objects/Cylinder.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/Cylinder.cpp rename to Intern/RAY-Core/src/Beamline/Objects/Cylinder.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/Cylinder.h b/Intern/RAY-Core/src/Beamline/Objects/Cylinder.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/Cylinder.h rename to Intern/RAY-Core/src/Beamline/Objects/Cylinder.h diff --git a/Intern/RayCore/src/Beamline/Objects/Ellipsoid.cpp b/Intern/RAY-Core/src/Beamline/Objects/Ellipsoid.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/Ellipsoid.cpp rename to Intern/RAY-Core/src/Beamline/Objects/Ellipsoid.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/Ellipsoid.h b/Intern/RAY-Core/src/Beamline/Objects/Ellipsoid.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/Ellipsoid.h rename to Intern/RAY-Core/src/Beamline/Objects/Ellipsoid.h diff --git a/Intern/RayCore/src/Beamline/Objects/ImagePlane.cpp b/Intern/RAY-Core/src/Beamline/Objects/ImagePlane.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/ImagePlane.cpp rename to Intern/RAY-Core/src/Beamline/Objects/ImagePlane.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/ImagePlane.h b/Intern/RAY-Core/src/Beamline/Objects/ImagePlane.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/ImagePlane.h rename to Intern/RAY-Core/src/Beamline/Objects/ImagePlane.h diff --git a/Intern/RayCore/src/Beamline/Objects/MatrixSource.cpp b/Intern/RAY-Core/src/Beamline/Objects/MatrixSource.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/MatrixSource.cpp rename to Intern/RAY-Core/src/Beamline/Objects/MatrixSource.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/MatrixSource.h b/Intern/RAY-Core/src/Beamline/Objects/MatrixSource.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/MatrixSource.h rename to Intern/RAY-Core/src/Beamline/Objects/MatrixSource.h diff --git a/Intern/RayCore/src/Beamline/Objects/Objects.h b/Intern/RAY-Core/src/Beamline/Objects/Objects.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/Objects.h rename to Intern/RAY-Core/src/Beamline/Objects/Objects.h diff --git a/Intern/RayCore/src/Beamline/Objects/PlaneGrating.cpp b/Intern/RAY-Core/src/Beamline/Objects/PlaneGrating.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/PlaneGrating.cpp rename to Intern/RAY-Core/src/Beamline/Objects/PlaneGrating.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/PlaneGrating.h b/Intern/RAY-Core/src/Beamline/Objects/PlaneGrating.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/PlaneGrating.h rename to Intern/RAY-Core/src/Beamline/Objects/PlaneGrating.h diff --git a/Intern/RayCore/src/Beamline/Objects/PlaneMirror.cpp b/Intern/RAY-Core/src/Beamline/Objects/PlaneMirror.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/PlaneMirror.cpp rename to Intern/RAY-Core/src/Beamline/Objects/PlaneMirror.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/PlaneMirror.h b/Intern/RAY-Core/src/Beamline/Objects/PlaneMirror.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/PlaneMirror.h rename to Intern/RAY-Core/src/Beamline/Objects/PlaneMirror.h diff --git a/Intern/RayCore/src/Beamline/Objects/PointSource.cpp b/Intern/RAY-Core/src/Beamline/Objects/PointSource.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/PointSource.cpp rename to Intern/RAY-Core/src/Beamline/Objects/PointSource.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/PointSource.h b/Intern/RAY-Core/src/Beamline/Objects/PointSource.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/PointSource.h rename to Intern/RAY-Core/src/Beamline/Objects/PointSource.h diff --git a/Intern/RayCore/src/Beamline/Objects/ReflectionZonePlate.cpp b/Intern/RAY-Core/src/Beamline/Objects/ReflectionZonePlate.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/ReflectionZonePlate.cpp rename to Intern/RAY-Core/src/Beamline/Objects/ReflectionZonePlate.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/ReflectionZonePlate.h b/Intern/RAY-Core/src/Beamline/Objects/ReflectionZonePlate.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/ReflectionZonePlate.h rename to Intern/RAY-Core/src/Beamline/Objects/ReflectionZonePlate.h diff --git a/Intern/RayCore/src/Beamline/Objects/Slit.cpp b/Intern/RAY-Core/src/Beamline/Objects/Slit.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/Slit.cpp rename to Intern/RAY-Core/src/Beamline/Objects/Slit.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/Slit.h b/Intern/RAY-Core/src/Beamline/Objects/Slit.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/Slit.h rename to Intern/RAY-Core/src/Beamline/Objects/Slit.h diff --git a/Intern/RayCore/src/Beamline/Objects/SphereGrating.cpp b/Intern/RAY-Core/src/Beamline/Objects/SphereGrating.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/SphereGrating.cpp rename to Intern/RAY-Core/src/Beamline/Objects/SphereGrating.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/SphereGrating.h b/Intern/RAY-Core/src/Beamline/Objects/SphereGrating.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/SphereGrating.h rename to Intern/RAY-Core/src/Beamline/Objects/SphereGrating.h diff --git a/Intern/RayCore/src/Beamline/Objects/SphereMirror.cpp b/Intern/RAY-Core/src/Beamline/Objects/SphereMirror.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/SphereMirror.cpp rename to Intern/RAY-Core/src/Beamline/Objects/SphereMirror.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/SphereMirror.h b/Intern/RAY-Core/src/Beamline/Objects/SphereMirror.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/SphereMirror.h rename to Intern/RAY-Core/src/Beamline/Objects/SphereMirror.h diff --git a/Intern/RayCore/src/Beamline/Objects/ToroidMirror.cpp b/Intern/RAY-Core/src/Beamline/Objects/ToroidMirror.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/ToroidMirror.cpp rename to Intern/RAY-Core/src/Beamline/Objects/ToroidMirror.cpp diff --git a/Intern/RayCore/src/Beamline/Objects/ToroidMirror.h b/Intern/RAY-Core/src/Beamline/Objects/ToroidMirror.h similarity index 100% rename from Intern/RayCore/src/Beamline/Objects/ToroidMirror.h rename to Intern/RAY-Core/src/Beamline/Objects/ToroidMirror.h diff --git a/Intern/RayCore/src/Beamline/OpticalElement.cpp b/Intern/RAY-Core/src/Beamline/OpticalElement.cpp similarity index 100% rename from Intern/RayCore/src/Beamline/OpticalElement.cpp rename to Intern/RAY-Core/src/Beamline/OpticalElement.cpp diff --git a/Intern/RayCore/src/Beamline/OpticalElement.h b/Intern/RAY-Core/src/Beamline/OpticalElement.h similarity index 100% rename from Intern/RayCore/src/Beamline/OpticalElement.h rename to Intern/RAY-Core/src/Beamline/OpticalElement.h diff --git a/Intern/RayCore/src/CanonicalizePath.cpp b/Intern/RAY-Core/src/CanonicalizePath.cpp similarity index 100% rename from Intern/RayCore/src/CanonicalizePath.cpp rename to Intern/RAY-Core/src/CanonicalizePath.cpp diff --git a/Intern/RayCore/src/CanonicalizePath.h b/Intern/RAY-Core/src/CanonicalizePath.h similarity index 100% rename from Intern/RayCore/src/CanonicalizePath.h rename to Intern/RAY-Core/src/CanonicalizePath.h diff --git a/Intern/RayCore/src/Core.h b/Intern/RAY-Core/src/Core.h similarity index 100% rename from Intern/RayCore/src/Core.h rename to Intern/RAY-Core/src/Core.h diff --git a/Intern/RayCore/src/Data/DatFile.cpp b/Intern/RAY-Core/src/Data/DatFile.cpp similarity index 100% rename from Intern/RayCore/src/Data/DatFile.cpp rename to Intern/RAY-Core/src/Data/DatFile.cpp diff --git a/Intern/RayCore/src/Data/DatFile.h b/Intern/RAY-Core/src/Data/DatFile.h similarity index 100% rename from Intern/RayCore/src/Data/DatFile.h rename to Intern/RAY-Core/src/Data/DatFile.h diff --git a/Intern/RayCore/src/Data/Importer.cpp b/Intern/RAY-Core/src/Data/Importer.cpp similarity index 100% rename from Intern/RayCore/src/Data/Importer.cpp rename to Intern/RAY-Core/src/Data/Importer.cpp diff --git a/Intern/RayCore/src/Data/Importer.h b/Intern/RAY-Core/src/Data/Importer.h similarity index 100% rename from Intern/RayCore/src/Data/Importer.h rename to Intern/RAY-Core/src/Data/Importer.h diff --git a/Intern/RayCore/src/Data/xml.cpp b/Intern/RAY-Core/src/Data/xml.cpp similarity index 100% rename from Intern/RayCore/src/Data/xml.cpp rename to Intern/RAY-Core/src/Data/xml.cpp diff --git a/Intern/RayCore/src/Data/xml.h b/Intern/RAY-Core/src/Data/xml.h similarity index 100% rename from Intern/RayCore/src/Data/xml.h rename to Intern/RAY-Core/src/Data/xml.h diff --git a/Intern/RayCore/src/Debug/Debug.cpp b/Intern/RAY-Core/src/Debug/Debug.cpp similarity index 100% rename from Intern/RayCore/src/Debug/Debug.cpp rename to Intern/RAY-Core/src/Debug/Debug.cpp diff --git a/Intern/RayCore/src/Debug/Debug.h b/Intern/RAY-Core/src/Debug/Debug.h similarity index 100% rename from Intern/RayCore/src/Debug/Debug.h rename to Intern/RAY-Core/src/Debug/Debug.h diff --git a/Intern/RayCore/src/Debug/Instrumentor.cpp b/Intern/RAY-Core/src/Debug/Instrumentor.cpp similarity index 100% rename from Intern/RayCore/src/Debug/Instrumentor.cpp rename to Intern/RAY-Core/src/Debug/Instrumentor.cpp diff --git a/Intern/RayCore/src/Debug/Instrumentor.h b/Intern/RAY-Core/src/Debug/Instrumentor.h similarity index 100% rename from Intern/RayCore/src/Debug/Instrumentor.h rename to Intern/RAY-Core/src/Debug/Instrumentor.h diff --git a/Intern/RayCore/src/Material/Material.cpp b/Intern/RAY-Core/src/Material/Material.cpp similarity index 100% rename from Intern/RayCore/src/Material/Material.cpp rename to Intern/RAY-Core/src/Material/Material.cpp diff --git a/Intern/RayCore/src/Material/Material.h b/Intern/RAY-Core/src/Material/Material.h similarity index 100% rename from Intern/RayCore/src/Material/Material.h rename to Intern/RAY-Core/src/Material/Material.h diff --git a/Intern/RayCore/src/Material/NffTable.cpp b/Intern/RAY-Core/src/Material/NffTable.cpp similarity index 100% rename from Intern/RayCore/src/Material/NffTable.cpp rename to Intern/RAY-Core/src/Material/NffTable.cpp diff --git a/Intern/RayCore/src/Material/NffTable.h b/Intern/RAY-Core/src/Material/NffTable.h similarity index 100% rename from Intern/RayCore/src/Material/NffTable.h rename to Intern/RAY-Core/src/Material/NffTable.h diff --git a/Intern/RayCore/src/Material/PalikTable.cpp b/Intern/RAY-Core/src/Material/PalikTable.cpp similarity index 100% rename from Intern/RayCore/src/Material/PalikTable.cpp rename to Intern/RAY-Core/src/Material/PalikTable.cpp diff --git a/Intern/RayCore/src/Material/PalikTable.h b/Intern/RAY-Core/src/Material/PalikTable.h similarity index 100% rename from Intern/RayCore/src/Material/PalikTable.h rename to Intern/RAY-Core/src/Material/PalikTable.h diff --git a/Intern/RayCore/src/Material/materials.xmacro b/Intern/RAY-Core/src/Material/materials.xmacro similarity index 96% rename from Intern/RayCore/src/Material/materials.xmacro rename to Intern/RAY-Core/src/Material/materials.xmacro index 595f7bdd4..1ead33ceb 100644 --- a/Intern/RayCore/src/Material/materials.xmacro +++ b/Intern/RAY-Core/src/Material/materials.xmacro @@ -1,97 +1,97 @@ -// this file was generated from RHOATOM.DAT from Ray-UI -// X(Elementkürzel, Ordnungszahl, Atomgewicht, Dichte) -X(H, 1, 1.00794, 0.0708) -X(He, 2, 4.0026, 0.122) -X(Li, 3, 6.941, 0.533) -X(Be, 4, 9.01218, 1.845) -X(B, 5, 10.81, 2.34) -X(C, 6, 12.011, 2.26) -// X(Cm, 6, 12.011, 2.26) -X(N, 7, 14.0067, 0.81) -X(O, 8, 15.9994, 1.14) -X(F, 9, 18.998403, 1.108) -X(Ne, 10, 20.179, 1.207) -X(Na, 11, 22.98977, 0.969) -X(Mg, 12, 24.305, 1.735) -X(Al, 13, 26.98154, 2.6941) -X(Si, 14, 28.0855, 2.32) -X(P, 15, 30.97376, 1.82) -X(S, 16, 32.06, 2.07) -X(Cl, 17, 35.453, 1.56) -X(Ar, 18, 39.948, 1.40) -X(K, 19, 39.0983, 0.860) -X(Ca, 20, 40.08, 1.55) -X(Sc, 21, 44.9559, 2.980) -X(Ti, 22, 47.88, 4.53) -X(V, 23, 50.9415, 6.10) -X(Cr, 24, 51.996, 7.18) -X(Mn, 25, 54.9380, 7.43) -X(Fe, 26, 55.847, 7.860) -// X(Fp, 26, 55.847, 7.860) -// X(Fm, 26, 55.847, 7.860) -X(Co, 27, 58.9332, 8.9) -X(Ni, 28, 58.69, 8.876) -X(Cu, 29, 63.546, 8.94) -X(Zn, 30, 65.38, 7.112) -X(Ga, 31, 69.72, 5.877) -X(Ge, 32, 72.59, 5.307) -X(As, 33, 74.9216, 5.72) -X(Se, 34, 78.96, 4.78) -X(Br, 35, 79.904, 3.11) -X(Kr, 36, 83.80, 2.6) -X(Rb, 37, 85.4678, 1.529) -X(Sr, 38, 87.62, 2.54) -X(Y, 39, 88.9059, 4.456) -X(Zr, 40, 91.22, 6.494) -X(Nb, 41, 92.9064, 8.55) -X(Mo, 42, 95.94, 10.20) -X(Tc, 43, 98.0, 11.48) -X(Ru, 44, 101.07, 12.39) -X(Rh, 45, 102.9055, 12.39) -X(Pd, 46, 106.42, 12.00) -X(Ag, 47, 107.8682, 10.48) -X(Cd, 48, 112.41, 8.63) -X(In, 49, 114.82, 7.30) -X(Sn, 50, 118.69, 7.30) -X(Sb, 51, 121.75, 6.679) -X(Te, 52, 127.60, 6.23) -X(I, 53, 126.9045, 4.92) -X(Xe, 54, 131.29, 3.52) -X(Cs, 55, 132.9054, 1.870) -X(Ba, 56, 137.33, 3.5) -X(La, 57, 138.9055, 6.127) -X(Ce, 58, 140.12, 6.637) -X(Pr, 59, 140.9077, 6.761) -X(Nd, 60, 144.24, 6.994) -X(Pm, 61, 145.0, 7.20) -X(Sm, 62, 150.36, 7.51) -X(Eu, 63, 151.96, 5.228) -X(Gd, 64, 157.25, 7.8772) -X(Tb, 65, 158.9254, 8.214) -X(Dy, 66, 162.50, 8.525) -X(Ho, 67, 164.9304, 8.769) -X(Er, 68, 167.26, 9.039) -X(Tm, 69, 168.9342, 9.294) -X(Yb, 70, 173.04, 6.953) -X(Lu, 71, 174.967, 9.811) -X(Hf, 72, 178.49, 13.29) -X(Ta, 73, 180.9479, 16.624) -X(W, 74, 183.85, 19.3) -X(Re, 75, 186.207, 20.98) -X(Os, 76, 190.2, 22.53) -X(Ir, 77, 192.22, 22.39) -X(Pt, 78, 195.08, 21.41) -X(Au, 79, 196.9665, 19.3) -X(Hg, 80, 200.59, 13.522) -X(Tl, 81, 204.383, 11.83) -X(Pb, 82, 207.2, 11.33) -X(Bi, 83, 208.9804, 9.730) -X(Po, 84, 209.0, 9.30) -X(At, 85, 210.0, 9999.) -X(Rn, 86, 222.0, 4.4) -X(Fr, 87, 223.0, 9999.) -X(Ra, 88, 226.0254, 5.0) -X(Ac, 89, 227.0278, 10.05) -X(Th, 90, 232.0381, 11.70) -X(Pa, 91, 231.0359, 15.34) -X(U, 92, 238.0289, 18.92) +// this file was generated from RHOATOM.DAT from Ray-UI +// X(Elementkürzel, Ordnungszahl, Atomgewicht, Dichte) +X(H, 1, 1.00794, 0.0708) +X(He, 2, 4.0026, 0.122) +X(Li, 3, 6.941, 0.533) +X(Be, 4, 9.01218, 1.845) +X(B, 5, 10.81, 2.34) +X(C, 6, 12.011, 2.26) +// X(Cm, 6, 12.011, 2.26) +X(N, 7, 14.0067, 0.81) +X(O, 8, 15.9994, 1.14) +X(F, 9, 18.998403, 1.108) +X(Ne, 10, 20.179, 1.207) +X(Na, 11, 22.98977, 0.969) +X(Mg, 12, 24.305, 1.735) +X(Al, 13, 26.98154, 2.6941) +X(Si, 14, 28.0855, 2.32) +X(P, 15, 30.97376, 1.82) +X(S, 16, 32.06, 2.07) +X(Cl, 17, 35.453, 1.56) +X(Ar, 18, 39.948, 1.40) +X(K, 19, 39.0983, 0.860) +X(Ca, 20, 40.08, 1.55) +X(Sc, 21, 44.9559, 2.980) +X(Ti, 22, 47.88, 4.53) +X(V, 23, 50.9415, 6.10) +X(Cr, 24, 51.996, 7.18) +X(Mn, 25, 54.9380, 7.43) +X(Fe, 26, 55.847, 7.860) +// X(Fp, 26, 55.847, 7.860) +// X(Fm, 26, 55.847, 7.860) +X(Co, 27, 58.9332, 8.9) +X(Ni, 28, 58.69, 8.876) +X(Cu, 29, 63.546, 8.94) +X(Zn, 30, 65.38, 7.112) +X(Ga, 31, 69.72, 5.877) +X(Ge, 32, 72.59, 5.307) +X(As, 33, 74.9216, 5.72) +X(Se, 34, 78.96, 4.78) +X(Br, 35, 79.904, 3.11) +X(Kr, 36, 83.80, 2.6) +X(Rb, 37, 85.4678, 1.529) +X(Sr, 38, 87.62, 2.54) +X(Y, 39, 88.9059, 4.456) +X(Zr, 40, 91.22, 6.494) +X(Nb, 41, 92.9064, 8.55) +X(Mo, 42, 95.94, 10.20) +X(Tc, 43, 98.0, 11.48) +X(Ru, 44, 101.07, 12.39) +X(Rh, 45, 102.9055, 12.39) +X(Pd, 46, 106.42, 12.00) +X(Ag, 47, 107.8682, 10.48) +X(Cd, 48, 112.41, 8.63) +X(In, 49, 114.82, 7.30) +X(Sn, 50, 118.69, 7.30) +X(Sb, 51, 121.75, 6.679) +X(Te, 52, 127.60, 6.23) +X(I, 53, 126.9045, 4.92) +X(Xe, 54, 131.29, 3.52) +X(Cs, 55, 132.9054, 1.870) +X(Ba, 56, 137.33, 3.5) +X(La, 57, 138.9055, 6.127) +X(Ce, 58, 140.12, 6.637) +X(Pr, 59, 140.9077, 6.761) +X(Nd, 60, 144.24, 6.994) +X(Pm, 61, 145.0, 7.20) +X(Sm, 62, 150.36, 7.51) +X(Eu, 63, 151.96, 5.228) +X(Gd, 64, 157.25, 7.8772) +X(Tb, 65, 158.9254, 8.214) +X(Dy, 66, 162.50, 8.525) +X(Ho, 67, 164.9304, 8.769) +X(Er, 68, 167.26, 9.039) +X(Tm, 69, 168.9342, 9.294) +X(Yb, 70, 173.04, 6.953) +X(Lu, 71, 174.967, 9.811) +X(Hf, 72, 178.49, 13.29) +X(Ta, 73, 180.9479, 16.624) +X(W, 74, 183.85, 19.3) +X(Re, 75, 186.207, 20.98) +X(Os, 76, 190.2, 22.53) +X(Ir, 77, 192.22, 22.39) +X(Pt, 78, 195.08, 21.41) +X(Au, 79, 196.9665, 19.3) +X(Hg, 80, 200.59, 13.522) +X(Tl, 81, 204.383, 11.83) +X(Pb, 82, 207.2, 11.33) +X(Bi, 83, 208.9804, 9.730) +X(Po, 84, 209.0, 9.30) +X(At, 85, 210.0, 9999.) +X(Rn, 86, 222.0, 4.4) +X(Fr, 87, 223.0, 9999.) +X(Ra, 88, 226.0254, 5.0) +X(Ac, 89, 227.0278, 10.05) +X(Th, 90, 232.0381, 11.70) +X(Pa, 91, 231.0359, 15.34) +X(U, 92, 238.0289, 18.92) diff --git a/Intern/RayCore/src/Random.cpp b/Intern/RAY-Core/src/Random.cpp similarity index 100% rename from Intern/RayCore/src/Random.cpp rename to Intern/RAY-Core/src/Random.cpp diff --git a/Intern/RayCore/src/Random.h b/Intern/RAY-Core/src/Random.h similarity index 100% rename from Intern/RayCore/src/Random.h rename to Intern/RAY-Core/src/Random.h diff --git a/Intern/RayCore/src/RayCore.h b/Intern/RAY-Core/src/RayCore.h similarity index 100% rename from Intern/RayCore/src/RayCore.h rename to Intern/RAY-Core/src/RayCore.h diff --git a/Intern/RayCore/src/Shared/Behaviour.h b/Intern/RAY-Core/src/Shared/Behaviour.h similarity index 100% rename from Intern/RayCore/src/Shared/Behaviour.h rename to Intern/RAY-Core/src/Shared/Behaviour.h diff --git a/Intern/RayCore/src/Shared/Constants.h b/Intern/RAY-Core/src/Shared/Constants.h similarity index 100% rename from Intern/RayCore/src/Shared/Constants.h rename to Intern/RAY-Core/src/Shared/Constants.h diff --git a/Intern/RayCore/src/Shared/Cutout.h b/Intern/RAY-Core/src/Shared/Cutout.h similarity index 100% rename from Intern/RayCore/src/Shared/Cutout.h rename to Intern/RAY-Core/src/Shared/Cutout.h diff --git a/Intern/RayCore/src/Shared/Element.h b/Intern/RAY-Core/src/Shared/Element.h similarity index 100% rename from Intern/RayCore/src/Shared/Element.h rename to Intern/RAY-Core/src/Shared/Element.h diff --git a/Intern/RayCore/src/Shared/Surface.h b/Intern/RAY-Core/src/Shared/Surface.h similarity index 100% rename from Intern/RayCore/src/Shared/Surface.h rename to Intern/RAY-Core/src/Shared/Surface.h diff --git a/Intern/RayCore/src/Tracer/CpuTracer.cpp b/Intern/RAY-Core/src/Tracer/CpuTracer.cpp similarity index 100% rename from Intern/RayCore/src/Tracer/CpuTracer.cpp rename to Intern/RAY-Core/src/Tracer/CpuTracer.cpp diff --git a/Intern/RayCore/src/Tracer/CpuTracer.h b/Intern/RAY-Core/src/Tracer/CpuTracer.h similarity index 100% rename from Intern/RayCore/src/Tracer/CpuTracer.h rename to Intern/RAY-Core/src/Tracer/CpuTracer.h diff --git a/Intern/RayCore/src/Tracer/Ray.h b/Intern/RAY-Core/src/Tracer/Ray.h similarity index 100% rename from Intern/RayCore/src/Tracer/Ray.h rename to Intern/RAY-Core/src/Tracer/Ray.h diff --git a/Intern/RayCore/src/Tracer/Tracer.cpp b/Intern/RAY-Core/src/Tracer/Tracer.cpp similarity index 100% rename from Intern/RayCore/src/Tracer/Tracer.cpp rename to Intern/RAY-Core/src/Tracer/Tracer.cpp diff --git a/Intern/RayCore/src/Tracer/Tracer.h b/Intern/RAY-Core/src/Tracer/Tracer.h similarity index 100% rename from Intern/RayCore/src/Tracer/Tracer.h rename to Intern/RAY-Core/src/Tracer/Tracer.h diff --git a/Intern/RayCore/src/Tracer/VulkanTracer.cpp b/Intern/RAY-Core/src/Tracer/VulkanTracer.cpp similarity index 100% rename from Intern/RayCore/src/Tracer/VulkanTracer.cpp rename to Intern/RAY-Core/src/Tracer/VulkanTracer.cpp diff --git a/Intern/RayCore/src/Tracer/VulkanTracer.h b/Intern/RAY-Core/src/Tracer/VulkanTracer.h similarity index 100% rename from Intern/RayCore/src/Tracer/VulkanTracer.h rename to Intern/RAY-Core/src/Tracer/VulkanTracer.h diff --git a/Intern/RayCore/src/Tracer/shader/approx.comp b/Intern/RAY-Core/src/Tracer/shader/approx.comp similarity index 100% rename from Intern/RayCore/src/Tracer/shader/approx.comp rename to Intern/RAY-Core/src/Tracer/shader/approx.comp diff --git a/Intern/RayCore/src/Tracer/shader/behave.comp b/Intern/RAY-Core/src/Tracer/shader/behave.comp similarity index 100% rename from Intern/RayCore/src/Tracer/shader/behave.comp rename to Intern/RAY-Core/src/Tracer/shader/behave.comp diff --git a/Intern/RayCore/src/Tracer/shader/collision.comp b/Intern/RAY-Core/src/Tracer/shader/collision.comp similarity index 100% rename from Intern/RayCore/src/Tracer/shader/collision.comp rename to Intern/RAY-Core/src/Tracer/shader/collision.comp diff --git a/Intern/RayCore/src/Tracer/shader/complex.comp b/Intern/RAY-Core/src/Tracer/shader/complex.comp similarity index 100% rename from Intern/RayCore/src/Tracer/shader/complex.comp rename to Intern/RAY-Core/src/Tracer/shader/complex.comp diff --git a/Intern/RayCore/src/Tracer/shader/dynamic_elements.comp b/Intern/RAY-Core/src/Tracer/shader/dynamic_elements.comp similarity index 100% rename from Intern/RayCore/src/Tracer/shader/dynamic_elements.comp rename to Intern/RAY-Core/src/Tracer/shader/dynamic_elements.comp diff --git a/Intern/RayCore/src/Tracer/shader/main-glsl.comp b/Intern/RAY-Core/src/Tracer/shader/main-glsl.comp similarity index 100% rename from Intern/RayCore/src/Tracer/shader/main-glsl.comp rename to Intern/RAY-Core/src/Tracer/shader/main-glsl.comp diff --git a/Intern/RayCore/src/Tracer/shader/main.comp b/Intern/RAY-Core/src/Tracer/shader/main.comp similarity index 100% rename from Intern/RayCore/src/Tracer/shader/main.comp rename to Intern/RAY-Core/src/Tracer/shader/main.comp diff --git a/Intern/RayCore/src/Tracer/shader/random.comp b/Intern/RAY-Core/src/Tracer/shader/random.comp similarity index 100% rename from Intern/RayCore/src/Tracer/shader/random.comp rename to Intern/RAY-Core/src/Tracer/shader/random.comp diff --git a/Intern/RayCore/src/Tracer/shader/utils.comp b/Intern/RAY-Core/src/Tracer/shader/utils.comp similarity index 100% rename from Intern/RayCore/src/Tracer/shader/utils.comp rename to Intern/RAY-Core/src/Tracer/shader/utils.comp diff --git a/Intern/RayCore/src/VulkanEngine/Buffer/CreateBuffer.cpp b/Intern/RAY-Core/src/VulkanEngine/Buffer/CreateBuffer.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Buffer/CreateBuffer.cpp rename to Intern/RAY-Core/src/VulkanEngine/Buffer/CreateBuffer.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Buffer/DeclareBuffer.cpp b/Intern/RAY-Core/src/VulkanEngine/Buffer/DeclareBuffer.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Buffer/DeclareBuffer.cpp rename to Intern/RAY-Core/src/VulkanEngine/Buffer/DeclareBuffer.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Buffer/IO/GpuMemcpy.cpp b/Intern/RAY-Core/src/VulkanEngine/Buffer/IO/GpuMemcpy.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Buffer/IO/GpuMemcpy.cpp rename to Intern/RAY-Core/src/VulkanEngine/Buffer/IO/GpuMemcpy.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Buffer/IO/ReadBufferRaw.cpp b/Intern/RAY-Core/src/VulkanEngine/Buffer/IO/ReadBufferRaw.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Buffer/IO/ReadBufferRaw.cpp rename to Intern/RAY-Core/src/VulkanEngine/Buffer/IO/ReadBufferRaw.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Buffer/IO/WriteBufferRaw.cpp b/Intern/RAY-Core/src/VulkanEngine/Buffer/IO/WriteBufferRaw.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Buffer/IO/WriteBufferRaw.cpp rename to Intern/RAY-Core/src/VulkanEngine/Buffer/IO/WriteBufferRaw.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Cleanup.cpp b/Intern/RAY-Core/src/VulkanEngine/Cleanup.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Cleanup.cpp rename to Intern/RAY-Core/src/VulkanEngine/Cleanup.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Destruct.cpp b/Intern/RAY-Core/src/VulkanEngine/Destruct.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Destruct.cpp rename to Intern/RAY-Core/src/VulkanEngine/Destruct.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Init/Cache.cpp b/Intern/RAY-Core/src/VulkanEngine/Init/Cache.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Init/Cache.cpp rename to Intern/RAY-Core/src/VulkanEngine/Init/Cache.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Init/CommandBuffer.cpp b/Intern/RAY-Core/src/VulkanEngine/Init/CommandBuffer.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Init/CommandBuffer.cpp rename to Intern/RAY-Core/src/VulkanEngine/Init/CommandBuffer.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Init/CommandPool.cpp b/Intern/RAY-Core/src/VulkanEngine/Init/CommandPool.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Init/CommandPool.cpp rename to Intern/RAY-Core/src/VulkanEngine/Init/CommandPool.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Init/DescriptorSetLayout.cpp b/Intern/RAY-Core/src/VulkanEngine/Init/DescriptorSetLayout.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Init/DescriptorSetLayout.cpp rename to Intern/RAY-Core/src/VulkanEngine/Init/DescriptorSetLayout.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Init/Fence.cpp b/Intern/RAY-Core/src/VulkanEngine/Init/Fence.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Init/Fence.cpp rename to Intern/RAY-Core/src/VulkanEngine/Init/Fence.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Init/Init.cpp b/Intern/RAY-Core/src/VulkanEngine/Init/Init.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Init/Init.cpp rename to Intern/RAY-Core/src/VulkanEngine/Init/Init.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Init/Instance.cpp b/Intern/RAY-Core/src/VulkanEngine/Init/Instance.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Init/Instance.cpp rename to Intern/RAY-Core/src/VulkanEngine/Init/Instance.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Init/PickDevice.cpp b/Intern/RAY-Core/src/VulkanEngine/Init/PickDevice.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Init/PickDevice.cpp rename to Intern/RAY-Core/src/VulkanEngine/Init/PickDevice.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Init/ShaderModule.cpp b/Intern/RAY-Core/src/VulkanEngine/Init/ShaderModule.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Init/ShaderModule.cpp rename to Intern/RAY-Core/src/VulkanEngine/Init/ShaderModule.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Init/StagingBuffer.cpp b/Intern/RAY-Core/src/VulkanEngine/Init/StagingBuffer.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Init/StagingBuffer.cpp rename to Intern/RAY-Core/src/VulkanEngine/Init/StagingBuffer.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Run/ComputePipeline.cpp b/Intern/RAY-Core/src/VulkanEngine/Run/ComputePipeline.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Run/ComputePipeline.cpp rename to Intern/RAY-Core/src/VulkanEngine/Run/ComputePipeline.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Run/DescriptorSet.cpp b/Intern/RAY-Core/src/VulkanEngine/Run/DescriptorSet.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Run/DescriptorSet.cpp rename to Intern/RAY-Core/src/VulkanEngine/Run/DescriptorSet.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Run/RecordBuffer.cpp b/Intern/RAY-Core/src/VulkanEngine/Run/RecordBuffer.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Run/RecordBuffer.cpp rename to Intern/RAY-Core/src/VulkanEngine/Run/RecordBuffer.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Run/Run.cpp b/Intern/RAY-Core/src/VulkanEngine/Run/Run.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Run/Run.cpp rename to Intern/RAY-Core/src/VulkanEngine/Run/Run.cpp diff --git a/Intern/RayCore/src/VulkanEngine/Run/RunCommandBuffer.cpp b/Intern/RAY-Core/src/VulkanEngine/Run/RunCommandBuffer.cpp similarity index 100% rename from Intern/RayCore/src/VulkanEngine/Run/RunCommandBuffer.cpp rename to Intern/RAY-Core/src/VulkanEngine/Run/RunCommandBuffer.cpp diff --git a/Intern/RayCore/src/VulkanEngine/VulkanEngine.h b/Intern/RAY-Core/src/VulkanEngine/VulkanEngine.h similarity index 100% rename from Intern/RayCore/src/VulkanEngine/VulkanEngine.h rename to Intern/RAY-Core/src/VulkanEngine/VulkanEngine.h diff --git a/Intern/RayCore/src/Writer/CSVWriter.cpp b/Intern/RAY-Core/src/Writer/CSVWriter.cpp similarity index 100% rename from Intern/RayCore/src/Writer/CSVWriter.cpp rename to Intern/RAY-Core/src/Writer/CSVWriter.cpp diff --git a/Intern/RayCore/src/Writer/CSVWriter.h b/Intern/RAY-Core/src/Writer/CSVWriter.h similarity index 100% rename from Intern/RayCore/src/Writer/CSVWriter.h rename to Intern/RAY-Core/src/Writer/CSVWriter.h diff --git a/Intern/RayCore/src/Writer/H5Writer.cpp b/Intern/RAY-Core/src/Writer/H5Writer.cpp similarity index 100% rename from Intern/RayCore/src/Writer/H5Writer.cpp rename to Intern/RAY-Core/src/Writer/H5Writer.cpp diff --git a/Intern/RayCore/src/Writer/H5Writer.h b/Intern/RAY-Core/src/Writer/H5Writer.h similarity index 100% rename from Intern/RayCore/src/Writer/H5Writer.h rename to Intern/RAY-Core/src/Writer/H5Writer.h diff --git a/Intern/RayCore/src/Writer/Writer.h b/Intern/RAY-Core/src/Writer/Writer.h similarity index 100% rename from Intern/RayCore/src/Writer/Writer.h rename to Intern/RAY-Core/src/Writer/Writer.h diff --git a/Intern/RayCore/src/utils.cpp b/Intern/RAY-Core/src/utils.cpp similarity index 100% rename from Intern/RayCore/src/utils.cpp rename to Intern/RAY-Core/src/utils.cpp diff --git a/Intern/RayCore/src/utils.h b/Intern/RAY-Core/src/utils.h similarity index 100% rename from Intern/RayCore/src/utils.h rename to Intern/RAY-Core/src/utils.h diff --git a/Intern/RayCore/tests/Benchmarks/AutomaticBenchmarks/GPUvsCPU.py b/Intern/RAY-Core/tests/Benchmarks/AutomaticBenchmarks/GPUvsCPU.py similarity index 100% rename from Intern/RayCore/tests/Benchmarks/AutomaticBenchmarks/GPUvsCPU.py rename to Intern/RAY-Core/tests/Benchmarks/AutomaticBenchmarks/GPUvsCPU.py diff --git a/Intern/RayCore/tests/Benchmarks/AutomaticBenchmarks/benchmark_diagram.py b/Intern/RAY-Core/tests/Benchmarks/AutomaticBenchmarks/benchmark_diagram.py similarity index 100% rename from Intern/RayCore/tests/Benchmarks/AutomaticBenchmarks/benchmark_diagram.py rename to Intern/RAY-Core/tests/Benchmarks/AutomaticBenchmarks/benchmark_diagram.py diff --git a/Intern/RayCore/tests/Benchmarks/AutomaticBenchmarks/benchrayx.sh b/Intern/RAY-Core/tests/Benchmarks/AutomaticBenchmarks/benchrayx.sh similarity index 100% rename from Intern/RayCore/tests/Benchmarks/AutomaticBenchmarks/benchrayx.sh rename to Intern/RAY-Core/tests/Benchmarks/AutomaticBenchmarks/benchrayx.sh diff --git a/Intern/RayCore/tests/Benchmarks/ManualTests/README.md b/Intern/RAY-Core/tests/Benchmarks/ManualTests/README.md similarity index 100% rename from Intern/RayCore/tests/Benchmarks/ManualTests/README.md rename to Intern/RAY-Core/tests/Benchmarks/ManualTests/README.md diff --git a/Intern/RayCore/tests/Benchmarks/ManualTests/RML_Test_Bundle.zip b/Intern/RAY-Core/tests/Benchmarks/ManualTests/RML_Test_Bundle.zip similarity index 100% rename from Intern/RayCore/tests/Benchmarks/ManualTests/RML_Test_Bundle.zip rename to Intern/RAY-Core/tests/Benchmarks/ManualTests/RML_Test_Bundle.zip diff --git a/Intern/RayCore/tests/Benchmarks/ManualTests/TestResult_Report.ods b/Intern/RAY-Core/tests/Benchmarks/ManualTests/TestResult_Report.ods similarity index 100% rename from Intern/RayCore/tests/Benchmarks/ManualTests/TestResult_Report.ods rename to Intern/RAY-Core/tests/Benchmarks/ManualTests/TestResult_Report.ods diff --git a/Intern/RayCore/tests/CMakeLists.txt b/Intern/RAY-Core/tests/CMakeLists.txt similarity index 91% rename from Intern/RayCore/tests/CMakeLists.txt rename to Intern/RAY-Core/tests/CMakeLists.txt index 987bed904..02c4d274b 100644 --- a/Intern/RayCore/tests/CMakeLists.txt +++ b/Intern/RAY-Core/tests/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.15 FATAL_ERROR) # ---- Project ---- -project(RayTests) +project(RAY-Core_Tests) include(CTest) enable_testing() set(BINARY ${CMAKE_PROJECT_NAME}_tst) @@ -19,7 +19,7 @@ set(CMAKE_PCH_INSTANTIATE_TEMPLATES ON) # ---- Dependencies ---- -target_link_libraries(${BINARY} PUBLIC RayCore gtest gmock) +target_link_libraries(${BINARY} PUBLIC RAY-Core gtest gmock) # ---------------------- diff --git a/Intern/RayCore/tests/input/BoringImagePlane.csv b/Intern/RAY-Core/tests/input/BoringImagePlane.csv similarity index 100% rename from Intern/RayCore/tests/input/BoringImagePlane.csv rename to Intern/RAY-Core/tests/input/BoringImagePlane.csv diff --git a/Intern/RayCore/tests/input/BoringImagePlane.rml b/Intern/RAY-Core/tests/input/BoringImagePlane.rml similarity index 100% rename from Intern/RayCore/tests/input/BoringImagePlane.rml rename to Intern/RAY-Core/tests/input/BoringImagePlane.rml diff --git a/Intern/RayCore/tests/input/Cone.csv b/Intern/RAY-Core/tests/input/Cone.csv similarity index 100% rename from Intern/RayCore/tests/input/Cone.csv rename to Intern/RAY-Core/tests/input/Cone.csv diff --git a/Intern/RayCore/tests/input/Cone.rml b/Intern/RAY-Core/tests/input/Cone.rml similarity index 100% rename from Intern/RayCore/tests/input/Cone.rml rename to Intern/RAY-Core/tests/input/Cone.rml diff --git a/Intern/RayCore/tests/input/CylinderDefault.csv b/Intern/RAY-Core/tests/input/CylinderDefault.csv similarity index 100% rename from Intern/RayCore/tests/input/CylinderDefault.csv rename to Intern/RAY-Core/tests/input/CylinderDefault.csv diff --git a/Intern/RayCore/tests/input/CylinderDefault.rml b/Intern/RAY-Core/tests/input/CylinderDefault.rml similarity index 100% rename from Intern/RayCore/tests/input/CylinderDefault.rml rename to Intern/RAY-Core/tests/input/CylinderDefault.rml diff --git a/Intern/RayCore/tests/input/Ellipsoid.rml b/Intern/RAY-Core/tests/input/Ellipsoid.rml similarity index 100% rename from Intern/RayCore/tests/input/Ellipsoid.rml rename to Intern/RAY-Core/tests/input/Ellipsoid.rml diff --git a/Intern/RayCore/tests/input/Ellipsoid_DGIA.csv b/Intern/RAY-Core/tests/input/Ellipsoid_DGIA.csv similarity index 100% rename from Intern/RayCore/tests/input/Ellipsoid_DGIA.csv rename to Intern/RAY-Core/tests/input/Ellipsoid_DGIA.csv diff --git a/Intern/RayCore/tests/input/Ellipsoid_DGIA.rml b/Intern/RAY-Core/tests/input/Ellipsoid_DGIA.rml similarity index 100% rename from Intern/RayCore/tests/input/Ellipsoid_DGIA.rml rename to Intern/RAY-Core/tests/input/Ellipsoid_DGIA.rml diff --git a/Intern/RayCore/tests/input/Ellipsoid_MB.csv b/Intern/RAY-Core/tests/input/Ellipsoid_MB.csv similarity index 100% rename from Intern/RayCore/tests/input/Ellipsoid_MB.csv rename to Intern/RAY-Core/tests/input/Ellipsoid_MB.csv diff --git a/Intern/RayCore/tests/input/Ellipsoid_MB.rml b/Intern/RAY-Core/tests/input/Ellipsoid_MB.rml similarity index 100% rename from Intern/RayCore/tests/input/Ellipsoid_MB.rml rename to Intern/RAY-Core/tests/input/Ellipsoid_MB.rml diff --git a/Intern/RayCore/tests/input/Ellipsoid_PM.csv b/Intern/RAY-Core/tests/input/Ellipsoid_PM.csv similarity index 100% rename from Intern/RayCore/tests/input/Ellipsoid_PM.csv rename to Intern/RAY-Core/tests/input/Ellipsoid_PM.csv diff --git a/Intern/RayCore/tests/input/Ellipsoid_PM.rml b/Intern/RAY-Core/tests/input/Ellipsoid_PM.rml similarity index 100% rename from Intern/RayCore/tests/input/Ellipsoid_PM.rml rename to Intern/RAY-Core/tests/input/Ellipsoid_PM.rml diff --git a/Intern/RayCore/tests/input/MatrixSource.csv b/Intern/RAY-Core/tests/input/MatrixSource.csv similarity index 100% rename from Intern/RayCore/tests/input/MatrixSource.csv rename to Intern/RAY-Core/tests/input/MatrixSource.csv diff --git a/Intern/RayCore/tests/input/MatrixSource.rml b/Intern/RAY-Core/tests/input/MatrixSource.rml similarity index 100% rename from Intern/RayCore/tests/input/MatrixSource.rml rename to Intern/RAY-Core/tests/input/MatrixSource.rml diff --git a/Intern/RayCore/tests/input/MatrixSourceMoved.rml b/Intern/RAY-Core/tests/input/MatrixSourceMoved.rml similarity index 100% rename from Intern/RayCore/tests/input/MatrixSourceMoved.rml rename to Intern/RAY-Core/tests/input/MatrixSourceMoved.rml diff --git a/Intern/RayCore/tests/input/MatrixSourceSpreaded.rml b/Intern/RAY-Core/tests/input/MatrixSourceSpreaded.rml similarity index 100% rename from Intern/RayCore/tests/input/MatrixSourceSpreaded.rml rename to Intern/RAY-Core/tests/input/MatrixSourceSpreaded.rml diff --git a/Intern/RayCore/tests/input/MatrixSource_distr_seeded.correct.csv b/Intern/RAY-Core/tests/input/MatrixSource_distr_seeded.correct.csv similarity index 100% rename from Intern/RayCore/tests/input/MatrixSource_distr_seeded.correct.csv rename to Intern/RAY-Core/tests/input/MatrixSource_distr_seeded.correct.csv diff --git a/Intern/RayCore/tests/input/MatrixSource_distr_seeded.rml b/Intern/RAY-Core/tests/input/MatrixSource_distr_seeded.rml similarity index 100% rename from Intern/RayCore/tests/input/MatrixSource_distr_seeded.rml rename to Intern/RAY-Core/tests/input/MatrixSource_distr_seeded.rml diff --git a/Intern/RayCore/tests/input/MatrixSource_seeded.correct.csv b/Intern/RAY-Core/tests/input/MatrixSource_seeded.correct.csv similarity index 100% rename from Intern/RayCore/tests/input/MatrixSource_seeded.correct.csv rename to Intern/RAY-Core/tests/input/MatrixSource_seeded.correct.csv diff --git a/Intern/RayCore/tests/input/MatrixSource_seeded.rml b/Intern/RAY-Core/tests/input/MatrixSource_seeded.rml similarity index 100% rename from Intern/RayCore/tests/input/MatrixSource_seeded.rml rename to Intern/RAY-Core/tests/input/MatrixSource_seeded.rml diff --git a/Intern/RayCore/tests/input/PlaneGratingDevAzMisVLS.csv b/Intern/RAY-Core/tests/input/PlaneGratingDevAzMisVLS.csv similarity index 100% rename from Intern/RayCore/tests/input/PlaneGratingDevAzMisVLS.csv rename to Intern/RAY-Core/tests/input/PlaneGratingDevAzMisVLS.csv diff --git a/Intern/RayCore/tests/input/PlaneGratingDevAzMisVLS.rml b/Intern/RAY-Core/tests/input/PlaneGratingDevAzMisVLS.rml similarity index 100% rename from Intern/RayCore/tests/input/PlaneGratingDevAzMisVLS.rml rename to Intern/RAY-Core/tests/input/PlaneGratingDevAzMisVLS.rml diff --git a/Intern/RayCore/tests/input/PlaneGratingDeviationAz.csv b/Intern/RAY-Core/tests/input/PlaneGratingDeviationAz.csv similarity index 100% rename from Intern/RayCore/tests/input/PlaneGratingDeviationAz.csv rename to Intern/RAY-Core/tests/input/PlaneGratingDeviationAz.csv diff --git a/Intern/RayCore/tests/input/PlaneGratingDeviationAz.rml b/Intern/RAY-Core/tests/input/PlaneGratingDeviationAz.rml similarity index 100% rename from Intern/RayCore/tests/input/PlaneGratingDeviationAz.rml rename to Intern/RAY-Core/tests/input/PlaneGratingDeviationAz.rml diff --git a/Intern/RayCore/tests/input/PlaneGratingDeviationAzMis.csv b/Intern/RAY-Core/tests/input/PlaneGratingDeviationAzMis.csv similarity index 100% rename from Intern/RayCore/tests/input/PlaneGratingDeviationAzMis.csv rename to Intern/RAY-Core/tests/input/PlaneGratingDeviationAzMis.csv diff --git a/Intern/RayCore/tests/input/PlaneGratingDeviationAzMis.rml b/Intern/RAY-Core/tests/input/PlaneGratingDeviationAzMis.rml similarity index 100% rename from Intern/RayCore/tests/input/PlaneGratingDeviationAzMis.rml rename to Intern/RAY-Core/tests/input/PlaneGratingDeviationAzMis.rml diff --git a/Intern/RayCore/tests/input/PlaneGratingDeviationDefault.csv b/Intern/RAY-Core/tests/input/PlaneGratingDeviationDefault.csv similarity index 100% rename from Intern/RayCore/tests/input/PlaneGratingDeviationDefault.csv rename to Intern/RAY-Core/tests/input/PlaneGratingDeviationDefault.csv diff --git a/Intern/RayCore/tests/input/PlaneGratingDeviationDefault.rml b/Intern/RAY-Core/tests/input/PlaneGratingDeviationDefault.rml similarity index 100% rename from Intern/RayCore/tests/input/PlaneGratingDeviationDefault.rml rename to Intern/RAY-Core/tests/input/PlaneGratingDeviationDefault.rml diff --git a/Intern/RayCore/tests/input/PlaneGratingIncAzMis.csv b/Intern/RAY-Core/tests/input/PlaneGratingIncAzMis.csv similarity index 100% rename from Intern/RayCore/tests/input/PlaneGratingIncAzMis.csv rename to Intern/RAY-Core/tests/input/PlaneGratingIncAzMis.csv diff --git a/Intern/RayCore/tests/input/PlaneGratingIncAzMis.rml b/Intern/RAY-Core/tests/input/PlaneGratingIncAzMis.rml similarity index 100% rename from Intern/RayCore/tests/input/PlaneGratingIncAzMis.rml rename to Intern/RAY-Core/tests/input/PlaneGratingIncAzMis.rml diff --git a/Intern/RayCore/tests/input/PlaneMirror.csv b/Intern/RAY-Core/tests/input/PlaneMirror.csv similarity index 100% rename from Intern/RayCore/tests/input/PlaneMirror.csv rename to Intern/RAY-Core/tests/input/PlaneMirror.csv diff --git a/Intern/RayCore/tests/input/PlaneMirror.rml b/Intern/RAY-Core/tests/input/PlaneMirror.rml similarity index 100% rename from Intern/RayCore/tests/input/PlaneMirror.rml rename to Intern/RAY-Core/tests/input/PlaneMirror.rml diff --git a/Intern/RayCore/tests/input/PlaneMirrorDef.csv b/Intern/RAY-Core/tests/input/PlaneMirrorDef.csv similarity index 100% rename from Intern/RayCore/tests/input/PlaneMirrorDef.csv rename to Intern/RAY-Core/tests/input/PlaneMirrorDef.csv diff --git a/Intern/RayCore/tests/input/PlaneMirrorDef.rml b/Intern/RAY-Core/tests/input/PlaneMirrorDef.rml similarity index 100% rename from Intern/RayCore/tests/input/PlaneMirrorDef.rml rename to Intern/RAY-Core/tests/input/PlaneMirrorDef.rml diff --git a/Intern/RayCore/tests/input/PlaneMirrorMis.csv b/Intern/RAY-Core/tests/input/PlaneMirrorMis.csv similarity index 100% rename from Intern/RayCore/tests/input/PlaneMirrorMis.csv rename to Intern/RAY-Core/tests/input/PlaneMirrorMis.csv diff --git a/Intern/RayCore/tests/input/PlaneMirrorMis.rml b/Intern/RAY-Core/tests/input/PlaneMirrorMis.rml similarity index 100% rename from Intern/RayCore/tests/input/PlaneMirrorMis.rml rename to Intern/RAY-Core/tests/input/PlaneMirrorMis.rml diff --git a/Intern/RayCore/tests/input/PlaneMirror_refl_seeded.correct.csv b/Intern/RAY-Core/tests/input/PlaneMirror_refl_seeded.correct.csv similarity index 100% rename from Intern/RayCore/tests/input/PlaneMirror_refl_seeded.correct.csv rename to Intern/RAY-Core/tests/input/PlaneMirror_refl_seeded.correct.csv diff --git a/Intern/RayCore/tests/input/PlaneMirror_refl_seeded.rml b/Intern/RAY-Core/tests/input/PlaneMirror_refl_seeded.rml similarity index 100% rename from Intern/RayCore/tests/input/PlaneMirror_refl_seeded.rml rename to Intern/RAY-Core/tests/input/PlaneMirror_refl_seeded.rml diff --git a/Intern/RayCore/tests/input/PointSourceHardEdge.rml b/Intern/RAY-Core/tests/input/PointSourceHardEdge.rml similarity index 100% rename from Intern/RayCore/tests/input/PointSourceHardEdge.rml rename to Intern/RAY-Core/tests/input/PointSourceHardEdge.rml diff --git a/Intern/RayCore/tests/input/PointSourceSoftEdge.rml b/Intern/RAY-Core/tests/input/PointSourceSoftEdge.rml similarity index 100% rename from Intern/RayCore/tests/input/PointSourceSoftEdge.rml rename to Intern/RAY-Core/tests/input/PointSourceSoftEdge.rml diff --git a/Intern/RayCore/tests/input/PointSource_seeded.correct.csv b/Intern/RAY-Core/tests/input/PointSource_seeded.correct.csv similarity index 100% rename from Intern/RayCore/tests/input/PointSource_seeded.correct.csv rename to Intern/RAY-Core/tests/input/PointSource_seeded.correct.csv diff --git a/Intern/RayCore/tests/input/PointSource_seeded.rml b/Intern/RAY-Core/tests/input/PointSource_seeded.rml similarity index 100% rename from Intern/RayCore/tests/input/PointSource_seeded.rml rename to Intern/RAY-Core/tests/input/PointSource_seeded.rml diff --git a/Intern/RayCore/tests/input/ReflectionZonePlateAzim200.csv b/Intern/RAY-Core/tests/input/ReflectionZonePlateAzim200.csv similarity index 100% rename from Intern/RayCore/tests/input/ReflectionZonePlateAzim200.csv rename to Intern/RAY-Core/tests/input/ReflectionZonePlateAzim200.csv diff --git a/Intern/RayCore/tests/input/ReflectionZonePlateAzim200.rml b/Intern/RAY-Core/tests/input/ReflectionZonePlateAzim200.rml similarity index 100% rename from Intern/RayCore/tests/input/ReflectionZonePlateAzim200.rml rename to Intern/RAY-Core/tests/input/ReflectionZonePlateAzim200.rml diff --git a/Intern/RayCore/tests/input/ReflectionZonePlateDefault.csv b/Intern/RAY-Core/tests/input/ReflectionZonePlateDefault.csv similarity index 100% rename from Intern/RayCore/tests/input/ReflectionZonePlateDefault.csv rename to Intern/RAY-Core/tests/input/ReflectionZonePlateDefault.csv diff --git a/Intern/RayCore/tests/input/ReflectionZonePlateDefault.rml b/Intern/RAY-Core/tests/input/ReflectionZonePlateDefault.rml similarity index 100% rename from Intern/RayCore/tests/input/ReflectionZonePlateDefault.rml rename to Intern/RAY-Core/tests/input/ReflectionZonePlateDefault.rml diff --git a/Intern/RayCore/tests/input/ReflectionZonePlateDefault200.csv b/Intern/RAY-Core/tests/input/ReflectionZonePlateDefault200.csv similarity index 100% rename from Intern/RayCore/tests/input/ReflectionZonePlateDefault200.csv rename to Intern/RAY-Core/tests/input/ReflectionZonePlateDefault200.csv diff --git a/Intern/RayCore/tests/input/ReflectionZonePlateDefault200.rml b/Intern/RAY-Core/tests/input/ReflectionZonePlateDefault200.rml similarity index 100% rename from Intern/RayCore/tests/input/ReflectionZonePlateDefault200.rml rename to Intern/RAY-Core/tests/input/ReflectionZonePlateDefault200.rml diff --git a/Intern/RayCore/tests/input/ReflectionZonePlateDefault200Toroid.csv b/Intern/RAY-Core/tests/input/ReflectionZonePlateDefault200Toroid.csv similarity index 100% rename from Intern/RayCore/tests/input/ReflectionZonePlateDefault200Toroid.csv rename to Intern/RAY-Core/tests/input/ReflectionZonePlateDefault200Toroid.csv diff --git a/Intern/RayCore/tests/input/ReflectionZonePlateDefault200Toroid.rml b/Intern/RAY-Core/tests/input/ReflectionZonePlateDefault200Toroid.rml similarity index 100% rename from Intern/RayCore/tests/input/ReflectionZonePlateDefault200Toroid.rml rename to Intern/RAY-Core/tests/input/ReflectionZonePlateDefault200Toroid.rml diff --git a/Intern/RayCore/tests/input/ReflectionZonePlateMis.csv b/Intern/RAY-Core/tests/input/ReflectionZonePlateMis.csv similarity index 100% rename from Intern/RayCore/tests/input/ReflectionZonePlateMis.csv rename to Intern/RAY-Core/tests/input/ReflectionZonePlateMis.csv diff --git a/Intern/RayCore/tests/input/ReflectionZonePlateMis.rml b/Intern/RAY-Core/tests/input/ReflectionZonePlateMis.rml similarity index 100% rename from Intern/RayCore/tests/input/ReflectionZonePlateMis.rml rename to Intern/RAY-Core/tests/input/ReflectionZonePlateMis.rml diff --git a/Intern/RayCore/tests/input/SphereMirrorDefault.csv b/Intern/RAY-Core/tests/input/SphereMirrorDefault.csv similarity index 100% rename from Intern/RayCore/tests/input/SphereMirrorDefault.csv rename to Intern/RAY-Core/tests/input/SphereMirrorDefault.csv diff --git a/Intern/RayCore/tests/input/SphereMirrorDefault.rml b/Intern/RAY-Core/tests/input/SphereMirrorDefault.rml similarity index 100% rename from Intern/RayCore/tests/input/SphereMirrorDefault.rml rename to Intern/RAY-Core/tests/input/SphereMirrorDefault.rml diff --git a/Intern/RayCore/tests/input/allBeamlineObjects.rml b/Intern/RAY-Core/tests/input/allBeamlineObjects.rml similarity index 100% rename from Intern/RayCore/tests/input/allBeamlineObjects.rml rename to Intern/RAY-Core/tests/input/allBeamlineObjects.rml diff --git a/Intern/RayCore/tests/input/ellipsoid_ip_200mirrormis.csv b/Intern/RAY-Core/tests/input/ellipsoid_ip_200mirrormis.csv similarity index 100% rename from Intern/RayCore/tests/input/ellipsoid_ip_200mirrormis.csv rename to Intern/RAY-Core/tests/input/ellipsoid_ip_200mirrormis.csv diff --git a/Intern/RayCore/tests/input/ellipsoid_ip_200mirrormis.rml b/Intern/RAY-Core/tests/input/ellipsoid_ip_200mirrormis.rml similarity index 100% rename from Intern/RayCore/tests/input/ellipsoid_ip_200mirrormis.rml rename to Intern/RAY-Core/tests/input/ellipsoid_ip_200mirrormis.rml diff --git a/Intern/RayCore/tests/input/globalCoordinates_20rays.csv b/Intern/RAY-Core/tests/input/globalCoordinates_20rays.csv similarity index 100% rename from Intern/RayCore/tests/input/globalCoordinates_20rays.csv rename to Intern/RAY-Core/tests/input/globalCoordinates_20rays.csv diff --git a/Intern/RayCore/tests/input/globalCoordinates_20rays.rml b/Intern/RAY-Core/tests/input/globalCoordinates_20rays.rml similarity index 100% rename from Intern/RayCore/tests/input/globalCoordinates_20rays.rml rename to Intern/RAY-Core/tests/input/globalCoordinates_20rays.rml diff --git a/Intern/RayCore/tests/input/groupRZPTest.rml b/Intern/RAY-Core/tests/input/groupRZPTest.rml similarity index 100% rename from Intern/RayCore/tests/input/groupRZPTest.rml rename to Intern/RAY-Core/tests/input/groupRZPTest.rml diff --git a/Intern/RayCore/tests/input/groupTransform.rml b/Intern/RAY-Core/tests/input/groupTransform.rml similarity index 100% rename from Intern/RayCore/tests/input/groupTransform.rml rename to Intern/RAY-Core/tests/input/groupTransform.rml diff --git a/Intern/RayCore/tests/input/groupTransform2.rml b/Intern/RAY-Core/tests/input/groupTransform2.rml similarity index 100% rename from Intern/RayCore/tests/input/groupTransform2.rml rename to Intern/RAY-Core/tests/input/groupTransform2.rml diff --git a/Intern/RayCore/tests/input/groupTransformMisalignment.rml b/Intern/RAY-Core/tests/input/groupTransformMisalignment.rml similarity index 100% rename from Intern/RayCore/tests/input/groupTransformMisalignment.rml rename to Intern/RAY-Core/tests/input/groupTransformMisalignment.rml diff --git a/Intern/RayCore/tests/input/loadDatFile.DAT b/Intern/RAY-Core/tests/input/loadDatFile.DAT similarity index 100% rename from Intern/RayCore/tests/input/loadDatFile.DAT rename to Intern/RAY-Core/tests/input/loadDatFile.DAT diff --git a/Intern/RayCore/tests/input/loadDatFile.rml b/Intern/RAY-Core/tests/input/loadDatFile.rml similarity index 100% rename from Intern/RayCore/tests/input/loadDatFile.rml rename to Intern/RAY-Core/tests/input/loadDatFile.rml diff --git a/Intern/RayCore/tests/input/loadGroups.rml b/Intern/RAY-Core/tests/input/loadGroups.rml similarity index 100% rename from Intern/RayCore/tests/input/loadGroups.rml rename to Intern/RAY-Core/tests/input/loadGroups.rml diff --git a/Intern/RayCore/tests/input/pm_ell_ip_200mirrormis.csv b/Intern/RAY-Core/tests/input/pm_ell_ip_200mirrormis.csv similarity index 100% rename from Intern/RayCore/tests/input/pm_ell_ip_200mirrormis.csv rename to Intern/RAY-Core/tests/input/pm_ell_ip_200mirrormis.csv diff --git a/Intern/RayCore/tests/input/pm_ell_ip_200mirrormis.rml b/Intern/RAY-Core/tests/input/pm_ell_ip_200mirrormis.rml similarity index 100% rename from Intern/RayCore/tests/input/pm_ell_ip_200mirrormis.rml rename to Intern/RAY-Core/tests/input/pm_ell_ip_200mirrormis.rml diff --git a/Intern/RayCore/tests/input/slit.rml b/Intern/RAY-Core/tests/input/slit.rml similarity index 100% rename from Intern/RayCore/tests/input/slit.rml rename to Intern/RAY-Core/tests/input/slit.rml diff --git a/Intern/RayCore/tests/input/toroid.csv b/Intern/RAY-Core/tests/input/toroid.csv similarity index 100% rename from Intern/RayCore/tests/input/toroid.csv rename to Intern/RAY-Core/tests/input/toroid.csv diff --git a/Intern/RayCore/tests/input/toroid.rml b/Intern/RAY-Core/tests/input/toroid.rml similarity index 100% rename from Intern/RayCore/tests/input/toroid.rml rename to Intern/RAY-Core/tests/input/toroid.rml diff --git a/Intern/RayCore/tests/input/toroid_swapped.csv b/Intern/RAY-Core/tests/input/toroid_swapped.csv similarity index 100% rename from Intern/RayCore/tests/input/toroid_swapped.csv rename to Intern/RAY-Core/tests/input/toroid_swapped.csv diff --git a/Intern/RayCore/tests/input/toroid_swapped.rml b/Intern/RAY-Core/tests/input/toroid_swapped.rml similarity index 100% rename from Intern/RayCore/tests/input/toroid_swapped.rml rename to Intern/RAY-Core/tests/input/toroid_swapped.rml diff --git a/Intern/RayCore/tests/main.cpp b/Intern/RAY-Core/tests/main.cpp similarity index 95% rename from Intern/RayCore/tests/main.cpp rename to Intern/RAY-Core/tests/main.cpp index 226b4ad97..52ae7686a 100644 --- a/Intern/RayCore/tests/main.cpp +++ b/Intern/RAY-Core/tests/main.cpp @@ -9,7 +9,7 @@ int GLOBAL_ARGC = 0; char** GLOBAL_ARGV = nullptr; int main(int argc, char** argv) { - std::filesystem::path outputDir = canonicalizeRepositoryPath("Intern/RayCore/tests/output"); + std::filesystem::path outputDir = canonicalizeRepositoryPath("Intern/RAY-Core/tests/output"); if (!std::filesystem::is_directory(outputDir) || !std::filesystem::exists(outputDir)) { std::filesystem::create_directory(outputDir); } diff --git a/Intern/RayCore/tests/output/BoringImagePlane.rayui.csv b/Intern/RAY-Core/tests/output/BoringImagePlane.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/BoringImagePlane.rayui.csv rename to Intern/RAY-Core/tests/output/BoringImagePlane.rayui.csv diff --git a/Intern/RayCore/tests/output/BoringImagePlane.rayx.csv b/Intern/RAY-Core/tests/output/BoringImagePlane.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/BoringImagePlane.rayx.csv rename to Intern/RAY-Core/tests/output/BoringImagePlane.rayx.csv diff --git a/Intern/RayCore/tests/output/Cone.rayui.csv b/Intern/RAY-Core/tests/output/Cone.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/Cone.rayui.csv rename to Intern/RAY-Core/tests/output/Cone.rayui.csv diff --git a/Intern/RayCore/tests/output/Cone.rayx.csv b/Intern/RAY-Core/tests/output/Cone.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/Cone.rayx.csv rename to Intern/RAY-Core/tests/output/Cone.rayx.csv diff --git a/Intern/RayCore/tests/output/CylinderDefault.rayui.csv b/Intern/RAY-Core/tests/output/CylinderDefault.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/CylinderDefault.rayui.csv rename to Intern/RAY-Core/tests/output/CylinderDefault.rayui.csv diff --git a/Intern/RayCore/tests/output/CylinderDefault.rayx.csv b/Intern/RAY-Core/tests/output/CylinderDefault.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/CylinderDefault.rayx.csv rename to Intern/RAY-Core/tests/output/CylinderDefault.rayx.csv diff --git a/Intern/RayCore/tests/output/Ellipsoid.rayx.csv b/Intern/RAY-Core/tests/output/Ellipsoid.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/Ellipsoid.rayx.csv rename to Intern/RAY-Core/tests/output/Ellipsoid.rayx.csv diff --git a/Intern/RayCore/tests/output/Ellipsoid_DGIA.rayui.csv b/Intern/RAY-Core/tests/output/Ellipsoid_DGIA.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/Ellipsoid_DGIA.rayui.csv rename to Intern/RAY-Core/tests/output/Ellipsoid_DGIA.rayui.csv diff --git a/Intern/RayCore/tests/output/Ellipsoid_DGIA.rayx.csv b/Intern/RAY-Core/tests/output/Ellipsoid_DGIA.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/Ellipsoid_DGIA.rayx.csv rename to Intern/RAY-Core/tests/output/Ellipsoid_DGIA.rayx.csv diff --git a/Intern/RayCore/tests/output/Ellipsoid_MB.rayui.csv b/Intern/RAY-Core/tests/output/Ellipsoid_MB.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/Ellipsoid_MB.rayui.csv rename to Intern/RAY-Core/tests/output/Ellipsoid_MB.rayui.csv diff --git a/Intern/RayCore/tests/output/Ellipsoid_MB.rayx.csv b/Intern/RAY-Core/tests/output/Ellipsoid_MB.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/Ellipsoid_MB.rayx.csv rename to Intern/RAY-Core/tests/output/Ellipsoid_MB.rayx.csv diff --git a/Intern/RayCore/tests/output/Ellipsoid_PM.rayui.csv b/Intern/RAY-Core/tests/output/Ellipsoid_PM.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/Ellipsoid_PM.rayui.csv rename to Intern/RAY-Core/tests/output/Ellipsoid_PM.rayui.csv diff --git a/Intern/RayCore/tests/output/Ellipsoid_PM.rayx.csv b/Intern/RAY-Core/tests/output/Ellipsoid_PM.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/Ellipsoid_PM.rayx.csv rename to Intern/RAY-Core/tests/output/Ellipsoid_PM.rayx.csv diff --git a/Intern/RayCore/tests/output/MatrixSource_distr_seeded.rayx.csv b/Intern/RAY-Core/tests/output/MatrixSource_distr_seeded.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/MatrixSource_distr_seeded.rayx.csv rename to Intern/RAY-Core/tests/output/MatrixSource_distr_seeded.rayx.csv diff --git a/Intern/RayCore/tests/output/MatrixSource_seeded.rayx.csv b/Intern/RAY-Core/tests/output/MatrixSource_seeded.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/MatrixSource_seeded.rayx.csv rename to Intern/RAY-Core/tests/output/MatrixSource_seeded.rayx.csv diff --git a/Intern/RayCore/tests/output/PlaneGratingDevAzMisVLS.rayui.csv b/Intern/RAY-Core/tests/output/PlaneGratingDevAzMisVLS.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneGratingDevAzMisVLS.rayui.csv rename to Intern/RAY-Core/tests/output/PlaneGratingDevAzMisVLS.rayui.csv diff --git a/Intern/RayCore/tests/output/PlaneGratingDevAzMisVLS.rayx.csv b/Intern/RAY-Core/tests/output/PlaneGratingDevAzMisVLS.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneGratingDevAzMisVLS.rayx.csv rename to Intern/RAY-Core/tests/output/PlaneGratingDevAzMisVLS.rayx.csv diff --git a/Intern/RayCore/tests/output/PlaneGratingDeviationAz.rayui.csv b/Intern/RAY-Core/tests/output/PlaneGratingDeviationAz.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneGratingDeviationAz.rayui.csv rename to Intern/RAY-Core/tests/output/PlaneGratingDeviationAz.rayui.csv diff --git a/Intern/RayCore/tests/output/PlaneGratingDeviationAz.rayx.csv b/Intern/RAY-Core/tests/output/PlaneGratingDeviationAz.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneGratingDeviationAz.rayx.csv rename to Intern/RAY-Core/tests/output/PlaneGratingDeviationAz.rayx.csv diff --git a/Intern/RayCore/tests/output/PlaneGratingDeviationAzMis.rayui.csv b/Intern/RAY-Core/tests/output/PlaneGratingDeviationAzMis.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneGratingDeviationAzMis.rayui.csv rename to Intern/RAY-Core/tests/output/PlaneGratingDeviationAzMis.rayui.csv diff --git a/Intern/RayCore/tests/output/PlaneGratingDeviationAzMis.rayx.csv b/Intern/RAY-Core/tests/output/PlaneGratingDeviationAzMis.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneGratingDeviationAzMis.rayx.csv rename to Intern/RAY-Core/tests/output/PlaneGratingDeviationAzMis.rayx.csv diff --git a/Intern/RayCore/tests/output/PlaneGratingDeviationDefault.rayui.csv b/Intern/RAY-Core/tests/output/PlaneGratingDeviationDefault.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneGratingDeviationDefault.rayui.csv rename to Intern/RAY-Core/tests/output/PlaneGratingDeviationDefault.rayui.csv diff --git a/Intern/RayCore/tests/output/PlaneGratingDeviationDefault.rayx.csv b/Intern/RAY-Core/tests/output/PlaneGratingDeviationDefault.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneGratingDeviationDefault.rayx.csv rename to Intern/RAY-Core/tests/output/PlaneGratingDeviationDefault.rayx.csv diff --git a/Intern/RayCore/tests/output/PlaneGratingIncAzMis.rayui.csv b/Intern/RAY-Core/tests/output/PlaneGratingIncAzMis.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneGratingIncAzMis.rayui.csv rename to Intern/RAY-Core/tests/output/PlaneGratingIncAzMis.rayui.csv diff --git a/Intern/RayCore/tests/output/PlaneGratingIncAzMis.rayx.csv b/Intern/RAY-Core/tests/output/PlaneGratingIncAzMis.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneGratingIncAzMis.rayx.csv rename to Intern/RAY-Core/tests/output/PlaneGratingIncAzMis.rayx.csv diff --git a/Intern/RayCore/tests/output/PlaneMirror.rayui.csv b/Intern/RAY-Core/tests/output/PlaneMirror.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneMirror.rayui.csv rename to Intern/RAY-Core/tests/output/PlaneMirror.rayui.csv diff --git a/Intern/RayCore/tests/output/PlaneMirror.rayx.csv b/Intern/RAY-Core/tests/output/PlaneMirror.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneMirror.rayx.csv rename to Intern/RAY-Core/tests/output/PlaneMirror.rayx.csv diff --git a/Intern/RayCore/tests/output/PlaneMirrorDef.rayui.csv b/Intern/RAY-Core/tests/output/PlaneMirrorDef.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneMirrorDef.rayui.csv rename to Intern/RAY-Core/tests/output/PlaneMirrorDef.rayui.csv diff --git a/Intern/RayCore/tests/output/PlaneMirrorDef.rayx.csv b/Intern/RAY-Core/tests/output/PlaneMirrorDef.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneMirrorDef.rayx.csv rename to Intern/RAY-Core/tests/output/PlaneMirrorDef.rayx.csv diff --git a/Intern/RayCore/tests/output/PlaneMirrorMis.rayui.csv b/Intern/RAY-Core/tests/output/PlaneMirrorMis.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneMirrorMis.rayui.csv rename to Intern/RAY-Core/tests/output/PlaneMirrorMis.rayui.csv diff --git a/Intern/RayCore/tests/output/PlaneMirrorMis.rayx.csv b/Intern/RAY-Core/tests/output/PlaneMirrorMis.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneMirrorMis.rayx.csv rename to Intern/RAY-Core/tests/output/PlaneMirrorMis.rayx.csv diff --git a/Intern/RayCore/tests/output/PlaneMirror_refl_seeded.rayx.csv b/Intern/RAY-Core/tests/output/PlaneMirror_refl_seeded.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/PlaneMirror_refl_seeded.rayx.csv rename to Intern/RAY-Core/tests/output/PlaneMirror_refl_seeded.rayx.csv diff --git a/Intern/RayCore/tests/output/PointSource_seeded.rayx.csv b/Intern/RAY-Core/tests/output/PointSource_seeded.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/PointSource_seeded.rayx.csv rename to Intern/RAY-Core/tests/output/PointSource_seeded.rayx.csv diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateAzim200.rayui.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateAzim200.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/ReflectionZonePlateAzim200.rayui.csv rename to Intern/RAY-Core/tests/output/ReflectionZonePlateAzim200.rayui.csv diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateAzim200.rayx.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateAzim200.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/ReflectionZonePlateAzim200.rayx.csv rename to Intern/RAY-Core/tests/output/ReflectionZonePlateAzim200.rayx.csv diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateDefault.rayui.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/ReflectionZonePlateDefault.rayui.csv rename to Intern/RAY-Core/tests/output/ReflectionZonePlateDefault.rayui.csv diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateDefault.rayx.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/ReflectionZonePlateDefault.rayx.csv rename to Intern/RAY-Core/tests/output/ReflectionZonePlateDefault.rayx.csv diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateDefault200.rayui.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/ReflectionZonePlateDefault200.rayui.csv rename to Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200.rayui.csv diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateDefault200.rayx.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/ReflectionZonePlateDefault200.rayx.csv rename to Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200.rayx.csv diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv rename to Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv rename to Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateMis.rayui.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateMis.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/ReflectionZonePlateMis.rayui.csv rename to Intern/RAY-Core/tests/output/ReflectionZonePlateMis.rayui.csv diff --git a/Intern/RayCore/tests/output/ReflectionZonePlateMis.rayx.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateMis.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/ReflectionZonePlateMis.rayx.csv rename to Intern/RAY-Core/tests/output/ReflectionZonePlateMis.rayx.csv diff --git a/Intern/RayCore/tests/output/SphereMirrorDefault.rayui.csv b/Intern/RAY-Core/tests/output/SphereMirrorDefault.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/SphereMirrorDefault.rayui.csv rename to Intern/RAY-Core/tests/output/SphereMirrorDefault.rayui.csv diff --git a/Intern/RayCore/tests/output/SphereMirrorDefault.rayx.csv b/Intern/RAY-Core/tests/output/SphereMirrorDefault.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/SphereMirrorDefault.rayx.csv rename to Intern/RAY-Core/tests/output/SphereMirrorDefault.rayx.csv diff --git a/Intern/RayCore/tests/output/ellipsoid_ip_200mirrormis.rayui.csv b/Intern/RAY-Core/tests/output/ellipsoid_ip_200mirrormis.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/ellipsoid_ip_200mirrormis.rayui.csv rename to Intern/RAY-Core/tests/output/ellipsoid_ip_200mirrormis.rayui.csv diff --git a/Intern/RayCore/tests/output/ellipsoid_ip_200mirrormis.rayx.csv b/Intern/RAY-Core/tests/output/ellipsoid_ip_200mirrormis.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/ellipsoid_ip_200mirrormis.rayx.csv rename to Intern/RAY-Core/tests/output/ellipsoid_ip_200mirrormis.rayx.csv diff --git a/Intern/RayCore/tests/output/globalCoordinates_20rays.rayui.csv b/Intern/RAY-Core/tests/output/globalCoordinates_20rays.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/globalCoordinates_20rays.rayui.csv rename to Intern/RAY-Core/tests/output/globalCoordinates_20rays.rayui.csv diff --git a/Intern/RayCore/tests/output/globalCoordinates_20rays.rayx.csv b/Intern/RAY-Core/tests/output/globalCoordinates_20rays.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/globalCoordinates_20rays.rayx.csv rename to Intern/RAY-Core/tests/output/globalCoordinates_20rays.rayx.csv diff --git a/Intern/RayCore/tests/output/pm_ell_ip_200mirrormis.rayui.csv b/Intern/RAY-Core/tests/output/pm_ell_ip_200mirrormis.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/pm_ell_ip_200mirrormis.rayui.csv rename to Intern/RAY-Core/tests/output/pm_ell_ip_200mirrormis.rayui.csv diff --git a/Intern/RayCore/tests/output/pm_ell_ip_200mirrormis.rayx.csv b/Intern/RAY-Core/tests/output/pm_ell_ip_200mirrormis.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/pm_ell_ip_200mirrormis.rayx.csv rename to Intern/RAY-Core/tests/output/pm_ell_ip_200mirrormis.rayx.csv diff --git a/Intern/RayCore/tests/output/toroid.rayui.csv b/Intern/RAY-Core/tests/output/toroid.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/toroid.rayui.csv rename to Intern/RAY-Core/tests/output/toroid.rayui.csv diff --git a/Intern/RayCore/tests/output/toroid.rayx.csv b/Intern/RAY-Core/tests/output/toroid.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/toroid.rayx.csv rename to Intern/RAY-Core/tests/output/toroid.rayx.csv diff --git a/Intern/RayCore/tests/output/toroid_swapped.rayui.csv b/Intern/RAY-Core/tests/output/toroid_swapped.rayui.csv similarity index 100% rename from Intern/RayCore/tests/output/toroid_swapped.rayui.csv rename to Intern/RAY-Core/tests/output/toroid_swapped.rayui.csv diff --git a/Intern/RayCore/tests/output/toroid_swapped.rayx.csv b/Intern/RAY-Core/tests/output/toroid_swapped.rayx.csv similarity index 100% rename from Intern/RayCore/tests/output/toroid_swapped.rayx.csv rename to Intern/RAY-Core/tests/output/toroid_swapped.rayx.csv diff --git a/Intern/RayCore/tests/setupTests.cpp b/Intern/RAY-Core/tests/setupTests.cpp similarity index 91% rename from Intern/RayCore/tests/setupTests.cpp rename to Intern/RAY-Core/tests/setupTests.cpp index 7af5bdf67..60c13f1a8 100644 --- a/Intern/RayCore/tests/setupTests.cpp +++ b/Intern/RAY-Core/tests/setupTests.cpp @@ -56,16 +56,16 @@ RAYX::Ray parseCSVline(std::string line) { return ray; } -/// will look at Intern/RayCore/tests/input/.rml +/// will look at Intern/RAY-Core/tests/input/.rml RAYX::Beamline loadBeamline(std::string filename) { - std::string beamline_file = canonicalizeRepositoryPath("Intern/RayCore/tests/input/" + filename + ".rml").string(); + std::string beamline_file = canonicalizeRepositoryPath("Intern/RAY-Core/tests/input/" + filename + ".rml").string(); return RAYX::importBeamline(beamline_file); } -/// will write to Intern/RayCore/tests/output.csv +/// will write to Intern/RAY-Core/tests/output.csv void writeToOutputCSV(const RAYX::Rays& rays, std::string filename) { - std::string f = canonicalizeRepositoryPath("Intern/RayCore/tests/output/" + filename + ".csv").string(); + std::string f = canonicalizeRepositoryPath("Intern/RAY-Core/tests/output/" + filename + ".csv").string(); writeCSV(rays, f); } @@ -106,11 +106,11 @@ std::vector extractLastHit(const RAYX::Rays& rays) { return outs; } -/// will look at Intern/RayCore/tests/input/.csv +/// will look at Intern/RAY-Core/tests/input/.csv /// the Ray-UI files are to be obtained by Export > RawRaysOutgoing (which are in /// element coordinates of the relevant element!) std::vector loadCSVRayUI(std::string filename) { - std::string file = canonicalizeRepositoryPath("Intern/RayCore/tests/input/" + filename + ".csv").string(); + std::string file = canonicalizeRepositoryPath("Intern/RAY-Core/tests/input/" + filename + ".csv").string(); std::ifstream f(file); std::string line; @@ -224,7 +224,7 @@ void compareLastAgainstRayUI(std::string filename, double t) { void compareAgainstCorrect(std::string filename, double tolerance) { auto a = traceRML(filename); - std::string f = canonicalizeRepositoryPath("Intern/RayCore/tests/input/" + filename + ".correct.csv").string(); + std::string f = canonicalizeRepositoryPath("Intern/RAY-Core/tests/input/" + filename + ".correct.csv").string(); auto b = loadCSV(f); writeToOutputCSV(a, filename + ".rayx"); diff --git a/Intern/RayCore/tests/setupTests.h b/Intern/RAY-Core/tests/setupTests.h similarity index 100% rename from Intern/RayCore/tests/setupTests.h rename to Intern/RAY-Core/tests/setupTests.h diff --git a/Intern/RayCore/tests/testIntegration.cpp b/Intern/RAY-Core/tests/testIntegration.cpp similarity index 100% rename from Intern/RayCore/tests/testIntegration.cpp rename to Intern/RAY-Core/tests/testIntegration.cpp diff --git a/Intern/RayCore/tests/testRml.cpp b/Intern/RAY-Core/tests/testRml.cpp similarity index 100% rename from Intern/RayCore/tests/testRml.cpp rename to Intern/RAY-Core/tests/testRml.cpp diff --git a/Intern/RayCore/tests/testSeeded.cpp b/Intern/RAY-Core/tests/testSeeded.cpp similarity index 100% rename from Intern/RayCore/tests/testSeeded.cpp rename to Intern/RAY-Core/tests/testSeeded.cpp diff --git a/Intern/RayCore/tests/testShader.cpp b/Intern/RAY-Core/tests/testShader.cpp similarity index 100% rename from Intern/RayCore/tests/testShader.cpp rename to Intern/RAY-Core/tests/testShader.cpp diff --git a/Intern/RayCore/tests/testSources.cpp b/Intern/RAY-Core/tests/testSources.cpp similarity index 100% rename from Intern/RayCore/tests/testSources.cpp rename to Intern/RAY-Core/tests/testSources.cpp diff --git a/Intern/RayCore/tests/testsPCH.h b/Intern/RAY-Core/tests/testsPCH.h similarity index 100% rename from Intern/RayCore/tests/testsPCH.h rename to Intern/RAY-Core/tests/testsPCH.h diff --git a/Intern/RAY-X/CMakeLists.txt b/Intern/RAY-X/CMakeLists.txt new file mode 100644 index 000000000..8e720cef8 --- /dev/null +++ b/Intern/RAY-X/CMakeLists.txt @@ -0,0 +1,16 @@ +cmake_minimum_required(VERSION 3.15 FATAL_ERROR) + +# ---- Add tests ---- +# add_subdirectory(tests) +# ------------------- + + +# ---- Project ---- +project(RAY-X) +file(GLOB_RECURSE SOURCE ${PROJECT_SOURCE_DIR}/src/*.cpp) +add_executable(${PROJECT_NAME} ${SOURCE}) +# ----------------- + + +# ---- Dependencies ---- +target_include_directories(${PROJECT_NAME} PRIVATE RAY-Core) \ No newline at end of file diff --git a/Intern/RAY-X/src/main.cpp b/Intern/RAY-X/src/main.cpp new file mode 100644 index 000000000..5c34fbca1 --- /dev/null +++ b/Intern/RAY-X/src/main.cpp @@ -0,0 +1,8 @@ +// This is currently just to establish the base structure of the project. + +#include + +void main() +{ + std::cout << "Hello World!" << std::endl; +} \ No newline at end of file diff --git a/Intern/RAY-X/tests/CMakeLists.txt b/Intern/RAY-X/tests/CMakeLists.txt new file mode 100644 index 000000000..e69de29bb diff --git a/Intern/RAY-X/tests/main.cpp b/Intern/RAY-X/tests/main.cpp new file mode 100644 index 000000000..5c34fbca1 --- /dev/null +++ b/Intern/RAY-X/tests/main.cpp @@ -0,0 +1,8 @@ +// This is currently just to establish the base structure of the project. + +#include + +void main() +{ + std::cout << "Hello World!" << std::endl; +} \ No newline at end of file diff --git a/Intern/RayCore/README.md b/Intern/RayCore/README.md deleted file mode 100644 index b8c689714..000000000 --- a/Intern/RayCore/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# RayCore documentation - -Here you will be able to find a detailed documentation for all classes, functions and members from the core library of Ray-X. - -This library will function as an interface between the tracer and the different user interfaces. It will also hold most of the data relevant to the Beamline simulations. \ No newline at end of file From bfc5a169ca4089443d8e524ed374666d1e4ca66c Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Sat, 15 Apr 2023 10:22:34 +0200 Subject: [PATCH 16/19] ubuntu cli fix --- Intern/RAY-CLI/CMakeLists.txt | 6 ++---- Intern/RAY-X/src/main.cpp | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Intern/RAY-CLI/CMakeLists.txt b/Intern/RAY-CLI/CMakeLists.txt index 0f27cb152..f7ad6ef75 100644 --- a/Intern/RAY-CLI/CMakeLists.txt +++ b/Intern/RAY-CLI/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.15 FATAL_ERROR) # ---- Project ---- project(RAY-CLI VERSION 0.5.0.0) -add_executable(${PROJECT_NAME} main.cpp TerminalApp.cpp TerminalApp.h CommandParser.cpp) +add_executable(${PROJECT_NAME} main.cpp TerminalApp.cpp CommandParser.cpp) # ------------------ @@ -34,7 +34,5 @@ target_link_libraries(${PROJECT_NAME} PRIVATE RAY-Core ${PYTHON_LIBRARIES} ) -target_include_directories(${PROJECT_NAME} PRIVATE - ${PROJECT_BINARY_DIR} -) +target_include_directories(${PROJECT_NAME} PRIVATE ${PROJECT_BINARY_DIR}) # ---------------------- \ No newline at end of file diff --git a/Intern/RAY-X/src/main.cpp b/Intern/RAY-X/src/main.cpp index 5c34fbca1..ac8a322e8 100644 --- a/Intern/RAY-X/src/main.cpp +++ b/Intern/RAY-X/src/main.cpp @@ -2,7 +2,7 @@ #include -void main() +int main() { std::cout << "Hello World!" << std::endl; } \ No newline at end of file From 0a0aed00ecf75c0f0b25b1080a6f8125de3222e1 Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Sat, 15 Apr 2023 10:42:34 +0200 Subject: [PATCH 17/19] Fixing RAYX RAYCore include and renaming --- Intern/RAY-CLI/CMakeLists.txt | 3 ++- Intern/RAY-CLI/TerminalApp.h | 2 +- Intern/RAY-Core/src/{RayCore.h => RAY-Core.h} | 0 Intern/RAY-Core/src/Tracer/VulkanTracer.cpp | 2 +- Intern/RAY-Core/src/VulkanEngine/VulkanEngine.h | 2 +- Intern/RAY-X/CMakeLists.txt | 2 +- Intern/RAY-X/src/main.cpp | 5 ++++- 7 files changed, 10 insertions(+), 6 deletions(-) rename Intern/RAY-Core/src/{RayCore.h => RAY-Core.h} (100%) diff --git a/Intern/RAY-CLI/CMakeLists.txt b/Intern/RAY-CLI/CMakeLists.txt index f7ad6ef75..9638963e9 100644 --- a/Intern/RAY-CLI/CMakeLists.txt +++ b/Intern/RAY-CLI/CMakeLists.txt @@ -3,7 +3,8 @@ cmake_minimum_required(VERSION 3.15 FATAL_ERROR) # ---- Project ---- project(RAY-CLI VERSION 0.5.0.0) -add_executable(${PROJECT_NAME} main.cpp TerminalApp.cpp CommandParser.cpp) +file(GLOB_RECURSE SOURCE ${PROJECT_SOURCE_DIR}/*.cpp) +add_executable(${PROJECT_NAME} ${SOURCE}) # ------------------ diff --git a/Intern/RAY-CLI/TerminalApp.h b/Intern/RAY-CLI/TerminalApp.h index e188a3aa4..0ed916480 100644 --- a/Intern/RAY-CLI/TerminalApp.h +++ b/Intern/RAY-CLI/TerminalApp.h @@ -6,7 +6,7 @@ #include #include "CommandParser.h" -#include "RayCore.h" +#include "RAY-Core.h" #include "TerminalAppConfig.h" class TerminalApp { diff --git a/Intern/RAY-Core/src/RayCore.h b/Intern/RAY-Core/src/RAY-Core.h similarity index 100% rename from Intern/RAY-Core/src/RayCore.h rename to Intern/RAY-Core/src/RAY-Core.h diff --git a/Intern/RAY-Core/src/Tracer/VulkanTracer.cpp b/Intern/RAY-Core/src/Tracer/VulkanTracer.cpp index ae54d192c..6548ddb74 100644 --- a/Intern/RAY-Core/src/Tracer/VulkanTracer.cpp +++ b/Intern/RAY-Core/src/Tracer/VulkanTracer.cpp @@ -10,7 +10,7 @@ #include "Debug/Debug.h" #include "Debug/Instrumentor.h" #include "Random.h" -#include "RayCore.h" +#include "RAY-Core.h" #ifdef RAYX_PLATFORM_MSVC #ifdef USE_NSIGHT_AFTERMATH diff --git a/Intern/RAY-Core/src/VulkanEngine/VulkanEngine.h b/Intern/RAY-Core/src/VulkanEngine/VulkanEngine.h index d8fda1204..8ee72cd90 100644 --- a/Intern/RAY-Core/src/VulkanEngine/VulkanEngine.h +++ b/Intern/RAY-Core/src/VulkanEngine/VulkanEngine.h @@ -9,7 +9,7 @@ #include #include -#include "RayCore.h" +#include "RAY-Core.h" namespace RAYX { diff --git a/Intern/RAY-X/CMakeLists.txt b/Intern/RAY-X/CMakeLists.txt index 8e720cef8..1f0900fe1 100644 --- a/Intern/RAY-X/CMakeLists.txt +++ b/Intern/RAY-X/CMakeLists.txt @@ -13,4 +13,4 @@ add_executable(${PROJECT_NAME} ${SOURCE}) # ---- Dependencies ---- -target_include_directories(${PROJECT_NAME} PRIVATE RAY-Core) \ No newline at end of file +target_link_libraries(${PROJECT_NAME} PRIVATE RAY-Core) \ No newline at end of file diff --git a/Intern/RAY-X/src/main.cpp b/Intern/RAY-X/src/main.cpp index ac8a322e8..e91351178 100644 --- a/Intern/RAY-X/src/main.cpp +++ b/Intern/RAY-X/src/main.cpp @@ -1,8 +1,11 @@ // This is currently just to establish the base structure of the project. #include +#include +#include int main() { - std::cout << "Hello World!" << std::endl; + RAYX::randomSeed(); + std::cout << RAYX::randomDouble() << std::endl; } \ No newline at end of file From 66ca1451ebc2b41e4158629ff4c5966ac86da3b7 Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Thu, 4 May 2023 11:49:33 +0200 Subject: [PATCH 18/19] Documentation and cleaning file structure --- .gitignore | 1 + .../tests/output/BoringImagePlane.rayui.csv | 21 - .../tests/output/BoringImagePlane.rayx.csv | 21 - Intern/RAY-Core/tests/output/Cone.rayui.csv | 201 --------- Intern/RAY-Core/tests/output/Cone.rayx.csv | 201 --------- .../tests/output/CylinderDefault.rayui.csv | 201 --------- .../tests/output/CylinderDefault.rayx.csv | 201 --------- .../RAY-Core/tests/output/Ellipsoid.rayx.csv | 238 ----------- .../tests/output/Ellipsoid_DGIA.rayui.csv | 201 --------- .../tests/output/Ellipsoid_DGIA.rayx.csv | 201 --------- .../tests/output/Ellipsoid_MB.rayui.csv | 201 --------- .../tests/output/Ellipsoid_MB.rayx.csv | 201 --------- .../tests/output/Ellipsoid_PM.rayui.csv | 201 --------- .../tests/output/Ellipsoid_PM.rayx.csv | 201 --------- .../output/MatrixSource_distr_seeded.rayx.csv | 401 ------------------ .../tests/output/MatrixSource_seeded.rayx.csv | 401 ------------------ .../output/PlaneGratingDevAzMisVLS.rayui.csv | 68 --- .../output/PlaneGratingDevAzMisVLS.rayx.csv | 68 --- .../output/PlaneGratingDeviationAz.rayui.csv | 21 - .../output/PlaneGratingDeviationAz.rayx.csv | 21 - .../PlaneGratingDeviationAzMis.rayui.csv | 21 - .../PlaneGratingDeviationAzMis.rayx.csv | 21 - .../PlaneGratingDeviationDefault.rayui.csv | 21 - .../PlaneGratingDeviationDefault.rayx.csv | 21 - .../output/PlaneGratingIncAzMis.rayui.csv | 21 - .../output/PlaneGratingIncAzMis.rayx.csv | 21 - .../tests/output/PlaneMirror.rayui.csv | 101 ----- .../tests/output/PlaneMirror.rayx.csv | 101 ----- .../tests/output/PlaneMirrorDef.rayui.csv | 21 - .../tests/output/PlaneMirrorDef.rayx.csv | 21 - .../tests/output/PlaneMirrorMis.rayui.csv | 21 - .../tests/output/PlaneMirrorMis.rayx.csv | 21 - .../output/PlaneMirror_refl_seeded.rayx.csv | 307 -------------- .../tests/output/PointSource_seeded.rayx.csv | 401 ------------------ .../ReflectionZonePlateAzim200.rayui.csv | 15 - .../ReflectionZonePlateAzim200.rayx.csv | 15 - .../ReflectionZonePlateDefault.rayui.csv | 3 - .../ReflectionZonePlateDefault.rayx.csv | 3 - .../ReflectionZonePlateDefault200.rayui.csv | 13 - .../ReflectionZonePlateDefault200.rayx.csv | 13 - ...lectionZonePlateDefault200Toroid.rayui.csv | 111 ----- ...flectionZonePlateDefault200Toroid.rayx.csv | 111 ----- .../output/ReflectionZonePlateMis.rayui.csv | 15 - .../output/ReflectionZonePlateMis.rayx.csv | 15 - .../output/SphereMirrorDefault.rayui.csv | 21 - .../tests/output/SphereMirrorDefault.rayx.csv | 21 - .../ellipsoid_ip_200mirrormis.rayui.csv | 201 --------- .../output/ellipsoid_ip_200mirrormis.rayx.csv | 201 --------- .../output/globalCoordinates_20rays.rayui.csv | 21 - .../output/globalCoordinates_20rays.rayx.csv | 21 - .../output/pm_ell_ip_200mirrormis.rayui.csv | 201 --------- .../output/pm_ell_ip_200mirrormis.rayx.csv | 201 --------- Intern/RAY-Core/tests/output/toroid.rayui.csv | 201 --------- Intern/RAY-Core/tests/output/toroid.rayx.csv | 201 --------- .../tests/output/toroid_swapped.rayui.csv | 169 -------- .../tests/output/toroid_swapped.rayx.csv | 169 -------- README.md | 2 +- docs/changes/lastChanges.md | 13 +- docs/changes/v0.16.0.md | 12 + docs/changes/v0.17.0.md | 9 + .../Tools => API}/How-to-use-Doxygen.md | 0 docs/src/Backend/Backend.md | 1 + docs/src/{Developer => Backend}/Developer.md | 0 .../Introduction/00-Introduction.md | 0 .../Introduction/01-How-to-Build.md | 5 +- .../02-Style-Guide-for-Programming-in-Ray.md | 0 ...section-in-the-case-of-quadric-surfaces.md | 0 .../Model/Efficiency.md | 0 .../src/{Developer => Backend}/Model/Model.md | 0 .../Model/Objects/Objects.md | 0 .../Model/Objects/RZP.md | 0 .../Model/PRNGs-on-the-GPU.md | 0 .../Model/Quad(ric)-function.md | 0 ...ansformation-between-coordinate-systems.md | 0 .../Tools/Code-Coverage.md | 0 .../{Developer => Backend}/Tools/Debugging.md | 0 .../Tools/How-to-use-our-formatter.md | 0 .../{Developer => Backend}/Tools/Testing.md | 0 .../src/{Developer => Backend}/Tools/Tools.md | 0 .../Vulkan/Vulkan-Beyond.md | 0 .../{Developer => Backend}/Vulkan/Vulkan.md | 0 docs/src/{App => Intro}/Getting-Started.md | 0 .../How-to-use-the-RAY-CLI.md} | 21 +- .../src/{App/App.md => Intro/Introduction.md} | 9 +- docs/src/{App => Intro}/Literature.md | 0 docs/src/README.md | 7 - docs/src/SUMMARY.md | 55 ++- 87 files changed, 71 insertions(+), 6396 deletions(-) delete mode 100644 Intern/RAY-Core/tests/output/BoringImagePlane.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/BoringImagePlane.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/Cone.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/Cone.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/CylinderDefault.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/CylinderDefault.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/Ellipsoid.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/Ellipsoid_DGIA.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/Ellipsoid_DGIA.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/Ellipsoid_MB.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/Ellipsoid_MB.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/Ellipsoid_PM.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/Ellipsoid_PM.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/MatrixSource_distr_seeded.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/MatrixSource_seeded.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneGratingDevAzMisVLS.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneGratingDevAzMisVLS.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneGratingDeviationAz.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneGratingDeviationAz.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneGratingDeviationAzMis.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneGratingDeviationAzMis.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneGratingDeviationDefault.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneGratingDeviationDefault.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneGratingIncAzMis.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneGratingIncAzMis.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneMirror.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneMirror.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneMirrorDef.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneMirrorDef.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneMirrorMis.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneMirrorMis.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/PlaneMirror_refl_seeded.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/PointSource_seeded.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/ReflectionZonePlateAzim200.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/ReflectionZonePlateAzim200.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/ReflectionZonePlateDefault.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/ReflectionZonePlateDefault.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/ReflectionZonePlateMis.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/ReflectionZonePlateMis.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/SphereMirrorDefault.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/SphereMirrorDefault.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/ellipsoid_ip_200mirrormis.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/ellipsoid_ip_200mirrormis.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/globalCoordinates_20rays.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/globalCoordinates_20rays.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/pm_ell_ip_200mirrormis.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/pm_ell_ip_200mirrormis.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/toroid.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/toroid.rayx.csv delete mode 100644 Intern/RAY-Core/tests/output/toroid_swapped.rayui.csv delete mode 100644 Intern/RAY-Core/tests/output/toroid_swapped.rayx.csv create mode 100644 docs/changes/v0.16.0.md create mode 100644 docs/changes/v0.17.0.md rename docs/src/{Developer/Tools => API}/How-to-use-Doxygen.md (100%) create mode 100644 docs/src/Backend/Backend.md rename docs/src/{Developer => Backend}/Developer.md (100%) rename docs/src/{Developer => Backend}/Introduction/00-Introduction.md (100%) rename docs/src/{Developer => Backend}/Introduction/01-How-to-Build.md (88%) rename docs/src/{Developer => Backend}/Introduction/02-Style-Guide-for-Programming-in-Ray.md (100%) rename docs/src/{Developer => Backend}/Model/Approximation-of-ray-object-intersection-in-the-case-of-quadric-surfaces.md (100%) rename docs/src/{Developer => Backend}/Model/Efficiency.md (100%) rename docs/src/{Developer => Backend}/Model/Model.md (100%) rename docs/src/{Developer => Backend}/Model/Objects/Objects.md (100%) rename docs/src/{Developer => Backend}/Model/Objects/RZP.md (100%) rename docs/src/{Developer => Backend}/Model/PRNGs-on-the-GPU.md (100%) rename docs/src/{Developer => Backend}/Model/Quad(ric)-function.md (100%) rename docs/src/{Developer => Backend}/Model/Transformation-between-coordinate-systems.md (100%) rename docs/src/{Developer => Backend}/Tools/Code-Coverage.md (100%) rename docs/src/{Developer => Backend}/Tools/Debugging.md (100%) rename docs/src/{Developer => Backend}/Tools/How-to-use-our-formatter.md (100%) rename docs/src/{Developer => Backend}/Tools/Testing.md (100%) rename docs/src/{Developer => Backend}/Tools/Tools.md (100%) rename docs/src/{Developer => Backend}/Vulkan/Vulkan-Beyond.md (100%) rename docs/src/{Developer => Backend}/Vulkan/Vulkan.md (100%) rename docs/src/{App => Intro}/Getting-Started.md (100%) rename docs/src/{App/How-to-use-the-TerminalApp.md => Intro/How-to-use-the-RAY-CLI.md} (70%) rename docs/src/{App/App.md => Intro/Introduction.md} (50%) rename docs/src/{App => Intro}/Literature.md (100%) diff --git a/.gitignore b/.gitignore index 1315203e9..b86c1ed41 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ bin/ bin-int/ build/ Intern/RayCore/doc/*/ +Intern/RayCore/tests/output/** out/ # Files diff --git a/Intern/RAY-Core/tests/output/BoringImagePlane.rayui.csv b/Intern/RAY-Core/tests/output/BoringImagePlane.rayui.csv deleted file mode 100644 index 26ef7b1b9..000000000 --- a/Intern/RAY-Core/tests/output/BoringImagePlane.rayui.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.5325000416666709757,0.48000010416668198454,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,0.00049999997916666701,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025000004166031398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-0.1775000015432099953,0.48000004861111600362,0.00000000000000000000,-1.0000000000000000000,-0.0001666666450617289,0.00049999997916666701,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,0.17750000154320999534,0.48000004861111600362,0.00000000000000000000,-1.0000000000000000000,0.00016666664506172898,0.00049999997916666701,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,0.53250004166667097571,0.48000010416668198454,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,0.00049999997916666701,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025000004166031398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-0.5325000416666709757,0.16000002237654600834,0.00000000000000000000,-1.0000000000000000000,-0.0004999999722222229,0.00016666666589506201,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-0.1775000015432099953,0.16000000385802498614,0.00000000000000000000,-1.0000000000000000000,-0.0001666666635802470,0.00016666666589506201,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002777777831397540,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,0.17750000154320999534,0.16000000385802498614,0.00000000000000000000,-1.0000000000000000000,0.00016666666358024700,0.00016666666589506201,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002777777831397540,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,0.53250004166667097571,0.16000002237654600834,0.00000000000000000000,-1.0000000000000000000,0.00049999997222222297,0.00016666666589506201,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-0.5325000416666709757,-0.1600000223765460083,0.00000000000000000000,-1.0000000000000000000,-0.0004999999722222229,-0.0001666666658950620,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-0.1775000015432099953,-0.1600000038580249861,0.00000000000000000000,-1.0000000000000000000,-0.0001666666635802470,-0.0001666666658950620,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002777777831397540,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,0.17750000154320999534,-0.1600000038580249861,0.00000000000000000000,-1.0000000000000000000,0.00016666666358024700,-0.0001666666658950620,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002777777831397540,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,0.53250004166667097571,-0.1600000223765460083,0.00000000000000000000,-1.0000000000000000000,0.00049999997222222297,-0.0001666666658950620,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-0.5325000416666709757,-0.4800001041666819845,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,-0.0004999999791666670,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025000004166031398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-0.1775000015432099953,-0.4800000486111160036,0.00000000000000000000,-1.0000000000000000000,-0.0001666666450617289,-0.0004999999791666670,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,0.17750000154320999534,-0.4800000486111160036,0.00000000000000000000,-1.0000000000000000000,0.00016666664506172898,-0.0004999999791666670,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,0.53250004166667097571,-0.4800001041666819845,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,-0.0004999999791666670,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025000004166031398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-0.5325000416666709757,0.48000010416668198454,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,0.00049999997916666701,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025000004166031398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-0.1775000015432099953,0.48000004861111600362,0.00000000000000000000,-1.0000000000000000000,-0.0001666666450617289,0.00049999997916666701,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,0.17750000154320999534,0.48000004861111600362,0.00000000000000000000,-1.0000000000000000000,0.00016666664506172898,0.00049999997916666701,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013888890384805601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,0.53250004166667097571,0.48000010416668198454,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,0.00049999997916666701,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025000004166031398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/BoringImagePlane.rayx.csv b/Intern/RAY-Core/tests/output/BoringImagePlane.rayx.csv deleted file mode 100644 index 22345043f..000000000 --- a/Intern/RAY-Core/tests/output/BoringImagePlane.rayx.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.5325000416666707536,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -1 ,0 ,-0.1775000015432098843,0.48000004861111589260,0.00000000000000000000,1.00000000000000000000,-0.0001666666450617289,0.00049999997916666690,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -2 ,0 ,0.17750000154320982881,0.48000004861111589260,0.00000000000000000000,1.00000000000000000000,0.00016666664506172887,0.00049999997916666690,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -3 ,0 ,0.53250004166667075367,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -4 ,0 ,-0.5325000416666707536,0.16000002237654559200,0.00000000000000000000,1.00000000000000000000,-0.0004999999722222227,0.00016666666589506174,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -5 ,0 ,-0.1775000015432099120,0.16000000385802476410,0.00000000000000000000,1.00000000000000000000,-0.0001666666635802469,0.00016666666589506174,0.99999997222222258841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002777777820028,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -6 ,0 ,0.17750000154320985656,0.16000000385802476410,0.00000000000000000000,1.00000000000000000000,0.00016666666358024689,0.00016666666589506174,0.99999997222222258841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002777777820028,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -7 ,0 ,0.53250004166667075367,0.16000002237654559200,0.00000000000000000000,1.00000000000000000000,0.00049999997222222275,0.00016666666589506174,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -8 ,0 ,-0.5325000416666707536,-0.1600000223765455364,0.00000000000000000000,1.00000000000000000000,-0.0004999999722222227,-0.0001666666658950616,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -9 ,0 ,-0.1775000015432099120,-0.1600000038580247085,0.00000000000000000000,1.00000000000000000000,-0.0001666666635802469,-0.0001666666658950616,0.99999997222222258841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002777777820028,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -10 ,0 ,0.17750000154320985656,-0.1600000038580247085,0.00000000000000000000,1.00000000000000000000,0.00016666666358024689,-0.0001666666658950616,0.99999997222222258841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002777777820028,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -11 ,0 ,0.53250004166667075367,-0.1600000223765455364,0.00000000000000000000,1.00000000000000000000,0.00049999997222222275,-0.0001666666658950616,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -12 ,0 ,-0.5325000416666707536,-0.4800001041666824841,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,-0.0004999999791666669,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -13 ,0 ,-0.1775000015432098843,-0.4800000486111158926,0.00000000000000000000,1.00000000000000000000,-0.0001666666450617289,-0.0004999999791666669,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -14 ,0 ,0.17750000154320982881,-0.4800000486111158926,0.00000000000000000000,1.00000000000000000000,0.00016666664506172887,-0.0004999999791666669,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -15 ,0 ,0.53250004166667075367,-0.4800001041666824841,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,-0.0004999999791666669,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -16 ,0 ,-0.5325000416666707536,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -17 ,0 ,-0.1775000015432098843,0.48000004861111589260,0.00000000000000000000,1.00000000000000000000,-0.0001666666450617289,0.00049999997916666690,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -18 ,0 ,0.17750000154320982881,0.48000004861111589260,0.00000000000000000000,1.00000000000000000000,0.00016666664506172887,0.00049999997916666690,0.99999986111111560660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013888890384805,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -19 ,0 ,0.53250004166667075367,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 diff --git a/Intern/RAY-Core/tests/output/Cone.rayui.csv b/Intern/RAY-Core/tests/output/Cone.rayui.csv deleted file mode 100644 index 293721c45..000000000 --- a/Intern/RAY-Core/tests/output/Cone.rayui.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.2713421433857000075,-5.3906833182254096925,0.00000000000000000000,-1.0000000000000000000,0.00491325571278591975,-0.0004880253954973319,0.99998781080046894587,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065689696168647103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-0.2297485318659359954,-5.4160469562455801906,0.00000000000000000000,-1.0000000000000000000,0.00415751684694948969,-0.0004914247575058540,0.99999123673929002364,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086026403903360904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,-0.1880792775549419981,-5.4371860744762496864,0.00000000000000000000,-1.0000000000000000000,0.00340170467656383986,-0.0004942585910493180,0.99999409203941702628,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103009481438220995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,-0.1463481118585069906,-5.4540991717419196049,0.00000000000000000000,-1.0000000000000000000,0.00264583252093793979,-0.0004965263336367540,0.99999637650937100996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00116619400432683008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-0.1045687792732649945,-5.4667850465250396041,0.00000000000000000000,-1.0000000000000000000,0.00188991370465533994,-0.0004982275349284530,0.99999808999593198244,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00126840527320836999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-0.0627550344848906010,-5.4752427973491801793,0.00000000000000000000,-1.0000000000000000000,0.00113396155640197999,-0.0004993618569671119,0.99999923238416699167,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00133661131769713002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,-0.0209206394608320994,-5.4794718230719796636,0.00000000000000000000,-1.0000000000000000000,0.00037798940779405998,-0.0004999290743512300,0.99999980359744500280,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137073390283148997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,0.02092063946083209946,-5.4794718230719796636,0.00000000000000000000,-1.0000000000000000000,-0.0003779894077940599,-0.0004999290743512300,0.99999980359744500280,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137073390283148997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,0.06275503448489060109,-5.4752427973491801793,0.00000000000000000000,-1.0000000000000000000,-0.0011339615564019799,-0.0004993618569671119,0.99999923238416699167,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00133661131769713002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,0.10456877927326499455,-5.4667850465250396041,0.00000000000000000000,-1.0000000000000000000,-0.0018899137046553499,-0.0004982275349284530,0.99999808999593198244,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00126840527320836999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,0.14634811185850699066,-5.4540991717419196049,0.00000000000000000000,-1.0000000000000000000,-0.0026458325209379397,-0.0004965263336367540,0.99999637650937100996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00116619400432683008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,0.18807927755494199817,-5.4371860744762496864,0.00000000000000000000,-1.0000000000000000000,-0.0034017046765638398,-0.0004942585910493180,0.99999409203941702628,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103009481438220995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,0.22974853186593599541,-5.4160469562455801906,0.00000000000000000000,-1.0000000000000000000,-0.0041575168469494896,-0.0004914247575058540,0.99999123673929002364,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086026403903360904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,0.27134214338570000757,-5.3906833182254096925,0.00000000000000000000,-1.0000000000000000000,-0.0049132557127859197,-0.0004880253954973319,0.99998781080046894587,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065689696168647103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,-0.2713173199352409969,-4.5480444805280297870,0.00000000000000000000,-1.0000000000000000000,0.00488906916922249041,-0.0004111803974201910,0.99998796389423605379,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027674560499235700,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,-0.2297260468793849985,-4.5732837071992999966,0.00000000000000000000,-1.0000000000000000000,0.00413704909813638992,-0.0004145576167259860,0.99999135644601500061,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047717281836412401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-0.1880598708288460096,-4.5943191089689303652,0.00000000000000000000,-1.0000000000000000000,0.00338495682823128016,-0.0004173729791150940,0.99999418391661998306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00064454846153694201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-0.1463323891059880033,-4.6111492066487995700,0.00000000000000000000,-1.0000000000000000000,0.00263280547799759007,-0.0004196259323969440,0.99999644611838101049,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00077868010976089895,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,-0.1045572118691820012,-4.6237728163264497638,0.00000000000000000000,-1.0000000000000000000,0.00188060817106636005,-0.0004213160344820610,0.99999814290112898351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087941371634769904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,-0.0627479592674298064,-4.6321890497369402339,0.00000000000000000000,-1.0000000000000000000,0.00112837803506676999,-0.0004224429536062449,0.99999927415221701032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00094663369816316801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -20 ,0 ,-0.0209182585896710987,-4.6363973145492201055,0.00000000000000000000,-1.0000000000000000000,0.00037612820048386701,-0.0004230064684998810,0.99999983979653894738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098026296598163796,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -21 ,0 ,0.02091825858967109874,-4.6363973145492201055,0.00000000000000000000,-1.0000000000000000000,-0.0003761282004838670,-0.0004230064684998810,0.99999983979653894738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098026296598163796,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -22 ,0 ,0.06274795926742980645,-4.6321890497369402339,0.00000000000000000000,-1.0000000000000000000,-0.0011283780350667699,-0.0004224429536062449,0.99999927415221701032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00094663369816316801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -23 ,0 ,0.10455721186918200127,-4.6237728163264497638,0.00000000000000000000,-1.0000000000000000000,-0.0018806081710663600,-0.0004213160344820610,0.99999814290112898351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087941371634769904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -24 ,0 ,0.14633238910598800330,-4.6111492066487995700,0.00000000000000000000,-1.0000000000000000000,-0.0026328054779975900,-0.0004196259323969440,0.99999644611838101049,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00077868010976089895,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -25 ,0 ,0.18805987082884600969,-4.5943191089689303652,0.00000000000000000000,-1.0000000000000000000,-0.0033849568282312801,-0.0004173729791150940,0.99999418391661998306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00064454846153694201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -26 ,0 ,0.22972604687938399936,-4.5732837071992999966,0.00000000000000000000,-1.0000000000000000000,-0.0041370490981363899,-0.0004145576167259860,0.99999135644601500061,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047717281836412401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -27 ,0 ,0.27131731993524099699,-4.5480444805280297870,0.00000000000000000000,-1.0000000000000000000,-0.0048890691692224904,-0.0004111803974201910,0.99998796389423605379,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027674560499235700,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -28 ,0 ,-0.2712924751998960215,-3.7054014180625198804,0.00000000000000000000,-1.0000000000000000000,0.00486511883767330038,-0.0003343344475815470,0.99998810934889204027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000384181510071357,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -29 ,0 ,-0.2297035655047729996,-3.7305174476678097938,0.00000000000000000000,-1.0000000000000000000,0.00411678126465352990,-0.0003376897930688899,0.99999146900242197322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015909776959688299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -30 ,0 ,-0.1880404818117349940,-3.7514501456620301667,0.00000000000000000000,-1.0000000000000000000,0.00336837257673933999,-0.0003404869088144690,0.99999426905100297080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00032404219120962801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -31 ,0 ,-0.1463166893130140033,-3.7681980544187898551,0.00000000000000000000,-1.0000000000000000000,0.00261990569556062998,-0.0003427252526881640,0.99999650931068095882,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045622549475865498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -32 ,0 ,-0.1045456657881940060,-3.7807600072867901808,0.00000000000000000000,-1.0000000000000000000,0.00187139354775790007,-0.0003444043906581370,0.99999818963426401197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00055549587762015995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -33 ,0 ,-0.0627408988138807022,-3.7891351289577701599,0.00000000000000000000,-1.0000000000000000000,0.00112284906386872994,-0.0003455239970092949,0.99999930991133501034,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00062173943899779303,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -34 ,0 ,-0.0209158829682253993,-3.7933228357389499052,0.00000000000000000000,-1.0000000000000000000,0.00037428517721424298,-0.0003460838545071569,0.99999987006827695257,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065488021255077899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -35 ,0 ,0.02091588296822539938,-3.7933228357389499052,0.00000000000000000000,-1.0000000000000000000,-0.0003742851772142429,-0.0003460838545071569,0.99999987006827695257,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065488021255077899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -36 ,0 ,0.06274089881388070222,-3.7891351289577701599,0.00000000000000000000,-1.0000000000000000000,-0.0011228490638687299,-0.0003455239970092949,0.99999930991133501034,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00062173943899779303,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -37 ,0 ,0.10454566578819400601,-3.7807600072867901808,0.00000000000000000000,-1.0000000000000000000,-0.0018713935477579000,-0.0003444043906581370,0.99999818963426401197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00055549587762015995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -38 ,0 ,0.14631668931301400338,-3.7681980544187898551,0.00000000000000000000,-1.0000000000000000000,-0.0026199056955606299,-0.0003427252526881640,0.99999650931068095882,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045622549475865498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -39 ,0 ,0.18804048181173499409,-3.7514501456620301667,0.00000000000000000000,-1.0000000000000000000,-0.0033683725767393399,-0.0003404869088144690,0.99999426905100297080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00032404219120962801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -40 ,0 ,0.22970356550477299961,-3.7305174476678097938,0.00000000000000000000,-1.0000000000000000000,-0.0041167812646535299,-0.0003376897930688899,0.99999146900242197322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015909776959688299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -41 ,0 ,0.27129247519989602155,-3.7054014180625198804,0.00000000000000000000,-1.0000000000000000000,-0.0048651188376733003,-0.0003343344475815470,0.99998810934889204027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000384181510071357,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -42 ,0 ,-0.2712676099223059744,-2.8627541831780600745,0.00000000000000000000,-1.0000000000000000000,0.00484140127465699978,-0.0002574875629701989,0.99998824719786194581,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002885928486193730,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -43 ,0 ,-0.2296810879515449876,-2.8877482123194297969,0.00000000000000000000,-1.0000000000000000000,0.00409671043172186999,-0.0002608212988482460,0.99999157443244901521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000939600632818838,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -44 ,0 ,-0.1880211103889939949,-2.9085792044711897830,0.00000000000000000000,-1.0000000000000000000,0.00335194953654305988,-0.0002636003885524429,0.99999434745859394624,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006857670393856099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -45 ,0 ,-0.1463010122123319933,-2.9252457231517201563,0.00000000000000000000,-1.0000000000000000000,0.00260713131775150994,-0.0002658242997800599,0.99999656609597098455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019883057677816401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -46 ,0 ,-0.1045341407439200065,-2.9377466186387097835,0.00000000000000000000,-1.0000000000000000000,0.00186226850886256995,-0.0002674926063704060,0.99999823020028699716,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029665196052519599,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -47 ,0 ,-0.0627338529142027062,-2.9460810283274998511,0.00000000000000000000,-1.0000000000000000000,0.00111737384719054998,-0.0002686049885168850,0.99999933966330500911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036192860341088800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -48 ,0 ,-0.0209135125201104013,-2.9502483769987701833,0.00000000000000000000,-1.0000000000000000000,0.00037246007276328700,-0.0002691612329265289,0.99999989441285697111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039458564299366100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -49 ,0 ,0.02091351252011040134,-2.9502483769987701833,0.00000000000000000000,-1.0000000000000000000,-0.0003724600727632870,-0.0002691612329265289,0.99999989441285697111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039458564299366100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -50 ,0 ,0.06273385291420270626,-2.9460810283274998511,0.00000000000000000000,-1.0000000000000000000,-0.0011173738471905499,-0.0002686049885168850,0.99999933966330500911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036192860341088800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -51 ,0 ,0.10453414074392000654,-2.9377466186387097835,0.00000000000000000000,-1.0000000000000000000,-0.0018622685088625699,-0.0002674926063704060,0.99999823020028699716,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029665196052519599,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -52 ,0 ,0.14630101221233199337,-2.9252457231517201563,0.00000000000000000000,-1.0000000000000000000,-0.0026071313177515099,-0.0002658242997800599,0.99999656609597098455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019883057677816401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -53 ,0 ,0.18802111038899399497,-2.9085792044711897830,0.00000000000000000000,-1.0000000000000000000,-0.0033519495365430598,-0.0002636003885524429,0.99999434745859394624,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006857670393856099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -54 ,0 ,0.22968108795154498769,-2.8877482123194297969,0.00000000000000000000,-1.0000000000000000000,-0.0040967104317218699,-0.0002608212988482460,0.99999157443244901521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000939600632818838,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -55 ,0 ,0.27126760992230597446,-2.8627541831780600745,0.00000000000000000000,-1.0000000000000000000,-0.0048414012746569997,-0.0002574875629701989,0.99998824719786194581,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002885928486193730,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -56 ,0 ,-0.2712427248224340003,-2.0201028270173000400,0.00000000000000000000,-1.0000000000000000000,0.00481791310329167041,-0.0001806397602040490,0.99998837747376201345,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004737770526617169,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -57 ,0 ,-0.2296586144200430112,-2.0449760349563801398,0.00000000000000000000,-1.0000000000000000000,0.00407683374094660981,-0.0001839521461106659,0.99999167275945699540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002819996491325579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -58 ,0 ,-0.1880017564454619927,-2.0657063047305399550,0.00000000000000000000,-1.0000000000000000000,0.00333568536825114021,-0.0001867134265548800,0.99999441915503695099,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001218473146309409,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -59 ,0 ,-0.1462853575405599904,-2.0822922205958498409,0.00000000000000000000,-1.0000000000000000000,0.00259448052460507002,-0.0001889230788341970,0.99999661648371496180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000649577270905866,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -60 ,0 ,-0.1045226364550499997,-2.0947326494330300583,0.00000000000000000000,-1.0000000000000000000,0.00185323175417022008,-0.0001905806844772760,0.99999826460402796435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010288217492870900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -61 ,0 ,-0.0627268213623173032,-2.1030267410960501450,0.00000000000000000000,-1.0000000000000000000,0.00111195160481214992,-0.0001916859294498200,0.99999936340986395055,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016720126120617400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -62 ,0 ,-0.0209111471704164011,-2.1071739286770099219,0.00000000000000000000,-1.0000000000000000000,0.00037065262704196301,-0.0001922386043095859,0.99999991283047096057,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019937925674184999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -63 ,0 ,0.02091114717041640119,-2.1071739286770099219,0.00000000000000000000,-1.0000000000000000000,-0.0003706526270419630,-0.0001922386043095859,0.99999991283047096057,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019937925674184999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -64 ,0 ,0.06272682136231730321,-2.1030267410960501450,0.00000000000000000000,-1.0000000000000000000,-0.0011119516048121499,-0.0001916859294498200,0.99999936340986395055,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016720126120617400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -65 ,0 ,0.10452263645504999978,-2.0947326494330300583,0.00000000000000000000,-1.0000000000000000000,-0.0018532317541702200,-0.0001905806844772760,0.99999826460402796435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010288217492870900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -66 ,0 ,0.14628535754055999040,-2.0822922205958498409,0.00000000000000000000,-1.0000000000000000000,-0.0025944805246050700,-0.0001889230788341970,0.99999661648371496180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000649577270905866,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -67 ,0 ,0.18800175644546199271,-2.0657063047305399550,0.00000000000000000000,-1.0000000000000000000,-0.0033356853682511402,-0.0001867134265548800,0.99999441915503695099,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001218473146309409,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -68 ,0 ,0.22965861442004301129,-2.0449760349563801398,0.00000000000000000000,-1.0000000000000000000,-0.0040768337409466098,-0.0001839521461106659,0.99999167275945699540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002819996491325579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -69 ,0 ,0.27124272482243400039,-2.0201028270173000400,0.00000000000000000000,-1.0000000000000000000,-0.0048179131032916704,-0.0001806397602040490,0.99998837747376201345,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004737770526617169,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -70 ,0 ,-0.2712178205982960221,-1.1774473995449399321,0.00000000000000000000,-1.0000000000000000000,0.00479465101169264037,-0.0001037910555394260,0.99998850020842400265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005939693492109650,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -71 ,0 ,-0.2296361451018469890,-1.2022009485373299497,0.00000000000000000000,-1.0000000000000000000,0.00405714838896050963,-0.0001070823466441379,0.99999176400624401050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004050199751191029,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -72 ,0 ,-0.1879824198654999889,-1.2228314652100100712,0.00000000000000000000,-1.0000000000000000000,0.00331957777751519002,-0.0001098260308738660,0.99999448415559899494,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002472291829462849,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -73 ,0 ,-0.1462697250381199964,-1.2393375541580000653,0.00000000000000000000,-1.0000000000000000000,0.00258195153120223007,-0.0001120215949065029,0.99999666048314994615,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001207785090855400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -74 ,0 ,-0.1045111526452270067,-1.2517180985467399878,0.00000000000000000000,-1.0000000000000000000,0.00184428200851044000,-0.0001136686277833370,0.99999829285020103153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000258132693033986,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -75 ,0 ,-0.0627198039560147996,-1.2599722604518699409,0.00000000000000000000,-1.0000000000000000000,0.00110658157153998995,-0.0001147668211096960,0.99999938115270903260,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00003755749060019299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -76 ,0 ,-0.0209087868456717014,-1.2640994811153400956,0.00000000000000000000,-1.0000000000000000000,0.00036886258497053898,-0.0001153159692054429,0.99999992532130699274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006926105538695989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -77 ,0 ,0.02090878684567170145,-1.2640994811153400956,0.00000000000000000000,-1.0000000000000000000,-0.0003688625849705389,-0.0001153159692054429,0.99999992532130699274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006926105538695989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -78 ,0 ,0.06271980395601479962,-1.2599722604518699409,0.00000000000000000000,-1.0000000000000000000,-0.0011065815715399899,-0.0001147668211096960,0.99999938115270903260,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00003755749060019299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -79 ,0 ,0.10451115264522700676,-1.2517180985467399878,0.00000000000000000000,-1.0000000000000000000,-0.0018442820085104400,-0.0001136686277833370,0.99999829285020103153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000258132693033986,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -80 ,0 ,0.14626972503811999648,-1.2393375541580000653,0.00000000000000000000,-1.0000000000000000000,-0.0025819515312022300,-0.0001120215949065029,0.99999666048314994615,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001207785090855400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -81 ,0 ,0.18798241986549998894,-1.2228314652100100712,0.00000000000000000000,-1.0000000000000000000,-0.0033195777775151900,-0.0001098260308738660,0.99999448415559899494,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002472291829462849,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -82 ,0 ,0.22963614510184698902,-1.2022009485373299497,0.00000000000000000000,-1.0000000000000000000,-0.0040571483889605096,-0.0001070823466441379,0.99999176400624401050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004050199751191029,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -83 ,0 ,0.27121782059829602218,-1.1774473995449399321,0.00000000000000000000,-1.0000000000000000000,-0.0047946510116926403,-0.0001037910555394260,0.99998850020842400265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005939693492109650,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -84 ,0 ,-0.2711928979266799988,-0.3347879495804689797,0.00000000000000000000,-1.0000000000000000000,0.00477161175141654035,-0.0000269414648814692,0.99998861543292094644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006491683611784539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -85 ,0 ,-0.2296136801801050009,-0.3594229852019660276,0.00000000000000000000,-1.0000000000000000000,0.00403765162610632017,-0.0000302119119839904,0.99999184819506703458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004630200511428480,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -86 ,0 ,-0.1879631005330739956,-0.3799547041296549854,0.00000000000000000000,-1.0000000000000000000,0.00330362451395099007,-0.0000329382093924302,0.99999454247518004823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003075682398048230,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -87 ,0 ,-0.1462541144491729949,-0.3963817309116600129,0.00000000000000000000,-1.0000000000000000000,0.00256954258683050017,-0.0000351198529504603,0.99999669810329394614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001829918670637200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -88 ,0 ,-0.1044996890429390062,-0.4087029646878250210,0.00000000000000000000,-1.0000000000000000000,0.00183541802115267998,-0.0000367564390406361,0.99999831494340596371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000894341751518367,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -89 ,0 ,-0.0627128004968613012,-0.4169175795216020219,0.00000000000000000000,-1.0000000000000000000,0.00110126299684704998,-0.0000378476647787672,0.99999939289349804028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000270026455382321,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -90 ,0 ,-0.0209064314738099006,-0.4210250246503769999,0.00000000000000000000,-1.0000000000000000000,0.00036708969635856599,-0.0000383933281612180,0.99999993188555102996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000423104233959748,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -91 ,0 ,0.02090643147380990066,-0.4210250246503769999,0.00000000000000000000,-1.0000000000000000000,-0.0003670896963585659,-0.0000383933281612180,0.99999993188555102996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000423104233959748,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -92 ,0 ,0.06271280049686130120,-0.4169175795216020219,0.00000000000000000000,-1.0000000000000000000,-0.0011012629968470499,-0.0000378476647787672,0.99999939289349804028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000270026455382321,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -93 ,0 ,0.10449968904293900628,-0.4087029646878250210,0.00000000000000000000,-1.0000000000000000000,-0.0018354180211526799,-0.0000367564390406361,0.99999831494340596371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000894341751518367,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -94 ,0 ,0.14625411444917299497,-0.3963817309116600129,0.00000000000000000000,-1.0000000000000000000,-0.0025695425868305001,-0.0000351198529504603,0.99999669810329394614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001829918670637200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -95 ,0 ,0.18796310053307399567,-0.3799547041296549854,0.00000000000000000000,-1.0000000000000000000,-0.0033036245139509900,-0.0000329382093924302,0.99999454247518004823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003075682398048230,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -96 ,0 ,0.22961368018010500091,-0.3594229852019660276,0.00000000000000000000,-1.0000000000000000000,-0.0040376516261063201,-0.0000302119119839904,0.99999184819506703458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004630200511428480,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -97 ,0 ,0.27119289792667999883,-0.3347879495804689797,0.00000000000000000000,-1.0000000000000000000,-0.0047716117514165403,-0.0000269414648814692,0.99998861543292094644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006491683611784539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -98 ,0 ,-0.2711679574638520273,0.50787547518002396085,0.00000000000000000000,-1.0000000000000000000,0.00474879213594945042,0.00004990899620654910,0.99998872317758702443,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006393727268232399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -99 ,0 ,-0.2295912198298420137,0.48335782371797297862,0.00000000000000000000,-1.0000000000000000000,0.00401834075515646992,0.00004665914657953070,0.99999192534765002360,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004559988999517369,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -100 ,0 ,-0.1879437983318280047,0.46292396083067399725,0.00000000000000000000,-1.0000000000000000000,0.00328782337009045008,0.00004395003017110270,0.99999459412832902849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003028638275281990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -101 ,0 ,-0.1462385255215699897,0.44657524239617601979,0.00000000000000000000,-1.0000000000000000000,0.00255725197416844986,0.00004178214218000800,0.99999672935294803277,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001801439067321550,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -102 ,0 ,-0.1044882453814200001,0.43431275360329402168,0.00000000000000000000,-1.0000000000000000000,0.00182663856522347002,0.00004015587904954150,0.99999833088813594450,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000879803357065612,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -103 ,0 ,-0.0627058107901165978,0.42613730862812798649,0.00000000000000000000,-1.0000000000000000000,0.00109599514452313000,0.00003907153827845120,0.99999939863384801341,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000264790722894759,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -104 ,0 ,-0.0209040809841346993,0.42204945039040897558,0.00000000000000000000,-1.0000000000000000000,0.00036533371578828299,0.00003852931827802440,0.99999993252338104099,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000428922874107229,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -105 ,0 ,0.02090408098413469931,0.42204945039040897558,0.00000000000000000000,-1.0000000000000000000,-0.0003653337157882829,0.00003852931827802440,0.99999993252338104099,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000428922874107229,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -106 ,0 ,0.06270581079011659786,0.42613730862812798649,0.00000000000000000000,-1.0000000000000000000,-0.0010959951445231300,0.00003907153827845120,0.99999939863384801341,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000264790722894759,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -107 ,0 ,0.10448824538142000017,0.43431275360329402168,0.00000000000000000000,-1.0000000000000000000,-0.0018266385652234700,0.00004015587904954150,0.99999833088813594450,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000879803357065612,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -108 ,0 ,0.14623852552156998974,0.44657524239617601979,0.00000000000000000000,-1.0000000000000000000,-0.0025572519741684498,0.00004178214218000800,0.99999672935294803277,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001801439067321550,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -109 ,0 ,0.18794379833182800476,0.46292396083067399725,0.00000000000000000000,-1.0000000000000000000,-0.0032878233700904500,0.00004395003017110270,0.99999459412832902849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003028638275281990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -110 ,0 ,0.22959121982984201371,0.48335782371797297862,0.00000000000000000000,-1.0000000000000000000,-0.0040183407551564699,0.00004665914657953070,0.99999192534765002360,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004559988999517369,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -111 ,0 ,0.27116795746385202736,0.50787547518002396085,0.00000000000000000000,-1.0000000000000000000,-0.0047487921359494504,0.00004990899620654910,0.99998872317758702443,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006393727268232399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -112 ,0 ,-0.2711429998461939994,1.35054282813393000672,0.00000000000000000000,-1.0000000000000000000,0.00472618903923838987,0.00012676031249386800,0.99998882347203699172,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005645811100976060,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -113 ,0 ,-0.2295687642182659971,1.32614144767228991916,0.00000000000000000000,-1.0000000000000000000,0.00399921313006967003,0.00012353081799476600,0.99999199548520201208,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003839555631657279,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -114 ,0 ,-0.1879245131451439954,1.30580451251570006654,0.00000000000000000000,-1.0000000000000000000,0.00327217218036350999,0.00012083868025844500,0.99999463912924801967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002331153031036589,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -115 ,0 ,-0.1462229580067810064,1.28953335933646995314,0.00000000000000000000,-1.0000000000000000000,0.00254507800849345993,0.00011868438572820700,0.99999675424070599838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001122342340522659,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -116 ,0 ,-0.1044768213985420024,1.27732905794858009329,0.00000000000000000000,-1.0000000000000000000,0.00181794243714036006,0.00011706832383562300,0.99999834068877502257,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000214515550851501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -117 ,0 ,-0.0626988346446438055,1.26919241098962998215,0.00000000000000000000,-1.0000000000000000000,0.00109077729233507999,0.00011599078681567800,0.99999939837533702302,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00003912828117336179,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -118 ,0 ,-0.0209017353072889003,1.26512395368469010570,0.00000000000000000000,-1.0000000000000000000,0.00036359440250136000,0.00011545196956924699,0.99999992723497399538,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006943561697880799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -119 ,0 ,0.02090173530728890033,1.26512395368469010570,0.00000000000000000000,-1.0000000000000000000,-0.0003635944025013600,0.00011545196956924699,0.99999992723497399538,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006943561697880799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -120 ,0 ,0.06269883464464380551,1.26919241098962998215,0.00000000000000000000,-1.0000000000000000000,-0.0010907772923350799,0.00011599078681567800,0.99999939837533702302,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00003912828117336179,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -121 ,0 ,0.10447682139854200245,1.27732905794858009329,0.00000000000000000000,-1.0000000000000000000,-0.0018179424371403600,0.00011706832383562300,0.99999834068877502257,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000214515550851501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -122 ,0 ,0.14622295800678100641,1.28953335933646995314,0.00000000000000000000,-1.0000000000000000000,-0.0025450780084934599,0.00011868438572820700,0.99999675424070599838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001122342340522659,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -123 ,0 ,0.18792451314514399540,1.30580451251570006654,0.00000000000000000000,-1.0000000000000000000,-0.0032721721803635099,0.00012083868025844500,0.99999463912924801967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002331153031036589,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -124 ,0 ,0.22956876421826599710,1.32614144767228991916,0.00000000000000000000,-1.0000000000000000000,-0.0039992131300696700,0.00012353081799476600,0.99999199548520201208,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003839555631657279,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -125 ,0 ,0.27114299984619399941,1.35054282813393000672,0.00000000000000000000,-1.0000000000000000000,-0.0047261890392383898,0.00012676031249386800,0.99998882347203699172,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005645811100976060,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -126 ,0 ,-0.2711180256908879981,2.19321406374711003195,0.00000000000000000000,-1.0000000000000000000,0.00470379939426427036,0.00020361246907329999,0.99998891634518705107,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004247921996238799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -127 ,0 ,-0.2295463135050559988,2.16892785687839984021,0.00000000000000000000,-1.0000000000000000000,0.00398026615478244000,0.00020040309144292399,0.99999205862843598691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002468890925229059,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -128 ,0 ,-0.1879052448562139876,2.14868693428402002254,0.00000000000000000000,-1.0000000000000000000,0.00325666882010882015,0.00019772773346723998,0.99999467749180503961,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000983220309080933,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -129 ,0 ,-0.1462074116598489903,2.13249261379149990247,0.00000000000000000000,-1.0000000000000000000,0.00253301903691187987,0.00019558687303167200,0.99999677277495901961,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002073753603326620,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -130 ,0 ,-0.1044654168367190050,2.12034595012866988739,0.00000000000000000000,-1.0000000000000000000,0.00180932845606178991,0.00019398089271394100,0.99999834434960499507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011015236941602799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -131 ,0 ,-0.0626918718728273066,2.11224773461242021355,0.00000000000000000000,-1.0000000000000000000,0.00108560873169665991,0.00019291007960420299,0.99999939211950694684,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016981949113414901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -132 ,0 ,-0.0208993943752225005,2.10819849491642985483,0.00000000000000000000,-1.0000000000000000000,0.00036187152028883598,0.00019237462517107700,0.99999991602049997929,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019967022285527499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -133 ,0 ,0.02089939437522250059,2.10819849491642985483,0.00000000000000000000,-1.0000000000000000000,-0.0003618715202888359,0.00019237462517107700,0.99999991602049997929,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019967022285527499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -134 ,0 ,0.06269187187282730666,2.11224773461242021355,0.00000000000000000000,-1.0000000000000000000,-0.0010856087316966599,0.00019291007960420299,0.99999939211950694684,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016981949113414901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -135 ,0 ,0.10446541683671800582,2.12034595012866988739,0.00000000000000000000,-1.0000000000000000000,-0.0018093284560617899,0.00019398089271394100,0.99999834434960499507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011015236941602799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -136 ,0 ,0.14620741165984899034,2.13249261379149990247,0.00000000000000000000,-1.0000000000000000000,-0.0025330190369118798,0.00019558687303167200,0.99999677277495901961,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002073753603326620,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -137 ,0 ,0.18790524485621398764,2.14868693428402002254,0.00000000000000000000,-1.0000000000000000000,-0.0032566688201088201,0.00019772773346723998,0.99999467749180503961,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000983220309080933,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -138 ,0 ,0.22954631350505599884,2.16892785687839984021,0.00000000000000000000,-1.0000000000000000000,-0.0039802661547824504,0.00020040309144292399,0.99999205862843598691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002468890925229059,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -139 ,0 ,0.27111802569088799819,2.19321406374711003195,0.00000000000000000000,-1.0000000000000000000,-0.0047037993942642703,0.00020361246907329999,0.99998891634518705107,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004247921996238799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -140 ,0 ,-0.2710930355964960014,3.03588913752949984825,0.00000000000000000000,-1.0000000000000000000,0.00468162019165505993,0.00028046545135307398,0.99998900182527594715,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002200047035785249,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -141 ,0 ,-0.2295238678426380074,3.01171702230056981264,0.00000000000000000000,-1.0000000000000000000,0.00396149728203482043,0.00027727595633064700,0.99999211479757599274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000447985659093320,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -142 ,0 ,-0.1878859933480930000,2.99157120999337999833,0.00000000000000000000,-1.0000000000000000000,0.00324131120461245000,0.00027461718254653800,0.99999470922954303286,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010151661115287400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -143 ,0 ,-0.1461918862393200013,2.97545299994443990243,0.00000000000000000000,-1.0000000000000000000,0.00252107343761097998,0.00027248959951994800,0.99999678496390198567,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021877178107843100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -144 ,0 ,-0.1044540314428040045,2.96336343207768004859,0.00000000000000000000,-1.0000000000000000000,0.00180079546335260996,0.00027089358312817901,0.99999834187480796110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030683163026878901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -145 ,0 ,-0.0626849222904938968,2.95530328659995999984,0.00000000000000000000,-1.0000000000000000000,0.00108048876734778004,0.00026982941543177201,0.99999937986786302523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036559462455443297,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -146 ,0 ,-0.0208970581211616011,2.95127308377605990230,0.00000000000000000000,-1.0000000000000000000,0.00036016483738417301,0.00026929728454430602,0.99999989888012597027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039499305296431002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -147 ,0 ,0.02089705812116160119,2.95127308377605990230,0.00000000000000000000,-1.0000000000000000000,-0.0003601648373841730,0.00026929728454430602,0.99999989888012597027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039499305296431002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -148 ,0 ,0.06268492229049389685,2.95530328659995999984,0.00000000000000000000,-1.0000000000000000000,-0.0010804887673477800,0.00026982941543177201,0.99999937986786302523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036559462455443297,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -149 ,0 ,0.10445403144280400453,2.96336343207768004859,0.00000000000000000000,-1.0000000000000000000,-0.0018007954633526099,0.00027089358312817901,0.99999834187480796110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030683163026878901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -150 ,0 ,0.14619188623932000137,2.97545299994443990243,0.00000000000000000000,-1.0000000000000000000,-0.0025210734376109799,0.00027248959951994800,0.99999678496390198567,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021877178107843100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -151 ,0 ,0.18788599334809300001,2.99157120999337999833,0.00000000000000000000,-1.0000000000000000000,-0.0032413112046124500,0.00027461718254653800,0.99999470922954303286,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010151661115287400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -152 ,0 ,0.22952386784263800745,3.01171702230056981264,0.00000000000000000000,-1.0000000000000000000,-0.0039614972820348204,0.00027727595633064700,0.99999211479757599274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000447985659093320,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -153 ,0 ,0.27109303559649600146,3.03588913752949984825,0.00000000000000000000,-1.0000000000000000000,-0.0046816201916550599,0.00028046545135307398,0.99998900182527594715,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002200047035785249,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -154 ,0 ,-0.2710680301435779981,3.87856800600878992568,0.00000000000000000000,-1.0000000000000000000,0.00465964847833792977,0.00035731924504767099,0.99998907993988395137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004978264371402470,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -155 ,0 ,-0.2295014273764610090,3.85450891563302011633,0.00000000000000000000,-1.0000000000000000000,0.00394290401222902042,0.00035414940228509201,0.99999216401237400742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022231693253615999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -156 ,0 ,-0.1878667585037629983,3.83445732399280014845,0.00000000000000000000,-1.0000000000000000000,0.00322609728817337994,0.00035150702039340997,0.99999473435568697610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036640123846609602,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -157 ,0 ,-0.1461763815071920047,3.81841451227725992012,0.00000000000000000000,-1.0000000000000000000,0.00250923961913175012,0.00034939256071206398,0.99999679081553705106,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00048186887806878097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -158 ,0 ,-0.1044426649680040009,3.80638150588216017666,0.00000000000000000000,-1.0000000000000000000,0.00179234232206446010,0.00034780639256726302,0.99999833326846798708,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00056858642165025197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -159 ,0 ,-0.0626779857168335979,3.79835907411192019722,0.00000000000000000000,-1.0000000000000000000,0.00107541671704262996,0.00034674879310284101,0.99999936162187597066,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00062645375942338400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -160 ,0 ,-0.0208947264795785007,3.79434772995989000321,0.00000000000000000000,-1.0000000000000000000,0.00035847412635930801,0.00034621994715158799,0.99999987581401694747,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065540412231257494,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -161 ,0 ,0.02089472647957850079,3.79434772995989000321,0.00000000000000000000,-1.0000000000000000000,-0.0003584741263593080,0.00034621994715158799,0.99999987581401694747,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065540412231257494,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -162 ,0 ,0.06267798571683359798,3.79835907411192019722,0.00000000000000000000,-1.0000000000000000000,-0.0010754167170426299,0.00034674879310284101,0.99999936162187597066,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00062645375942338400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -163 ,0 ,0.10444266496800400090,3.80638150588216017666,0.00000000000000000000,-1.0000000000000000000,-0.0017923423220644601,0.00034780639256726302,0.99999833326846798708,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00056858642165025197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -164 ,0 ,0.14617638150719200473,3.81841451227725992012,0.00000000000000000000,-1.0000000000000000000,-0.0025092396191317501,0.00034939256071206398,0.99999679081553705106,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00048186887806878097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -165 ,0 ,0.18786675850376299834,3.83445732399280014845,0.00000000000000000000,-1.0000000000000000000,-0.0032260972881733799,0.00035150702039340997,0.99999473435568697610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036640123846609602,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -166 ,0 ,0.22950142737646100909,3.85450891563302011633,0.00000000000000000000,-1.0000000000000000000,-0.0039429040122290204,0.00035414940228509201,0.99999216401237400742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022231693253615999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -167 ,0 ,0.27106803014357799819,3.87856800600878992568,0.00000000000000000000,-1.0000000000000000000,-0.0046596484783379297,0.00035731924504767099,0.99998907993988395137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004978264371402470,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -168 ,0 ,-0.2710430098952700261,4.72125062671116957346,0.00000000000000000000,-1.0000000000000000000,0.00463788135622887013,0.00043417383617083698,0.99998915071594896009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00038457108985312499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -169 ,0 ,-0.2294789922452490082,4.69730350928514983621,0.00000000000000000000,-1.0000000000000000000,0.00392448389231987975,0.00043102341914757997,0.99999220629212404176,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00055445830105327299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -170 ,0 ,-0.1878475402061849930,4.67734526110881976279,0.00000000000000000000,-1.0000000000000000000,0.00321102506319524000,0.00042839724004822799,0.99999475288315797794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00069633245720979197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -171 ,0 ,-0.1461608972288659935,4.66137714556106974583,0.00000000000000000000,-1.0000000000000000000,0.00249751601966215989,0.00042629575221392302,0.99999679033768096303,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00081002919455386301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -172 ,0 ,-0.1044313171677789947,4.64940017377660019803,0.00000000000000000000,-1.0000000000000000000,0.00178396791643075009,0.00042471931856527501,0.99999831853457299413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00089541694080708101,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -173 ,0 ,-0.0626710619743224978,4.64141510436188031718,0.00000000000000000000,-1.0000000000000000000,0.00107039191124662000,0.00042366821143785500,0.99999933738298196761,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00095239696929638696,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -174 ,0 ,-0.0208923993861638013,4.63742244317154028721,0.00000000000000000000,-1.0000000000000000000,0.00035679916402360099,0.00042314261245732199,0.99999984682233100663,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098090344761203596,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -175 ,0 ,0.02089239938616380132,4.63742244317154028721,0.00000000000000000000,-1.0000000000000000000,-0.0003567991640236009,0.00042314261245732199,0.99999984682233100663,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098090344761203596,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -176 ,0 ,0.06267106197432249781,4.64141510436188031718,0.00000000000000000000,-1.0000000000000000000,-0.0010703919112466200,0.00042366821143785500,0.99999933738298196761,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00095239696929638696,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -177 ,0 ,0.10443131716777899475,4.64940017377660019803,0.00000000000000000000,-1.0000000000000000000,-0.0017839679164307500,0.00042471931856527501,0.99999831853457299413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00089541694080708101,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -178 ,0 ,0.14616089722886599355,4.66137714556106974583,0.00000000000000000000,-1.0000000000000000000,-0.0024975160196621598,0.00042629575221392302,0.99999679033768096303,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00081002919455386301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -179 ,0 ,0.18784754020618499303,4.67734526110881976279,0.00000000000000000000,-1.0000000000000000000,-0.0032110250631952400,0.00042839724004822799,0.99999475288315797794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00069633245720979197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -180 ,0 ,0.22947899224524900829,4.69730350928514983621,0.00000000000000000000,-1.0000000000000000000,-0.0039244838923198797,0.00043102341914757997,0.99999220629212404176,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00055445830105327299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -181 ,0 ,0.27104300989527002618,4.72125062671116957346,0.00000000000000000000,-1.0000000000000000000,-0.0046378813562288701,0.00043417383617083698,0.99998915071594896009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00038457108985312499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -182 ,0 ,-0.2710179753978290140,5.56393695813058997146,0.00000000000000000000,-1.0000000000000000000,0.00461631598095903986,0.00051102921102594300,0.99998921417978803294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00078436185685859494,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -183 ,0 ,-0.2294565625812529929,5.54010077636039977022,0.00000000000000000000,-1.0000000000000000000,0.00390623451473634010,0.00050789799696784898,0.99999224165567401900,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00095162641855495199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -184 ,0 ,-0.1878283383383450022,5.52023500663401023302,0.00000000000000000000,-1.0000000000000000000,0.00319609255930328010,0.00050528783469164196,0.99999476482457505532,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00109131086378510991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -185 ,0 ,-0.1461454331730749900,5.50434089484673982894,0.00000000000000000000,-1.0000000000000000000,0.00248590110635004985,0.00050319916971638999,0.99999678353796994656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00120325309922009009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -186 ,0 ,-0.1044199878017569999,5.49241943813859023748,0.00000000000000000000,-1.0000000000000000000,0.00177567115137571007,0.00050163235869890598,0.99999829767702097527,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00128732337338987993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -187 ,0 ,-0.0626641508886473935,5.48447138461170968781,0.00000000000000000000,-1.0000000000000000000,0.00106541369284174000,0.00050058766927277298,0.99999930715258400493,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00134342433102573998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -188 ,0 ,-0.0208900767777975004,5.48049723311715020201,0.00000000000000000000,-1.0000000000000000000,0.00035513973132561901,0.00050006527992721395,0.99999981190522602148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137149104375566995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -189 ,0 ,0.02089007677779750049,5.48049723311715020201,0.00000000000000000000,-1.0000000000000000000,-0.0003551397313256190,0.00050006527992721395,0.99999981190522602148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137149104375566995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -190 ,0 ,0.06266415088864739357,5.48447138461170968781,0.00000000000000000000,-1.0000000000000000000,-0.0010654136928417400,0.00050058766927277298,0.99999930715258400493,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00134342433102573998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -191 ,0 ,0.10441998780175699990,5.49241943813859023748,0.00000000000000000000,-1.0000000000000000000,-0.0017756711513757100,0.00050163235869890598,0.99999829767702097527,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00128732337338987993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -192 ,0 ,0.14614543317307499004,5.50434089484673982894,0.00000000000000000000,-1.0000000000000000000,-0.0024859011063500498,0.00050319916971638999,0.99999678353796994656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00120325309922009009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -193 ,0 ,0.18782833833834500225,5.52023500663401023302,0.00000000000000000000,-1.0000000000000000000,-0.0031960925593032801,0.00050528783469164196,0.99999476482457505532,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00109131086378510991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -194 ,0 ,0.22945656258125199378,5.54010077636039977022,0.00000000000000000000,-1.0000000000000000000,-0.0039062345147363401,0.00050789799696784898,0.99999224165567401900,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00095162641855495199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -195 ,0 ,0.27101797539782901402,5.56393695813058997146,0.00000000000000000000,-1.0000000000000000000,-0.0046163159809590398,0.00051102921102594300,0.99998921417978803294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00078436185685859494,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -196 ,0 ,-0.2713421433857000075,-5.3906833182254096925,0.00000000000000000000,-1.0000000000000000000,0.00491325571278591975,-0.0004880253954973319,0.99998781080046894587,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065689696168647103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -197 ,0 ,-0.2297485318659359954,-5.4160469562455801906,0.00000000000000000000,-1.0000000000000000000,0.00415751684694948969,-0.0004914247575058540,0.99999123673929002364,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086026403903360904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -198 ,0 ,-0.1880792775549419981,-5.4371860744762496864,0.00000000000000000000,-1.0000000000000000000,0.00340170467656383986,-0.0004942585910493180,0.99999409203941702628,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103009481438220995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -199 ,0 ,-0.1463481118585069906,-5.4540991717419196049,0.00000000000000000000,-1.0000000000000000000,0.00264583252093793979,-0.0004965263336367540,0.99999637650937100996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00116619400432683008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/Cone.rayx.csv b/Intern/RAY-Core/tests/output/Cone.rayx.csv deleted file mode 100644 index def2a169a..000000000 --- a/Intern/RAY-Core/tests/output/Cone.rayx.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.2713421433857011177,-5.3906833182260909254,0.00000000000000000000,1.00000000000000000000,0.00491325571278591714,-0.0004880253954975021,0.99998781080046872382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006568969638465,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-0.2297485318659306385,-5.4160469562458857240,0.00000000000000000000,1.00000000000000000000,0.00415751684694949316,-0.0004914247575058800,0.99999123673929013467,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008602640409662,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,-0.1880792775549418871,-5.4371860744766671302,0.00000000000000000000,1.00000000000000000000,0.00340170467656383682,-0.0004942585910492584,0.99999409203941713730,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010300948142685,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,-0.1463481118585067131,-5.4540991717425688634,0.00000000000000000000,1.00000000000000000000,0.00264583252093794196,-0.0004965263336368058,0.99999637650937045485,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011661940043268,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-0.1045687792732651055,-5.4667850465245280133,0.00000000000000000000,1.00000000000000000000,0.00188991370465533994,-0.0004982275349283949,0.99999808999593209346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012684052744589,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-0.0627550344848908092,-5.4752427973497903579,0.00000000000000000000,1.00000000000000000000,0.00113396155640197978,-0.0004993618569670333,0.99999923238416732473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013366113162192,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,-0.0209206394608320508,-5.4794718230722088136,0.00000000000000000000,1.00000000000000000000,0.00037798940779406003,-0.0004999290743511552,0.99999980359744455871,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013707339039683,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,0.02092063946083205089,-5.4794718230722088136,0.00000000000000000000,1.00000000000000000000,-0.0003779894077940600,-0.0004999290743511552,0.99999980359744455871,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013707339039683,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,0.06275503448489080926,-5.4752427973497903579,0.00000000000000000000,1.00000000000000000000,-0.0011339615564019797,-0.0004993618569670333,0.99999923238416732473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013366113162192,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,0.10456877927326514721,-5.4667850465245280133,0.00000000000000000000,1.00000000000000000000,-0.0018899137046553405,-0.0004982275349283949,0.99999808999593209346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012684052744589,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,0.14634811185850671311,-5.4540991717425688634,0.00000000000000000000,1.00000000000000000000,-0.0026458325209379419,-0.0004965263336368058,0.99999637650937045485,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011661940043268,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,0.18807927755494188715,-5.4371860744766671302,0.00000000000000000000,1.00000000000000000000,-0.0034017046765638368,-0.0004942585910492584,0.99999409203941713730,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010300948142685,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,0.22974853186593152676,-5.4160469562458857240,0.00000000000000000000,1.00000000000000000000,-0.0041575168469494931,-0.0004914247575058800,0.99999123673929013467,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008602640409662,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,0.27134214338570111779,-5.3906833182260909254,0.00000000000000000000,1.00000000000000000000,-0.0049132557127859171,-0.0004880253954975021,0.99998781080046872382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006568969638465,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,-0.2713173199352432174,-4.5480444805282695952,0.00000000000000000000,1.00000000000000000000,0.00488906916922249214,-0.0004111803974201091,0.99998796389423549868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002767456044239,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,-0.2297260468793774768,-4.5732837071993781563,0.00000000000000000000,1.00000000000000000000,0.00413704909813639252,-0.0004145576167259873,0.99999135644601522265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004771728199557,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-0.1880598708288429288,-4.5943191089689801032,0.00000000000000000000,1.00000000000000000000,0.00338495682823128059,-0.0004173729791150372,0.99999418391662009408,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006445484614232,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-0.1463323891059847281,-4.6111492066486787777,0.00000000000000000000,1.00000000000000000000,0.00263280547799758660,-0.0004196259323969396,0.99999644611838045538,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007786801106703,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,-0.1045572118691843327,-4.6237728163267233227,0.00000000000000000000,1.00000000000000000000,0.00188060817106635289,-0.0004213160344818981,0.99999814290112842840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008794137174845,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,-0.0627479592674282660,-4.6321890497368247707,0.00000000000000000000,1.00000000000000000000,0.00112837803506677216,-0.0004224429536062167,0.99999927415221678828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009466336996410,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -20 ,0 ,-0.0209182585896710918,-4.6363973145493755367,0.00000000000000000000,1.00000000000000000000,0.00037612820048386669,-0.0004230064684997881,0.99999983979653916943,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009802629665500,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,0 ,0.02091825858967109180,-4.6363973145493755367,0.00000000000000000000,1.00000000000000000000,-0.0003761282004838666,-0.0004230064684997881,0.99999983979653916943,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009802629665500,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,0 ,0.06274795926742826601,-4.6321890497368247707,0.00000000000000000000,1.00000000000000000000,-0.0011283780350667721,-0.0004224429536062167,0.99999927415221678828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009466336996410,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -23 ,0 ,0.10455721186918477683,-4.6237728163267233227,0.00000000000000000000,1.00000000000000000000,-0.0018806081710663528,-0.0004213160344818981,0.99999814290112842840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008794137174845,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -24 ,0 ,0.14633238910598472815,-4.6111492066486787777,0.00000000000000000000,1.00000000000000000000,-0.0026328054779975866,-0.0004196259323969396,0.99999644611838045538,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007786801106703,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,0 ,0.18805987082884292882,-4.5943191089689801032,0.00000000000000000000,1.00000000000000000000,-0.0033849568282312805,-0.0004173729791150372,0.99999418391662009408,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006445484614232,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,0 ,0.22972604687937753231,-4.5732837071993781563,0.00000000000000000000,1.00000000000000000000,-0.0041370490981363933,-0.0004145576167259873,0.99999135644601522265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004771728199557,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -27 ,0 ,0.27131731993524321744,-4.5480444805282695952,0.00000000000000000000,1.00000000000000000000,-0.0048890691692224921,-0.0004111803974201091,0.99998796389423549868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002767456044239,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -28 ,0 ,-0.2712924751998935235,-3.7054014180623213725,0.00000000000000000000,1.00000000000000000000,0.00486511883767329345,-0.0003343344475815921,0.99998810934889226231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999615818487654,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -29 ,0 ,-0.2297035655047712787,-3.7305174476679576756,0.00000000000000000000,1.00000000000000000000,0.00411678126465353424,-0.0003376897930689147,0.99999146900242219526,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001590977699379,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,0 ,-0.1880404818117381859,-3.7514501456625723996,0.00000000000000000000,1.00000000000000000000,0.00336837257673934476,-0.0003404869088144311,0.99999426905100263773,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003240421920054,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,0 ,-0.1463166893130090073,-3.7681980544186797210,0.00000000000000000000,1.00000000000000000000,0.00261990569556062738,-0.0003427252526882221,0.99999650931068118087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004562254962365,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -32 ,0 ,-0.1045456657881929929,-3.7807600072875806596,0.00000000000000000000,1.00000000000000000000,0.00187139354775790831,-0.0003444043906580584,0.99999818963426367890,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005554958770517,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -33 ,0 ,-0.0627408988138799667,-3.7891351289584824790,0.00000000000000000000,1.00000000000000000000,0.00112284906386872756,-0.0003455239970092784,0.99999930991133534341,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006217394384293,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -34 ,0 ,-0.0209158829682253265,-3.7933228357392656526,0.00000000000000000000,1.00000000000000000000,0.00037428517721424335,-0.0003460838545070852,0.99999987006827717461,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006548802157340,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -35 ,0 ,0.02091588296822532652,-3.7933228357392656526,0.00000000000000000000,1.00000000000000000000,-0.0003742851772142433,-0.0003460838545070852,0.99999987006827717461,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006548802157340,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,0 ,0.06274089881387996670,-3.7891351289584824790,0.00000000000000000000,1.00000000000000000000,-0.0011228490638687275,-0.0003455239970092784,0.99999930991133534341,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006217394384293,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,0 ,0.10454566578819279865,-3.7807600072875806596,0.00000000000000000000,1.00000000000000000000,-0.0018713935477579091,-0.0003444043906580584,0.99999818963426367890,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005554958770517,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -38 ,0 ,0.14631668931300900737,-3.7681980544186797210,0.00000000000000000000,1.00000000000000000000,-0.0026199056955606273,-0.0003427252526882221,0.99999650931068118087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004562254962365,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -39 ,0 ,0.18804048181173818599,-3.7514501456625723996,0.00000000000000000000,1.00000000000000000000,-0.0033683725767393447,-0.0003404869088144311,0.99999426905100263773,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003240421920054,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -40 ,0 ,0.22970356550477047385,-3.7305174476679576756,0.00000000000000000000,1.00000000000000000000,-0.0041167812646535359,-0.0003376897930689147,0.99999146900242219526,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001590977699379,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,0 ,0.27129247519989352355,-3.7054014180623213725,0.00000000000000000000,1.00000000000000000000,-0.0048651188376732934,-0.0003343344475815921,0.99998810934889226231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999615818487654,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -42 ,0 ,-0.2712676099223055858,-2.8627541831781502246,0.00000000000000000000,1.00000000000000000000,0.00484140127465699978,-0.0002574875629701477,0.99998824719786205683,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997114071520627,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -43 ,0 ,-0.2296810879515434888,-2.8877482123190958418,0.00000000000000000000,1.00000000000000000000,0.00409671043172186218,-0.0002608212988481165,0.99999157443244901521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999060399350128,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,0 ,-0.1880211103889928847,-2.9085792044710467862,0.00000000000000000000,1.00000000000000000000,0.00335194953654306161,-0.0002636003885524374,0.99999434745859416828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000685767045069,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,0 ,-0.1463010122123264700,-2.9252457231516371116,0.00000000000000000000,1.00000000000000000000,0.00260713131775151211,-0.0002658242997800202,0.99999656609597087353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001988305812119,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,0 ,-0.1045341407439177583,-2.9377466186382963364,0.00000000000000000000,1.00000000000000000000,0.00186226850886256518,-0.0002674926063702516,0.99999823020028688613,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002966519623441,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -47 ,0 ,-0.0627338529142012490,-2.9460810283271179343,0.00000000000000000000,1.00000000000000000000,0.00111737384719054607,-0.0002686049885168914,0.99999933966330467605,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003619286053435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -48 ,0 ,-0.0209135125201104360,-2.9502483769985485828,0.00000000000000000000,1.00000000000000000000,0.00037246007276328608,-0.0002691612329265687,0.99999989441285652702,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003945856442442,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -49 ,0 ,0.02091351252011043604,-2.9502483769985485828,0.00000000000000000000,1.00000000000000000000,-0.0003724600727632860,-0.0002691612329265687,0.99999989441285652702,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003945856442442,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -50 ,0 ,0.06273385291420124909,-2.9460810283271179343,0.00000000000000000000,1.00000000000000000000,-0.0011173738471905460,-0.0002686049885168914,0.99999933966330467605,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003619286053435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -51 ,0 ,0.10453414074391778609,-2.9377466186382963364,0.00000000000000000000,1.00000000000000000000,-0.0018622685088625658,-0.0002674926063702516,0.99999823020028688613,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002966519623441,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,0 ,0.14630101221232647001,-2.9252457231516371116,0.00000000000000000000,1.00000000000000000000,-0.0026071313177515121,-0.0002658242997800202,0.99999656609597087353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001988305812119,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -53 ,0 ,0.18802111038899288475,-2.9085792044710467862,0.00000000000000000000,1.00000000000000000000,-0.0033519495365430616,-0.0002636003885524374,0.99999434745859416828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000685767045069,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -54 ,0 ,0.22968108795154351664,-2.8877482123190958418,0.00000000000000000000,1.00000000000000000000,-0.0040967104317218630,-0.0002608212988481165,0.99999157443244901521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999060399350128,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -55 ,0 ,0.27126760992230558589,-2.8627541831781502246,0.00000000000000000000,1.00000000000000000000,-0.0048414012746569997,-0.0002574875629701477,0.99998824719786205683,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997114071520627,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -56 ,0 ,-0.2712427248224349995,-2.0201028270170455769,0.00000000000000000000,1.00000000000000000000,0.00481791310329166000,-0.0001806397602039664,0.99998837747376145834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995262229494983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -57 ,0 ,-0.2296586144200368495,-2.0449760349563268491,0.00000000000000000000,1.00000000000000000000,0.00407683374094660634,-0.0001839521461105507,0.99999167275945677335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997180003520043,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -58 ,0 ,-0.1880017564454624090,-2.0657063047306820635,0.00000000000000000000,1.00000000000000000000,0.00333568536825113457,-0.0001867134265547797,0.99999441915503706201,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998781526865059,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -59 ,0 ,-0.1462853575405600736,-2.0822922205960301411,0.00000000000000000000,1.00000000000000000000,0.00259448052460506742,-0.0001889230788341390,0.99999661648371462874,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000064957730501,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -60 ,0 ,-0.1045226364550493336,-2.0947326494328648571,0.00000000000000000000,1.00000000000000000000,0.00185323175417021509,-0.0001905806844772969,0.99999826460402807537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001028821752697,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -61 ,0 ,-0.0627268213623166093,-2.1030267410965288732,0.00000000000000000000,1.00000000000000000000,0.00111195160481215144,-0.0001916859294498184,0.99999936340986361749,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001672012640483,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,0 ,-0.0209111471704163144,-2.1071739286770876375,0.00000000000000000000,1.00000000000000000000,0.00037065262704196307,-0.0001922386043095732,0.99999991283047062751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001993792538996,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -63 ,0 ,0.02091114717041631446,-2.1071739286770876375,0.00000000000000000000,1.00000000000000000000,-0.0003706526270419630,-0.0001922386043095732,0.99999991283047062751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001993792538996,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -64 ,0 ,0.06272682136231660932,-2.1030267410965288732,0.00000000000000000000,1.00000000000000000000,-0.0011119516048121514,-0.0001916859294498184,0.99999936340986361749,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001672012640483,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -65 ,0 ,0.10452263645504913935,-2.0947326494328648571,0.00000000000000000000,1.00000000000000000000,-0.0018532317541702157,-0.0001905806844772969,0.99999826460402807537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001028821752697,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -66 ,0 ,0.14628535754056007367,-2.0822922205960301411,0.00000000000000000000,1.00000000000000000000,-0.0025944805246050674,-0.0001889230788341390,0.99999661648371462874,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000064957730501,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,0 ,0.18800175644546240905,-2.0657063047306820635,0.00000000000000000000,1.00000000000000000000,-0.0033356853682511345,-0.0001867134265547797,0.99999441915503706201,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998781526865059,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -68 ,0 ,0.22965861442003684955,-2.0449760349563268491,0.00000000000000000000,1.00000000000000000000,-0.0040768337409466063,-0.0001839521461105507,0.99999167275945677335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997180003520043,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -69 ,0 ,0.27124272482243499959,-2.0201028270170455769,0.00000000000000000000,1.00000000000000000000,-0.0048179131032916600,-0.0001806397602039664,0.99998837747376145834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995262229494983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -70 ,0 ,-0.2712178205982999079,-1.1774473995449312724,0.00000000000000000000,1.00000000000000000000,0.00479465101169264037,-0.0001037910555393852,0.99998850020842366959,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994060306489700,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -71 ,0 ,-0.2296361451018417709,-1.2022009485372084913,0.00000000000000000000,1.00000000000000000000,0.00405714838896052091,-0.0001070823466439647,0.99999176400624456562,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995949800249945,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -72 ,0 ,-0.1879824198654977129,-1.2228314652103446924,0.00000000000000000000,1.00000000000000000000,0.00331957777751519002,-0.0001098260308738347,0.99999448415559855085,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997527708183042,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -73 ,0 ,-0.1462697250381199132,-1.2393375541582951626,0.00000000000000000000,1.00000000000000000000,0.00258195153120222486,-0.0001120215949064952,0.99999666048314994615,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998792214919376,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -74 ,0 ,-0.1045111526452265765,-1.2517180985471436649,0.00000000000000000000,1.00000000000000000000,0.00184428200851044130,-0.0001136686277832788,0.99999829285020080948,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999741867286502,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -75 ,0 ,-0.0627198039560146608,-1.2599722604524794533,0.00000000000000000000,1.00000000000000000000,0.00110658157153998865,-0.0001147668211096955,0.99999938115270925464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000375574909412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -76 ,0 ,-0.0209087868456718645,-1.2640994811160637389,0.00000000000000000000,1.00000000000000000000,0.00036886258497053980,-0.0001153159692054205,0.99999992532130732580,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000692610537953,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -77 ,0 ,0.02090878684567186451,-1.2640994811160637389,0.00000000000000000000,1.00000000000000000000,-0.0003688625849705398,-0.0001153159692054205,0.99999992532130732580,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000692610537953,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -78 ,0 ,0.06271980395601466085,-1.2599722604524794533,0.00000000000000000000,1.00000000000000000000,-0.0011065815715399886,-0.0001147668211096955,0.99999938115270925464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000375574909412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -79 ,0 ,0.10451115264522638226,-1.2517180985471436649,0.00000000000000000000,1.00000000000000000000,-0.0018442820085104421,-0.0001136686277832788,0.99999829285020080948,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999741867286502,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -80 ,0 ,0.14626972503811991321,-1.2393375541582951626,0.00000000000000000000,1.00000000000000000000,-0.0025819515312022248,-0.0001120215949064952,0.99999666048314994615,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998792214919376,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -81 ,0 ,0.18798241986549771298,-1.2228314652103446924,0.00000000000000000000,1.00000000000000000000,-0.0033195777775151900,-0.0001098260308738347,0.99999448415559855085,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997527708183042,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -82 ,0 ,0.22963614510184265915,-1.2022009485372084913,0.00000000000000000000,1.00000000000000000000,-0.0040571483889605209,-0.0001070823466439647,0.99999176400624456562,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995949800249945,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -83 ,0 ,0.27121782059829990796,-1.1774473995449312724,0.00000000000000000000,1.00000000000000000000,-0.0047946510116926403,-0.0001037910555393852,0.99998850020842366959,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994060306489700,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -84 ,0 ,-0.2711928979266722827,-0.3347879495804765292,0.00000000000000000000,1.00000000000000000000,0.00477161175141654816,-0.0000269414648813593,0.99998861543292127951,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993508316401857,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -85 ,0 ,-0.2296136801801048066,-0.3594229852021646465,0.00000000000000000000,1.00000000000000000000,0.00403765162610632191,-0.0000302119119839257,0.99999184819506714561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995369799489708,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -86 ,0 ,-0.1879631005330686110,-0.3799547041293770965,0.00000000000000000000,1.00000000000000000000,0.00330362451395099570,-0.0000329382093923599,0.99999454247518004823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996924317620141,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -87 ,0 ,-0.1462541144491706079,-0.3963817309116931530,0.00000000000000000000,1.00000000000000000000,0.00256954258683049757,-0.0000351198529504242,0.99999669810329361308,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998170081344142,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -88 ,0 ,-0.1044996890429385899,-0.4087029646882464062,0.00000000000000000000,1.00000000000000000000,0.00183541802115268193,-0.0000367564390404332,0.99999831494340596371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999105658262124,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -89 ,0 ,-0.0627128004968602742,-0.4169175795219203783,0.00000000000000000000,1.00000000000000000000,0.00110126299684705432,-0.0000378476647789583,0.99999939289349848436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999729973551438,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -90 ,0 ,-0.0209064314738100290,-0.4210250246507738491,0.00000000000000000000,1.00000000000000000000,0.00036708969635856675,-0.0000383933281612680,0.99999993188555102996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042310421122,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,0 ,0.02090643147381002903,-0.4210250246507738491,0.00000000000000000000,1.00000000000000000000,-0.0003670896963585667,-0.0000383933281612680,0.99999993188555102996,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042310421122,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -92 ,0 ,0.06271280049686027424,-0.4169175795219203783,0.00000000000000000000,1.00000000000000000000,-0.0011012629968470543,-0.0000378476647789583,0.99999939289349848436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999729973551438,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -93 ,0 ,0.10449968904293883975,-0.4087029646882464062,0.00000000000000000000,1.00000000000000000000,-0.0018354180211526825,-0.0000367564390404332,0.99999831494340596371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999105658262124,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -94 ,0 ,0.14625411444917060799,-0.3963817309116931530,0.00000000000000000000,1.00000000000000000000,-0.0025695425868304975,-0.0000351198529504242,0.99999669810329361308,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998170081344142,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -95 ,0 ,0.18796310053306861109,-0.3799547041293770965,0.00000000000000000000,1.00000000000000000000,-0.0033036245139509957,-0.0000329382093923599,0.99999454247518004823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996924317620141,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -96 ,0 ,0.22961368018010483438,-0.3594229852021646465,0.00000000000000000000,1.00000000000000000000,-0.0040376516261063227,-0.0000302119119839257,0.99999184819506714561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995369799489708,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -97 ,0 ,0.27119289792667228278,-0.3347879495804765292,0.00000000000000000000,1.00000000000000000000,-0.0047716117514165481,-0.0000269414648813593,0.99998861543292127951,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993508316401857,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -98 ,0 ,-0.2711679574638472534,0.50787547517970554888,0.00000000000000000000,1.00000000000000000000,0.00474879213594945302,0.00004990899620657397,0.99998872317758724648,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993606272728356,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -99 ,0 ,-0.2295912198298393769,0.48335782371776159216,0.00000000000000000000,1.00000000000000000000,0.00401834075515646645,0.00004665914657954548,0.99999192534764946849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995440011007303,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -100 ,0 ,-0.1879437983318197613,0.46292396083103798387,0.00000000000000000000,1.00000000000000000000,0.00328782337009044965,0.00004395003017124635,0.99999459412832891747,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996971361742907,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -101 ,0 ,-0.1462385255215668256,0.44657524239653650921,0.00000000000000000000,1.00000000000000000000,0.00255725197416844206,0.00004178214218000457,0.99999672935294758868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998198560970195,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -102 ,0 ,-0.1044882453814210687,0.43431275360320753531,0.00000000000000000000,1.00000000000000000000,0.00182663856522347046,0.00004015587904972801,0.99999833088813550041,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999120196607691,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -103 ,0 ,-0.0627058107901158345,0.42613730862839643842,0.00000000000000000000,1.00000000000000000000,0.00109599514452313369,0.00003907153827847688,0.99999939863384790239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999735209294158,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -104 ,0 ,-0.0209040809841344633,0.42204945039016700247,0.00000000000000000000,1.00000000000000000000,0.00036533371578828315,0.00003852931827799075,0.99999993252338137406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042892297642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -105 ,0 ,0.02090408098413446338,0.42204945039016700247,0.00000000000000000000,1.00000000000000000000,-0.0003653337157882831,0.00003852931827799075,0.99999993252338137406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042892297642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -106 ,0 ,0.06270581079011583458,0.42613730862839643842,0.00000000000000000000,1.00000000000000000000,-0.0010959951445231336,0.00003907153827847688,0.99999939863384790239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999735209294158,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -107 ,0 ,0.10448824538142086060,0.43431275360320753531,0.00000000000000000000,1.00000000000000000000,-0.0018266385652234711,0.00004015587904972801,0.99999833088813550041,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999120196607691,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -108 ,0 ,0.14623852552156682560,0.44657524239653650921,0.00000000000000000000,1.00000000000000000000,-0.0025572519741684420,0.00004178214218000457,0.99999672935294758868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998198560970195,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -109 ,0 ,0.18794379833181976136,0.46292396083103798387,0.00000000000000000000,1.00000000000000000000,-0.0032878233700904496,0.00004395003017124635,0.99999459412832891747,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996971361742907,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -110 ,0 ,0.22959121982983937693,0.48335782371776159216,0.00000000000000000000,1.00000000000000000000,-0.0040183407551564673,0.00004665914657954548,0.99999192534764946849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995440011007303,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -111 ,0 ,0.27116795746384725340,0.50787547517970554888,0.00000000000000000000,1.00000000000000000000,-0.0047487921359494530,0.00004990899620657397,0.99998872317758724648,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993606272728356,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -112 ,0 ,-0.2711429998461978851,1.35054282813340864599,0.00000000000000000000,1.00000000000000000000,0.00472618903923839074,0.00012676031249381593,0.99998882347203665865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994354188893339,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -113 ,0 ,-0.2295687642182647481,1.32614144767200237140,0.00000000000000000000,1.00000000000000000000,0.00399921313006967524,0.00012353081799485317,0.99999199548520212310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996160444388806,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -114 ,0 ,-0.1879245131451382500,1.30580451251633533615,0.00000000000000000000,1.00000000000000000000,0.00327217218036350262,0.00012083868025856277,0.99999463912924801967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997668846972374,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -115 ,0 ,-0.1462229580067806733,1.28953335933625679032,0.00000000000000000000,1.00000000000000000000,0.00254507800849345213,0.00011868438572817114,0.99999675424070588736,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998877657653792,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -116 ,0 ,-0.1044768213985394628,1.27732905794839668445,0.00000000000000000000,1.00000000000000000000,0.00181794243714035572,0.00011706832383559929,0.99999834068877446746,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999785484469612,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -117 ,0 ,-0.0626988346446431671,1.26919241098924340249,0.00000000000000000000,1.00000000000000000000,0.00109077729233507847,0.00011599078681566498,0.99999939837533680098,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000391282810596,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -118 ,0 ,-0.0209017353072888482,1.26512395368461483258,0.00000000000000000000,1.00000000000000000000,0.00036359440250135984,0.00011545196956926161,0.99999992723497366231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000694356185704,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -119 ,0 ,0.02090173530728884829,1.26512395368461483258,0.00000000000000000000,1.00000000000000000000,-0.0003635944025013598,0.00011545196956926161,0.99999992723497366231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000694356185704,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -120 ,0 ,0.06269883464464316713,1.26919241098924340249,0.00000000000000000000,1.00000000000000000000,-0.0010907772923350784,0.00011599078681566498,0.99999939837533680098,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000391282810596,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -121 ,0 ,0.10447682139853946281,1.27732905794839668445,0.00000000000000000000,1.00000000000000000000,-0.0018179424371403563,0.00011706832383559929,0.99999834068877446746,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999785484469612,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -122 ,0 ,0.14622295800678067334,1.28953335933625679032,0.00000000000000000000,1.00000000000000000000,-0.0025450780084934521,0.00011868438572817114,0.99999675424070588736,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998877657653792,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -123 ,0 ,0.18792451314513825000,1.30580451251633533615,0.00000000000000000000,1.00000000000000000000,-0.0032721721803635026,0.00012083868025856277,0.99999463912924801967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997668846972374,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -124 ,0 ,0.22956876421826388767,1.32614144767200237140,0.00000000000000000000,1.00000000000000000000,-0.0039992131300696769,0.00012353081799485317,0.99999199548520212310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996160444388806,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -125 ,0 ,0.27114299984619788519,1.35054282813340864599,0.00000000000000000000,1.00000000000000000000,-0.0047261890392383907,0.00012676031249381593,0.99998882347203665865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994354188893339,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -126 ,0 ,-0.2711180256908776176,2.19321406374725524912,0.00000000000000000000,1.00000000000000000000,0.00470379939426426689,0.00020361246907339385,0.99998891634518660698,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995752078048099,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -127 ,0 ,-0.2295463135050568592,2.16892785687802280847,0.00000000000000000000,1.00000000000000000000,0.00398026615478243740,0.00020040309144291423,0.99999205862843609793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997531109074770,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -128 ,0 ,-0.1879052448562122390,2.14868693428379708976,0.00000000000000000000,1.00000000000000000000,0.00325666882010882188,0.00019772773346730124,0.99999467749180515063,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999016779693192,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -129 ,0 ,-0.1462074116598500728,2.13249261379120591541,0.00000000000000000000,1.00000000000000000000,0.00253301903691187987,0.00019558687303157756,0.99999677277495913063,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000207375360332,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -130 ,0 ,-0.1044654168367173535,2.12034595012851312390,0.00000000000000000000,1.00000000000000000000,0.00180932845606178904,0.00019398089271396523,0.99999834434960499507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001101523721445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -131 ,0 ,-0.0626918718728270013,2.11224773461259118789,0.00000000000000000000,1.00000000000000000000,0.00108560873169666078,0.00019291007960425064,0.99999939211950650275,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001698194919299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -132 ,0 ,-0.0208993943752221744,2.10819849491656130524,0.00000000000000000000,1.00000000000000000000,0.00036187152028883501,0.00019237462517111535,0.99999991602049942418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001996702267206,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -133 ,0 ,0.02089939437522217446,2.10819849491656130524,0.00000000000000000000,1.00000000000000000000,-0.0003618715202888350,0.00019237462517111535,0.99999991602049942418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001996702267206,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -134 ,0 ,0.06269187187282700135,2.11224773461259118789,0.00000000000000000000,1.00000000000000000000,-0.0010856087316966607,0.00019291007960425064,0.99999939211950650275,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001698194919299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -135 ,0 ,0.10446541683671757561,2.12034595012851312390,0.00000000000000000000,1.00000000000000000000,-0.0018093284560617892,0.00019398089271396523,0.99999834434960499507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001101523721445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -136 ,0 ,0.14620741165985007281,2.13249261379120591541,0.00000000000000000000,1.00000000000000000000,-0.0025330190369118798,0.00019558687303157756,0.99999677277495913063,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000207375360332,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -137 ,0 ,0.18790524485621223904,2.14868693428379708976,0.00000000000000000000,1.00000000000000000000,-0.0032566688201088218,0.00019772773346730124,0.99999467749180515063,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999016779693192,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -138 ,0 ,0.22954631350505685927,2.16892785687802280847,0.00000000000000000000,1.00000000000000000000,-0.0039802661547824374,0.00020040309144291423,0.99999205862843609793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997531109074770,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -139 ,0 ,0.27111802569087761760,2.19321406374725524912,0.00000000000000000000,1.00000000000000000000,-0.0047037993942642668,0.00020361246907339385,0.99998891634518660698,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995752078048099,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -140 ,0 ,-0.2710930355964913940,3.03588913752935329881,0.00000000000000000000,1.00000000000000000000,0.00468162019165506339,0.00028046545135299055,0.99998900182527572511,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997799952980130,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -141 ,0 ,-0.2295238678426358702,3.01171702230029714186,0.00000000000000000000,1.00000000000000000000,0.00396149728203482303,0.00027727595633059197,0.99999211479757577070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999552014360233,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -142 ,0 ,-0.1878859933480905575,2.99157120999310244258,0.00000000000000000000,1.00000000000000000000,0.00324131120461245520,0.00027461718254654846,0.99999470922954258877,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001015166108118,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -143 ,0 ,-0.1461918862393201123,2.97545299994436662771,0.00000000000000000000,1.00000000000000000000,0.00252107343761097868,0.00027248959951992317,0.99999678496390165260,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002187717818742,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -144 ,0 ,-0.1044540314428023392,2.96336343207751884420,0.00000000000000000000,1.00000000000000000000,0.00180079546335261192,0.00027089358312807547,0.99999834187480807212,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003068316309509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -145 ,0 ,-0.0626849222904931752,2.95530328660009811159,0.00000000000000000000,1.00000000000000000000,0.00108048876734778091,0.00026982941543183619,0.99999937986786258115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003655946256913,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -146 ,0 ,-0.0208970581211611987,2.95127308377568775554,0.00000000000000000000,1.00000000000000000000,0.00036016483738417366,0.00026929728454443921,0.99999989888012585925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003949930523958,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -147 ,0 ,0.02089705812116119873,2.95127308377568775554,0.00000000000000000000,1.00000000000000000000,-0.0003601648373841736,0.00026929728454443921,0.99999989888012585925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003949930523958,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -148 ,0 ,0.06268492229049317521,2.95530328660009811159,0.00000000000000000000,1.00000000000000000000,-0.0010804887673477809,0.00026982941543183619,0.99999937986786258115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003655946256913,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -149 ,0 ,0.10445403144280211715,2.96336343207751884420,0.00000000000000000000,1.00000000000000000000,-0.0018007954633526127,0.00027089358312807547,0.99999834187480807212,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003068316309509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -150 ,0 ,0.14619188623932011239,2.97545299994436662771,0.00000000000000000000,1.00000000000000000000,-0.0025210734376109786,0.00027248959951992317,0.99999678496390165260,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002187717818742,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -151 ,0 ,0.18788599334809055751,2.99157120999310244258,0.00000000000000000000,1.00000000000000000000,-0.0032413112046124552,0.00027461718254654846,0.99999470922954258877,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001015166108118,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -152 ,0 ,0.22952386784263587027,3.01171702230029714186,0.00000000000000000000,1.00000000000000000000,-0.0039614972820348239,0.00027727595633059197,0.99999211479757577070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999552014360233,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -153 ,0 ,0.27109303559649139403,3.03588913752935329881,0.00000000000000000000,1.00000000000000000000,-0.0046816201916550633,0.00028046545135299055,0.99998900182527572511,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997799952980130,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -154 ,0 ,-0.2710680301435713923,3.87856800600898621311,0.00000000000000000000,1.00000000000000000000,0.00465964847833793237,0.00035731924504778250,0.99998907993988372933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000497826440550,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -155 ,0 ,-0.2295014273764565126,3.85450891563329678390,0.00000000000000000000,1.00000000000000000000,0.00394290401222902216,0.00035414940228513727,0.99999216401237411844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002223169340140,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -156 ,0 ,-0.1878667585037630538,3.83445732399266603351,0.00000000000000000000,1.00000000000000000000,0.00322609728817338384,0.00035150702039336595,0.99999473435568730916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003664012383524,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -157 ,0 ,-0.1461763815071913663,3.81841451227713513105,0.00000000000000000000,1.00000000000000000000,0.00250923961913174535,0.00034939256071204918,0.99999679081553660697,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004818688757950,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -158 ,0 ,-0.1044426649680022661,3.80638150588199497548,0.00000000000000000000,1.00000000000000000000,0.00179234232206445945,0.00034780639256736764,0.99999833326846776504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005685864216502,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -159 ,0 ,-0.0626779857168343751,3.79835907411187978510,0.00000000000000000000,1.00000000000000000000,0.00107541671704262974,0.00034674879310279081,0.99999936162187563759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006264537587412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -160 ,0 ,-0.0208947264795778485,3.79434772996007785295,0.00000000000000000000,1.00000000000000000000,0.00035847412635930708,0.00034621994715169191,0.99999987581401661440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006554041228810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -161 ,0 ,0.02089472647957784853,3.79434772996007785295,0.00000000000000000000,1.00000000000000000000,-0.0003584741263593070,0.00034621994715169191,0.99999987581401661440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006554041228810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -162 ,0 ,0.06267798571683437514,3.79835907411187978510,0.00000000000000000000,1.00000000000000000000,-0.0010754167170426297,0.00034674879310279081,0.99999936162187563759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006264537587412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -163 ,0 ,0.10444266496800204413,3.80638150588199497548,0.00000000000000000000,1.00000000000000000000,-0.0017923423220644601,0.00034780639256736764,0.99999833326846776504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005685864216502,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -164 ,0 ,0.14617638150719136636,3.81841451227713513105,0.00000000000000000000,1.00000000000000000000,-0.0025092396191317453,0.00034939256071204918,0.99999679081553660697,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004818688757950,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -165 ,0 ,0.18786675850376305385,3.83445732399266603351,0.00000000000000000000,1.00000000000000000000,-0.0032260972881733838,0.00035150702039336595,0.99999473435568730916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003664012383524,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -166 ,0 ,0.22950142737645651269,3.85450891563329678390,0.00000000000000000000,1.00000000000000000000,-0.0039429040122290221,0.00035414940228513727,0.99999216401237411844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002223169340140,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -167 ,0 ,0.27106803014357139236,3.87856800600898621311,0.00000000000000000000,1.00000000000000000000,-0.0046596484783379323,0.00035731924504778250,0.99998907993988372933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000497826440550,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -168 ,0 ,-0.2710430098952623656,4.72125062671126727309,0.00000000000000000000,1.00000000000000000000,0.00463788135622887533,0.00043417383617081432,0.99998915071594918213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003845710907626,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -169 ,0 ,-0.2294789922452536712,4.69730350928453610492,0.00000000000000000000,1.00000000000000000000,0.00392448389231987888,0.00043102341914751996,0.99999220629212437483,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005544583000300,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -170 ,0 ,-0.1878475402061829113,4.67734526110882065097,0.00000000000000000000,1.00000000000000000000,0.00321102506319523826,0.00042839724004827413,0.99999475288315786691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006963324576645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -171 ,0 ,-0.1461608972288671315,4.66137714556063098569,0.00000000000000000000,1.00000000000000000000,0.00249751601966215555,0.00042629575221373301,0.99999679033768029690,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008100291943264,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -172 ,0 ,-0.1044313171677766771,4.64940017377633640904,0.00000000000000000000,1.00000000000000000000,0.00178396791643075313,0.00042471931856531995,0.99999831853457299413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008954169425123,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -173 ,0 ,-0.0626710619743217761,4.64141510436080206858,0.00000000000000000000,1.00000000000000000000,0.00107039191124662651,0.00042366821143778317,0.99999933738298163454,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009523969711153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -174 ,0 ,-0.0208923993861642107,4.63742244317082352722,0.00000000000000000000,1.00000000000000000000,0.00035679916402360094,0.00042314261245714624,0.99999984682233122867,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009809034472709,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -175 ,0 ,0.02089239938616421071,4.63742244317082352722,0.00000000000000000000,1.00000000000000000000,-0.0003567991640236009,0.00042314261245714624,0.99999984682233122867,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009809034472709,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -176 ,0 ,0.06267106197432177616,4.64141510436080206858,0.00000000000000000000,1.00000000000000000000,-0.0010703919112466265,0.00042366821143778317,0.99999933738298163454,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009523969711153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -177 ,0 ,0.10443131716777689921,4.64940017377633640904,0.00000000000000000000,1.00000000000000000000,-0.0017839679164307535,0.00042471931856531995,0.99999831853457299413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008954169425123,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -178 ,0 ,0.14616089722886713153,4.66137714556063098569,0.00000000000000000000,1.00000000000000000000,-0.0024975160196621555,0.00042629575221373301,0.99999679033768029690,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008100291943264,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -179 ,0 ,0.18784754020618291137,4.67734526110882065097,0.00000000000000000000,1.00000000000000000000,-0.0032110250631952382,0.00042839724004827413,0.99999475288315786691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006963324576645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -180 ,0 ,0.22947899224525367123,4.69730350928453610492,0.00000000000000000000,1.00000000000000000000,-0.0039244838923198797,0.00043102341914751996,0.99999220629212437483,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005544583000300,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -181 ,0 ,0.27104300989526236564,4.72125062671126727309,0.00000000000000000000,1.00000000000000000000,-0.0046378813562288753,0.00043417383617081432,0.99998915071594918213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003845710907626,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -182 ,0 ,-0.2710179753978296801,5.56393695813002953087,0.00000000000000000000,1.00000000000000000000,0.00461631598095904940,0.00051102921102592479,0.99998921417978769987,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007843618586775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -183 ,0 ,-0.2294565625812482190,5.54010077636063069661,0.00000000000000000000,1.00000000000000000000,0.00390623451473634140,0.00050789799696800933,0.99999224165567424105,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009516264181002,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -184 ,0 ,-0.1878283383383415883,5.52023500663407595823,0.00000000000000000000,1.00000000000000000000,0.00319609255930328401,0.00050528783469173802,0.99999476482457450021,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010913108635577,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -185 ,0 ,-0.1461454331730737132,5.50434089484661015490,0.00000000000000000000,1.00000000000000000000,0.00248590110635004855,0.00050319916971648269,0.99999678353796961349,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012032530994474,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -186 ,0 ,-0.1044199878017561256,5.49241943813912847360,0.00000000000000000000,1.00000000000000000000,0.00177567115137570747,0.00050163235869894317,0.99999829767702042015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012873233736172,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -187 ,0 ,-0.0626641508886448955,5.48447138461175676127,0.00000000000000000000,1.00000000000000000000,0.00106541369284174217,0.00050058766927285548,0.99999930715258400493,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013434243319352,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -188 ,0 ,-0.0208900767777976045,5.48049723311681091786,0.00000000000000000000,1.00000000000000000000,0.00035513973132561923,0.00050006527992727445,0.99999981190522568841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013714910401176,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -189 ,0 ,0.02089007677779760457,5.48049723311681091786,0.00000000000000000000,1.00000000000000000000,-0.0003551397313256192,0.00050006527992727445,0.99999981190522568841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013714910401176,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -190 ,0 ,0.06266415088864489557,5.48447138461175676127,0.00000000000000000000,1.00000000000000000000,-0.0010654136928417421,0.00050058766927285548,0.99999930715258400493,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013434243319352,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -191 ,0 ,0.10441998780175656968,5.49241943813912847360,0.00000000000000000000,1.00000000000000000000,-0.0017756711513757076,0.00050163235869894317,0.99999829767702042015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012873233736172,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -192 ,0 ,0.14614543317307371328,5.50434089484661015490,0.00000000000000000000,1.00000000000000000000,-0.0024859011063500485,0.00050319916971648269,0.99999678353796961349,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012032530994474,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -193 ,0 ,0.18782833833834158832,5.52023500663407595823,0.00000000000000000000,1.00000000000000000000,-0.0031960925593032840,0.00050528783469173802,0.99999476482457450021,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010913108635577,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -194 ,0 ,0.22945656258124821902,5.54010077636063069661,0.00000000000000000000,1.00000000000000000000,-0.0039062345147363422,0.00050789799696800933,0.99999224165567424105,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009516264181002,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -195 ,0 ,0.27101797539782968016,5.56393695813002953087,0.00000000000000000000,1.00000000000000000000,-0.0046163159809590494,0.00051102921102592479,0.99998921417978769987,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007843618586775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -196 ,0 ,-0.2713421433857011177,-5.3906833182260909254,0.00000000000000000000,1.00000000000000000000,0.00491325571278591714,-0.0004880253954975021,0.99998781080046872382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006568969638465,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -197 ,0 ,-0.2297485318659306385,-5.4160469562458857240,0.00000000000000000000,1.00000000000000000000,0.00415751684694949316,-0.0004914247575058800,0.99999123673929013467,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008602640409662,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -198 ,0 ,-0.1880792775549418871,-5.4371860744766671302,0.00000000000000000000,1.00000000000000000000,0.00340170467656383682,-0.0004942585910492584,0.99999409203941713730,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010300948142685,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -199 ,0 ,-0.1463481118585067131,-5.4540991717425688634,0.00000000000000000000,1.00000000000000000000,0.00264583252093794196,-0.0004965263336368058,0.99999637650937045485,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011661940043268,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/CylinderDefault.rayui.csv b/Intern/RAY-Core/tests/output/CylinderDefault.rayui.csv deleted file mode 100644 index 903ce3988..000000000 --- a/Intern/RAY-Core/tests/output/CylinderDefault.rayui.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-5.5324996004110502667,-0.1052689433323930057,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,0.00495130793916306963,0.99998761719822104598,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103415551279795008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-4.6813457055822800256,-0.1052689360067270013,0.00000000000000000000,-1.0000000000000000000,-0.0004230768575709329,0.00495130793932834975,0.99998765270160294704,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00064362304453879904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,-3.8301918658285800667,-0.1052689299020110047,0.00000000000000000000,-1.0000000000000000000,-0.0003461537959717820,0.00495130793946596970,0.99998768228775603006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031817933813727000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,-2.9790380711363098065,-0.1052689250183270058,0.00000000000000000000,-1.0000000000000000000,-0.0002692307323243830,0.00495130793957607000,0.99998770595667796357,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005782438404366989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-2.1278843114918197798,-0.1052689213555210029,0.00000000000000000000,-1.0000000000000000000,-0.0001923076670839029,0.00495130793965892039,0.99998772370836996881,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001374418228579090,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-1.2767305768814400934,-0.1052689189135460057,0.00000000000000000000,-1.0000000000000000000,-0.0001153846007055080,0.00495130793971348959,0.99998773554283104658,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002676192932540289,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,-0.4255768572915389902,-0.1052689176926659975,0.00000000000000000000,-1.0000000000000000000,-0.0000384615336443635,0.00495130793974133016,0.99998774146006197405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003327080266899429,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,0.42557685729153899023,-0.1052689176926659975,0.00000000000000000000,-1.0000000000000000000,0.00003846153364436359,0.00495130793974133016,0.99998774146006197405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003327080266899429,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,1.27673057688144009347,-0.1052689189135460057,0.00000000000000000000,-1.0000000000000000000,0.00011538460070550800,0.00495130793971348959,0.99998773554283104658,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002676192932540289,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,2.12788431149181977986,-0.1052689213555210029,0.00000000000000000000,-1.0000000000000000000,0.00019230766708390299,0.00495130793965892039,0.99998772370836996881,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001374418228579090,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,2.97903807113630980651,-0.1052689250183270058,0.00000000000000000000,-1.0000000000000000000,0.00026923073232438301,0.00495130793957607000,0.99998770595667796357,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005782438404366989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,3.83019186582858006673,-0.1052689299020110047,0.00000000000000000000,-1.0000000000000000000,0.00034615379597178200,0.00495130793946596970,0.99998768228775603006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031817933813727000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,4.68134570558228002568,-0.1052689360067270013,0.00000000000000000000,-1.0000000000000000000,0.00042307685757093298,0.00495130793932834975,0.99998765270160294704,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00064362304453879904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,5.53249960041105026675,-0.1052689433323930057,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,0.00495130793916306963,0.99998761719822104598,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103415551279795008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,-5.5324998626028198955,-0.0757501133801463943,0.00000000000000000000,-1.0000000000000000000,-0.0004999999344181489,0.00419300807627904018,0.99999108430192396035,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00116800652608616993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,-4.6813459274368298679,-0.0757501081224827010,0.00000000000000000000,-1.0000000000000000000,-0.0004230768725914139,0.00419300807629780034,0.99999111980518695652,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00077747401223859902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-3.8301920473459301064,-0.0757501037411465044,0.00000000000000000000,-1.0000000000000000000,-0.0003461538082612659,0.00419300807631379016,0.99999114939124000844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045203026809303997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-2.9790382123164600436,-0.0757501002359930036,0.00000000000000000000,-1.0000000000000000000,-0.0002692307418828710,0.00419300807632641981,0.99999117306008200589,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019167528205343798,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,-2.1278844123347702144,-0.0757500976071971976,0.00000000000000000000,-1.0000000000000000000,-0.0001923076739113949,0.00419300807633624008,0.99999119081171394807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000035909488360630,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,-1.2767306373872100433,-0.0757500958546479946,0.00000000000000000000,-1.0000000000000000000,-0.0001153846048020029,0.00419300807634215028,0.99999120264613594599,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001337684327609170,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -20 ,0 ,-0.4255768774601290105,-0.0757500949782752008,0.00000000000000000000,-1.0000000000000000000,-0.0000384615350098619,0.00419300807634561973,0.99999120856334600127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001988571727906670,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -21 ,0 ,0.42557687746012901053,-0.0757500949782752008,0.00000000000000000000,-1.0000000000000000000,0.00003846153500986199,0.00419300807634561973,0.99999120856334600127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001988571727906670,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -22 ,0 ,1.27673063738721004334,-0.0757500958546479946,0.00000000000000000000,-1.0000000000000000000,0.00011538460480200299,0.00419300807634215028,0.99999120264613594599,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001337684327609170,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -23 ,0 ,2.12788441233477998437,-0.0757500976071971976,0.00000000000000000000,-1.0000000000000000000,0.00019230767391139499,0.00419300807633624008,0.99999119081171394807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000035909488360630,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -24 ,0 ,2.97903821231646004363,-0.0757501002359930036,0.00000000000000000000,-1.0000000000000000000,0.00026923074188287102,0.00419300807632641981,0.99999117306008200589,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019167528205343798,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -25 ,0 ,3.83019204734593010641,-0.0757501037411465044,0.00000000000000000000,-1.0000000000000000000,0.00034615380826126599,0.00419300807631379016,0.99999114939124000844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045203026809303997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -26 ,0 ,4.68134592743682986792,-0.0757501081224827010,0.00000000000000000000,-1.0000000000000000000,0.00042307687259141398,0.00419300807629780034,0.99999111980518695652,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00077747401223859902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -27 ,0 ,5.53249986260281989558,-0.0757501133801463943,0.00000000000000000000,-1.0000000000000000000,0.00049999993441814897,0.00419300807627904018,0.99999108430192396035,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00116800652608616993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -28 ,0 ,-5.5325000719977399654,-0.0510410209630424993,0.00000000000000000000,-1.0000000000000000000,-0.0004999999492110469,0.00343346763726595999,0.99999398063190103602,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00126135257630721991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -29 ,0 ,-4.6813461046171296331,-0.0510410174348363970,0.00000000000000000000,-1.0000000000000000000,-0.0004230768851084819,0.00343346763718202019,0.99999401613506300190,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087082002528404700,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -30 ,0 ,-3.8301921923116197810,-0.0510410144947534977,0.00000000000000000000,-1.0000000000000000000,-0.0003461538185025039,0.00343346763711208004,0.99999404572103300914,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054537624885142598,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -31 ,0 ,-2.9790383250675400717,-0.0510410121427104998,0.00000000000000000000,-1.0000000000000000000,-0.0002692307498482780,0.00343346763705629004,0.99999406938980794912,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00028502124064289102,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -32 ,0 ,-2.1278844928712601358,-0.0510410103786202995,0.00000000000000000000,-1.0000000000000000000,-0.0001923076796009709,0.00343346763701409983,0.99999408714139004228,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008975499179086909,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -33 ,0 ,-1.2767306857091000882,-0.0510410092025423978,0.00000000000000000000,-1.0000000000000000000,-0.0001153846082157489,0.00343346763698634989,0.99999409897577795636,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000404225057764052,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -34 ,0 ,-0.4255768935674250075,-0.0510410086145189970,0.00000000000000000000,-1.0000000000000000000,-0.0000384615361477773,0.00343346763697225006,0.99999410489297202442,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001055112523999920,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -35 ,0 ,0.42557689356742500752,-0.0510410086145189970,0.00000000000000000000,-1.0000000000000000000,0.00003846153614777730,0.00343346763697225006,0.99999410489297202442,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001055112523999920,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -36 ,0 ,1.27673068570910008823,-0.0510410092025423978,0.00000000000000000000,-1.0000000000000000000,0.00011538460821574899,0.00343346763698634989,0.99999409897577795636,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000404225057764052,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -37 ,0 ,2.12788449287126013587,-0.0510410103786202995,0.00000000000000000000,-1.0000000000000000000,0.00019230767960097099,0.00343346763701409983,0.99999408714139004228,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008975499179086909,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -38 ,0 ,2.97903832506754007170,-0.0510410121427104998,0.00000000000000000000,-1.0000000000000000000,0.00026923074984827800,0.00343346763705629004,0.99999406938980794912,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00028502124064289102,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -39 ,0 ,3.83019219231161978100,-0.0510410144947534977,0.00000000000000000000,-1.0000000000000000000,0.00034615381850250397,0.00343346763711208004,0.99999404572103300914,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054537624885142598,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -40 ,0 ,4.68134610461712963314,-0.0510410174348363970,0.00000000000000000000,-1.0000000000000000000,0.00042307688510848199,0.00343346763718202019,0.99999401613506300190,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087082002528404700,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -41 ,0 ,5.53250007199773996546,-0.0510410209630424993,0.00000000000000000000,-1.0000000000000000000,0.00049999994921104699,0.00343346763726595999,0.99999398063190103602,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00126135257630721991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -42 ,0 ,-5.5325002321981200381,-0.0311649353066715990,0.00000000000000000000,-1.0000000000000000000,-0.0004999999610453660,0.00267267983458408008,0.99999630338443801225,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00132139828815524998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -43 ,0 ,-4.6813462401712797600,-0.0311649331670986982,0.00000000000000000000,-1.0000000000000000000,-0.0004230768951221369,0.00267267983444107988,0.99999633888752004207,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00093086570768719000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -44 ,0 ,-3.8301923032195501761,-0.0311649313842643008,0.00000000000000000000,-1.0000000000000000000,-0.0003461538266954939,0.00267267983432161989,0.99999636847342199263,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060542191124568500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -45 ,0 ,-2.9790384113292600609,-0.0311649299579160009,0.00000000000000000000,-1.0000000000000000000,-0.0002692307562206040,0.00267267983422620012,0.99999639214214297577,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00034506688359670100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -46 ,0 ,-2.1278845544867701633,-0.0311649288881135008,0.00000000000000000000,-1.0000000000000000000,-0.0001923076841526319,0.00267267983415458987,0.99999640989368498988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014980062189806601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -47 ,0 ,-1.2767307226784099238,-0.0311649281749368997,0.00000000000000000000,-1.0000000000000000000,-0.0001153846109467459,0.00267267983410688020,0.99999642172804603656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001962311523584500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -48 ,0 ,-0.4255769058905259916,-0.0311649278183367996,0.00000000000000000000,-1.0000000000000000000,-0.0000384615370581095,0.00267267983408295013,0.99999642764522600479,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000454656357078419,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -49 ,0 ,0.42557690589052599161,-0.0311649278183367996,0.00000000000000000000,-1.0000000000000000000,0.00003846153705810950,0.00267267983408295013,0.99999642764522600479,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000454656357078419,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -50 ,0 ,1.27673072267840992388,-0.0311649281749368997,0.00000000000000000000,-1.0000000000000000000,0.00011538461094674599,0.00267267983410688020,0.99999642172804603656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001962311523584500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -51 ,0 ,2.12788455448677016335,-0.0311649288881135008,0.00000000000000000000,-1.0000000000000000000,0.00019230768415263299,0.00267267983415458987,0.99999640989368498988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014980062189806601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -52 ,0 ,2.97903841132926006096,-0.0311649299579160009,0.00000000000000000000,-1.0000000000000000000,0.00026923075622060400,0.00267267983422620012,0.99999639214214297577,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00034506688359670100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -53 ,0 ,3.83019230321955017615,-0.0311649313842643008,0.00000000000000000000,-1.0000000000000000000,0.00034615382669549399,0.00267267983432161989,0.99999636847342199263,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060542191124568500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -54 ,0 ,4.68134624017127976003,-0.0311649331670986982,0.00000000000000000000,-1.0000000000000000000,0.00042307689512213698,0.00267267983444107988,0.99999633888752004207,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00093086570768719000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -55 ,0 ,5.53250023219812003816,-0.0311649353066715990,0.00000000000000000000,-1.0000000000000000000,0.00049999996104536600,0.00267267983458408008,0.99999630338443801225,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00132139828815524998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -56 ,0 ,-5.5325003468415001606,-0.0161453579272319014,0.00000000000000000000,-1.0000000000000000000,-0.0004999999699211050,0.00191063781544259991,0.99999804972968198146,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00135541876113620999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -57 ,0 ,-4.6813463371772101595,-0.0161453568329858986,0.00000000000000000000,-1.0000000000000000000,-0.0004230769026323780,0.00191063781528439009,0.99999808523270294902,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00096488616350143296,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -58 ,0 ,-3.8301923825880299645,-0.0161453559210881988,0.00000000000000000000,-1.0000000000000000000,-0.0003461538328402370,0.00191063781515204999,0.99999811481855505057,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00063944235239432600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -59 ,0 ,-2.9790384730602998963,-0.0161453551916182005,0.00000000000000000000,-1.0000000000000000000,-0.0002692307609998480,0.00191063781504637996,0.99999813848723595466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00037908731314928402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -60 ,0 ,-2.1278845985803598317,-0.0161453546444502993,0.00000000000000000000,-1.0000000000000000000,-0.0001923076875663780,0.00191063781496736005,0.99999815623874699355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018382103792191598,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -61 ,0 ,-1.2767307491345600833,-0.0161453542797934009,0.00000000000000000000,-1.0000000000000000000,-0.0001153846129949930,0.00191063781491413006,0.99999816807308694599,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005364352716696889,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -62 ,0 ,-0.4255769147092450244,-0.0161453540973221995,0.00000000000000000000,-1.0000000000000000000,-0.0000384615377408587,0.00191063781488789996,0.99999817399025803243,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000114452271873233,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -63 ,0 ,0.42557691470924502441,-0.0161453540973221995,0.00000000000000000000,-1.0000000000000000000,0.00003846153774085870,0.00191063781488789996,0.99999817399025803243,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000114452271873233,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -64 ,0 ,1.27673074913456008339,-0.0161453542797934009,0.00000000000000000000,-1.0000000000000000000,0.00011538461299499300,0.00191063781491413006,0.99999816807308694599,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005364352716696889,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -65 ,0 ,2.12788459858035983174,-0.0161453546444502993,0.00000000000000000000,-1.0000000000000000000,0.00019230768756637800,0.00191063781496736005,0.99999815623874699355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018382103792191598,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -66 ,0 ,2.97903847306029989638,-0.0161453551916182005,0.00000000000000000000,-1.0000000000000000000,0.00026923076099984801,0.00191063781504637996,0.99999813848723595466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00037908731314928402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -67 ,0 ,3.83019238258802996455,-0.0161453559210881988,0.00000000000000000000,-1.0000000000000000000,0.00034615383284023701,0.00191063781515204999,0.99999811481855505057,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00063944235239432600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -68 ,0 ,4.68134633717721015955,-0.0161453568329858986,0.00000000000000000000,-1.0000000000000000000,0.00042307690263237800,0.00191063781528439009,0.99999808523270294902,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00096488616350143296,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -69 ,0 ,5.53250034684150016062,-0.0161453579272319014,0.00000000000000000000,-1.0000000000000000000,0.00049999996992110501,0.00191063781544259991,0.99999804972968198146,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00135541876113620999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -70 ,0 ,-5.5325004196011695611,-0.0060060257764416001,0.00000000000000000000,-1.0000000000000000000,-0.0004999999758382650,0.00114733466092053993,0.99999921681129300132,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137076057922059005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -71 ,0 ,-4.6813463987430798951,-0.0060060253816098798,0.00000000000000000000,-1.0000000000000000000,-0.0004230769076392049,0.00114733466079128005,0.99999925231427300165,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098022796976238190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -72 ,0 ,-3.8301924329601000351,-0.0060060250524556196,0.00000000000000000000,-1.0000000000000000000,-0.0003461538369367320,0.00114733466068415003,0.99999928190009101935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065478414796871198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -73 ,0 ,-2.9790385122385698579,-0.0060060247892508300,0.00000000000000000000,-1.0000000000000000000,-0.0002692307641860109,0.00114733466059830009,0.99999930556874494502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039442909985609698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -74 ,0 ,-2.1278846265648398983,-0.0060060245917388198,0.00000000000000000000,-1.0000000000000000000,-0.0001923076898422090,0.00114733466053376989,0.99999932332023500070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019916282167287100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -75 ,0 ,-1.2767307659252500329,-0.0060060244601718403,0.00000000000000000000,-1.0000000000000000000,-0.0001153846143604919,0.00114733466049060997,0.99999933515456296273,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006898530864418719,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -76 ,0 ,-0.4255769203061410266,-0.0060060243942809997,0.00000000000000000000,-1.0000000000000000000,-0.0000384615381960247,0.00114733466046910005,0.99999934107172594455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000389655042454251,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -77 ,0 ,0.42557692030614102662,-0.0060060243942809997,0.00000000000000000000,-1.0000000000000000000,0.00003846153819602479,0.00114733466046910005,0.99999934107172594455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000389655042454251,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -78 ,0 ,1.27673076592525003292,-0.0060060244601718403,0.00000000000000000000,-1.0000000000000000000,0.00011538461436049199,0.00114733466049060997,0.99999933515456296273,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006898530864418719,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -79 ,0 ,2.12788462656483989832,-0.0060060245917388198,0.00000000000000000000,-1.0000000000000000000,0.00019230768984220900,0.00114733466053376989,0.99999932332023500070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019916282167287100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -80 ,0 ,2.97903851223856985797,-0.0060060247892508300,0.00000000000000000000,-1.0000000000000000000,0.00026923076418601098,0.00114733466059830009,0.99999930556874494502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039442909985609698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -81 ,0 ,3.83019243296010003518,-0.0060060250524556196,0.00000000000000000000,-1.0000000000000000000,0.00034615383693673202,0.00114733466068415003,0.99999928190009101935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065478414796871198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -82 ,0 ,4.68134639874307989515,-0.0060060253816098798,0.00000000000000000000,-1.0000000000000000000,0.00042307690763920499,0.00114733466079128005,0.99999925231427300165,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098022796976238190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -83 ,0 ,5.53250041960116956119,-0.0060060257764416001,0.00000000000000000000,-1.0000000000000000000,0.00049999997583826500,0.00114733466092053993,0.99999921681129300132,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137076057922059005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -84 ,0 ,-5.5325004541866702467,-0.0007709144402204269,0.00000000000000000000,-1.0000000000000000000,-0.0004999999787968440,0.00038276338507636797,0.99999980174608604777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137484281935940002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -85 ,0 ,-4.6813464280077301538,-0.0007709143962607020,0.00000000000000000000,-1.0000000000000000000,-0.0004230769101426190,0.00038276338502193902,0.99999983724904595305,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098431020501266197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -86 ,0 ,-3.8301924569038998669,-0.0007709143596528189,0.00000000000000000000,-1.0000000000000000000,-0.0003461538389849799,0.00038276338497672502,0.99999986683484598515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065886637855783203,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -87 ,0 ,-2.9790385308615299209,-0.0007709143303404329,0.00000000000000000000,-1.0000000000000000000,-0.0002692307657790929,0.00038276338494039297,0.99999989050348703223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039851132783041997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -88 ,0 ,-2.1278846398669499784,-0.0007709143083045040,0.00000000000000000000,-1.0000000000000000000,-0.0001923076909801239,0.00038276338491319300,0.99999990825496698487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020324504612290200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -89 ,0 ,-1.2767307739065199001,-0.0007709142936063170,0.00000000000000000000,-1.0000000000000000000,-0.0001153846150432410,0.00038276338489506801,0.99999992008928795250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007306752888780469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -90 ,0 ,-0.4255769229665630204,-0.0007709142863444600,0.00000000000000000000,-1.0000000000000000000,-0.0000384615384236079,0.00038276338488607602,0.99999992600644804774,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000797877305558358,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -91 ,0 ,0.42557692296656302044,-0.0007709142863444600,0.00000000000000000000,-1.0000000000000000000,0.00003846153842360790,0.00038276338488607602,0.99999992600644804774,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000797877305558358,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -92 ,0 ,1.27673077390651990015,-0.0007709142936063170,0.00000000000000000000,-1.0000000000000000000,0.00011538461504324100,0.00038276338489506801,0.99999992008928795250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007306752888780469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -93 ,0 ,2.12788463986694997842,-0.0007709143083045040,0.00000000000000000000,-1.0000000000000000000,0.00019230769098012398,0.00038276338491319300,0.99999990825496698487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020324504612290200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -94 ,0 ,2.97903853086152992091,-0.0007709143303404329,0.00000000000000000000,-1.0000000000000000000,0.00026923076577909299,0.00038276338494039297,0.99999989050348703223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039851132783041997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -95 ,0 ,3.83019245690389986691,-0.0007709143596528189,0.00000000000000000000,-1.0000000000000000000,0.00034615383898497999,0.00038276338497672502,0.99999986683484598515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065886637855783203,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -96 ,0 ,4.68134642800773015380,-0.0007709143962607020,0.00000000000000000000,-1.0000000000000000000,0.00042307691014261902,0.00038276338502193902,0.99999983724904595305,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098431020501266197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -97 ,0 ,5.53250045418667024677,-0.0007709144402204269,0.00000000000000000000,-1.0000000000000000000,0.00049999997879684402,0.00038276338507636797,0.99999980174608604777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137484281935940002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -98 ,0 ,-5.5325004543443201399,-0.0004642413950640129,0.00000000000000000000,-1.0000000000000000000,-0.0004999999787968440,-0.0003830830659691810,0.99999980162367296809,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137515811491084995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -99 ,0 ,-4.6813464281411203415,-0.0004642413510152489,0.00000000000000000000,-1.0000000000000000000,-0.0004230769101426190,-0.0003830830659035939,0.99999983712663298440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098462550170097507,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -100 ,0 ,-3.8301924570130401193,-0.0004642413141975330,0.00000000000000000000,-1.0000000000000000000,-0.0003461538389849799,-0.0003830830658483609,0.99999986671243301650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065918167422296402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -101 ,0 ,-2.9790385309464197938,-0.0004642412848368529,0.00000000000000000000,-1.0000000000000000000,-0.0002692307657790929,-0.0003830830658045630,0.99999989038107395256,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039882662315449097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -102 ,0 ,-2.1278846399275899159,-0.0004642412627091639,0.00000000000000000000,-1.0000000000000000000,-0.0001923076909801239,-0.0003830830657715890,0.99999990813255401622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020356034417545699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -103 ,0 ,-1.2767307739428999102,-0.0004642412480632129,0.00000000000000000000,-1.0000000000000000000,-0.0001153846150432410,-0.0003830830657496060,0.99999991996687398465,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007338282694036020,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -104 ,0 ,-0.4255769229786899865,-0.0004642412407763199,0.00000000000000000000,-1.0000000000000000000,-0.0000384615384236079,-0.0003830830657388100,0.99999992588403496807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000829406769753404,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -105 ,0 ,0.42557692297868998654,-0.0004642412407763199,0.00000000000000000000,-1.0000000000000000000,0.00003846153842360790,-0.0003830830657388100,0.99999992588403496807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000829406769753404,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -106 ,0 ,1.27673077394289991026,-0.0004642412480632129,0.00000000000000000000,-1.0000000000000000000,0.00011538461504324100,-0.0003830830657496060,0.99999991996687398465,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007338282694036020,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -107 ,0 ,2.12788463992758991594,-0.0004642412627091639,0.00000000000000000000,-1.0000000000000000000,0.00019230769098012398,-0.0003830830657715890,0.99999990813255401622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020356034417545699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -108 ,0 ,2.97903853094641979382,-0.0004642412848368529,0.00000000000000000000,-1.0000000000000000000,0.00026923076577909299,-0.0003830830658045630,0.99999989038107395256,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039882662315449097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -109 ,0 ,3.83019245701304011930,-0.0004642413141975330,0.00000000000000000000,-1.0000000000000000000,0.00034615383898497999,-0.0003830830658483609,0.99999986671243301650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00065918167422296402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -110 ,0 ,4.68134642814112034159,-0.0004642413510152489,0.00000000000000000000,-1.0000000000000000000,0.00042307691014261902,-0.0003830830659035939,0.99999983712663298440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098462550170097507,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -111 ,0 ,5.53250045434432013991,-0.0004642413950640129,0.00000000000000000000,-1.0000000000000000000,0.00049999997879684402,-0.0003830830659691810,0.99999980162367296809,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137515811491084995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -112 ,0 ,-5.5325004238577397686,-0.0051104693205330500,0.00000000000000000000,-1.0000000000000000000,-0.0004999999758382650,-0.0011502118149558598,0.99999921350609299874,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137927371872592998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -113 ,0 ,-4.6813464023447899364,-0.0051104689226515497,0.00000000000000000000,-1.0000000000000000000,-0.0004230769076392049,-0.0011502118147236300,0.99999924900907399827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098874110926772096,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -114 ,0 ,-3.8301924359069499104,-0.0051104685910918802,0.00000000000000000000,-1.0000000000000000000,-0.0003461538369367320,-0.0011502118145300399,0.99999927859489101678,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066329728633718299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -115 ,0 ,-2.9790385145305697811,-0.0051104683258826897,0.00000000000000000000,-1.0000000000000000000,-0.0002692307641860109,-0.0011502118143751100,0.99999930226354505347,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040294223811088202,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -116 ,0 ,-2.1278846282019800995,-0.0051104681269142897,0.00000000000000000000,-1.0000000000000000000,-0.0001923076898422090,-0.0011502118142591199,0.99999932001503599732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020767596015502899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -117 ,0 ,-1.2767307669075400600,-0.0051104679943518903,0.00000000000000000000,-1.0000000000000000000,-0.0001153846143604919,-0.0011502118141818499,0.99999933184936296015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007749844473892149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -118 ,0 ,-0.4255769206335690002,-0.0051104679281248595,0.00000000000000000000,-1.0000000000000000000,-0.0000384615381960247,-0.0011502118141434600,0.99999933776652705219,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001240968754245840,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -119 ,0 ,0.42557692063356900025,-0.0051104679281248595,0.00000000000000000000,-1.0000000000000000000,0.00003846153819602479,-0.0011502118141434600,0.99999933776652705219,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001240968754245840,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -120 ,0 ,1.27673076690754006001,-0.0051104679943518903,0.00000000000000000000,-1.0000000000000000000,0.00011538461436049199,-0.0011502118141818499,0.99999933184936296015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007749844473892149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -121 ,0 ,2.12788462820198009950,-0.0051104681269142897,0.00000000000000000000,-1.0000000000000000000,0.00019230768984220900,-0.0011502118142591199,0.99999932001503599732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020767596015502899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -122 ,0 ,2.97903851453056978115,-0.0051104683258826897,0.00000000000000000000,-1.0000000000000000000,0.00026923076418601098,-0.0011502118143751100,0.99999930226354505347,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040294223811088202,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -123 ,0 ,3.83019243590694991041,-0.0051104685910918802,0.00000000000000000000,-1.0000000000000000000,0.00034615383693673202,-0.0011502118145300399,0.99999927859489101678,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066329728633718299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -124 ,0 ,4.68134640234478993647,-0.0051104689226515497,0.00000000000000000000,-1.0000000000000000000,0.00042307690763920499,-0.0011502118147236300,0.99999924900907399827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00098874110926772096,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -125 ,0 ,5.53250042385773976860,-0.0051104693205330500,0.00000000000000000000,-1.0000000000000000000,0.00049999997583826500,-0.0011502118149558598,0.99999921350609299874,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00137927371872592998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -126 ,0 ,-5.5325003665484100423,-0.0147343094711111996,0.00000000000000000000,-1.0000000000000000000,-0.0004999999699211050,-0.0019186300544280800,0.99999803442744095161,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00139483258635664003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -127 ,0 ,-4.6813463538522803730,-0.0147343083632423006,0.00000000000000000000,-1.0000000000000000000,-0.0004230769026323780,-0.0019186300539828799,0.99999806993046302938,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00100429998281015005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -128 ,0 ,-3.8301923962312698357,-0.0147343074400049997,0.00000000000000000000,-1.0000000000000000000,-0.0003461538328402370,-0.0019186300536123100,0.99999809951631501991,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00067885616419971494,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -129 ,0 ,-2.9790384836717098693,-0.0147343067014013996,0.00000000000000000000,-1.0000000000000000000,-0.0002692307609998480,-0.0019186300533156899,0.99999812318499703422,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041850112279462299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -130 ,0 ,-2.1278846061599399064,-0.0147343061475014008,0.00000000000000000000,-1.0000000000000000000,-0.0001923076875663780,-0.0019186300530930099,0.99999814093650796209,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022323484779462901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -131 ,0 ,-1.2767307536823100377,-0.0147343057781587991,0.00000000000000000000,-1.0000000000000000000,-0.0001153846129949930,-0.0019186300529446499,0.99999815277084902476,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00009305733317432900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -132 ,0 ,-0.4255769162251599735,-0.0147343055935059003,0.00000000000000000000,-1.0000000000000000000,-0.0000384615377408587,-0.0019186300528703798,0.99999815868802000018,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002796857916109729,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -133 ,0 ,0.42557691622515997353,-0.0147343055935059003,0.00000000000000000000,-1.0000000000000000000,0.00003846153774085870,-0.0019186300528703798,0.99999815868802000018,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002796857916109729,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -134 ,0 ,1.27673075368231003778,-0.0147343057781587991,0.00000000000000000000,-1.0000000000000000000,0.00011538461299499300,-0.0019186300529446499,0.99999815277084902476,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00009305733317432900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -135 ,0 ,2.12788460615993990643,-0.0147343061475014008,0.00000000000000000000,-1.0000000000000000000,0.00019230768756637800,-0.0019186300530930099,0.99999814093650796209,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022323484779462901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -136 ,0 ,2.97903848367170986932,-0.0147343067014013996,0.00000000000000000000,-1.0000000000000000000,0.00026923076099984801,-0.0019186300533156899,0.99999812318499703422,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041850112279462299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -137 ,0 ,3.83019239623126983573,-0.0147343074400049997,0.00000000000000000000,-1.0000000000000000000,0.00034615383284023701,-0.0019186300536123100,0.99999809951631501991,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00067885616419971494,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -138 ,0 ,4.68134635385228037307,-0.0147343083632423006,0.00000000000000000000,-1.0000000000000000000,0.00042307690263237800,-0.0019186300539828799,0.99999806993046302938,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00100429998281015005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -139 ,0 ,5.53250036654841004235,-0.0147343094711111996,0.00000000000000000000,-1.0000000000000000000,0.00049999996992110501,-0.0019186300544280800,0.99999803442744095161,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00139483258635664003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -140 ,0 ,-5.5325002862762096000,-0.0293607251074722991,0.00000000000000000000,-1.0000000000000000000,-0.0004999999610453660,-0.0026883450476948601,0.99999626139348296582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00142955447074655001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -141 ,0 ,-4.6813462859296599560,-0.0293607229305367992,0.00000000000000000000,-1.0000000000000000000,-0.0004230768951221369,-0.0026883450469894999,0.99999629689656799325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103902187731819009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -142 ,0 ,-3.8301923406582201181,-0.0293607211164080006,0.00000000000000000000,-1.0000000000000000000,-0.0003461538266954939,-0.0026883450464019200,0.99999632648247205324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00071357806871219498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -143 ,0 ,-2.9790384404482201929,-0.0293607196650901985,0.00000000000000000000,-1.0000000000000000000,-0.0002692307562206040,-0.0026883450459315701,0.99999635015119603398,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045322303037664802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -144 ,0 ,-2.1278845752860200413,-0.0293607185766572992,0.00000000000000000000,-1.0000000000000000000,-0.0001923076841526319,-0.0026883450455790799,0.99999636790273904729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025795676049256100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -145 ,0 ,-1.2767307351579599838,-0.0293607178510528997,0.00000000000000000000,-1.0000000000000000000,-0.0001153846109467459,-0.0026883450453440700,0.99999637973710098215,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012777924996498800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -146 ,0 ,-0.4255769100503780100,-0.0293607174881133983,0.00000000000000000000,-1.0000000000000000000,-0.0000384615370581095,-0.0026883450452264701,0.99999638565428194958,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006269049492857449,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -147 ,0 ,0.42557691005037801001,-0.0293607174881133983,0.00000000000000000000,-1.0000000000000000000,0.00003846153705810950,-0.0026883450452264701,0.99999638565428194958,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006269049492857449,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -148 ,0 ,1.27673073515795998389,-0.0293607178510528997,0.00000000000000000000,-1.0000000000000000000,0.00011538461094674599,-0.0026883450453440700,0.99999637973710098215,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012777924996498800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -149 ,0 ,2.12788457528602004131,-0.0293607185766572992,0.00000000000000000000,-1.0000000000000000000,0.00019230768415263299,-0.0026883450455790799,0.99999636790273904729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025795676049256100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -150 ,0 ,2.97903844044822019299,-0.0293607196650901985,0.00000000000000000000,-1.0000000000000000000,0.00026923075622060400,-0.0026883450459315701,0.99999635015119603398,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045322303037664802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -151 ,0 ,3.83019234065822011814,-0.0293607211164080006,0.00000000000000000000,-1.0000000000000000000,0.00034615382669549399,-0.0026883450464019200,0.99999632648247205324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00071357806871219498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -152 ,0 ,4.68134628592965995608,-0.0293607229305367992,0.00000000000000000000,-1.0000000000000000000,0.00042307689512213698,-0.0026883450469894999,0.99999629689656799325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103902187731819009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -153 ,0 ,5.53250028627620960008,-0.0293607251074722991,0.00000000000000000000,-1.0000000000000000000,0.00049999996104536600,-0.0026883450476948601,0.99999626139348296582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00142955447074655001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -154 ,0 ,-5.5325001869399796916,-0.0490149349890555974,0.00000000000000000000,-1.0000000000000000000,-0.0004999999492110469,-0.0034593641298053300,0.99999389138127603438,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00149123706739828993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -155 ,0 ,-4.6813462018759297578,-0.0490149313813615025,0.00000000000000000000,-1.0000000000000000000,-0.0004230768851084819,-0.0034593641287923599,0.99999392688444499466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00110070448351962005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -156 ,0 ,-3.8301922718869900741,-0.0490149283750205000,0.00000000000000000000,-1.0000000000000000000,-0.0003461538185025039,-0.0034593641279483900,0.99999395647041999790,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00077526068048427998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -157 ,0 ,-2.9790383869595000732,-0.0490149259698023018,0.00000000000000000000,-1.0000000000000000000,-0.0002692307498482780,-0.0034593641272726801,0.99999398013920004490,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00051490565078893301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -158 ,0 ,-2.1278845370797898617,-0.0490149241660247023,0.00000000000000000000,-1.0000000000000000000,-0.0001923076796009709,-0.0034593641267664501,0.99999399789078502465,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031963938442913802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -159 ,0 ,-1.2767307122342199665,-0.0490149229634138025,0.00000000000000000000,-1.0000000000000000000,-0.0001153846082157489,-0.0034593641264286699,0.99999400972517504815,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018946187594792699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -160 ,0 ,-0.4255769024091309860,-0.0490149223622134005,0.00000000000000000000,-1.0000000000000000000,-0.0000384615361477773,-0.0034593641262597998,0.99999401564237000439,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012437312523161400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -161 ,0 ,0.42557690240913098600,-0.0490149223622134005,0.00000000000000000000,-1.0000000000000000000,0.00003846153614777730,-0.0034593641262597998,0.99999401564237000439,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012437312523161400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -162 ,0 ,1.27673071223421996656,-0.0490149229634138025,0.00000000000000000000,-1.0000000000000000000,0.00011538460821574899,-0.0034593641264286699,0.99999400972517504815,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018946187594792699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -163 ,0 ,2.12788453707978986173,-0.0490149241660247023,0.00000000000000000000,-1.0000000000000000000,0.00019230767960097099,-0.0034593641267664501,0.99999399789078502465,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031963938442913802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -164 ,0 ,2.97903838695950007320,-0.0490149259698023018,0.00000000000000000000,-1.0000000000000000000,0.00026923074984827800,-0.0034593641272726801,0.99999398013920004490,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00051490565078893301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -165 ,0 ,3.83019227188699007413,-0.0490149283750205000,0.00000000000000000000,-1.0000000000000000000,0.00034615381850250397,-0.0034593641279483900,0.99999395647041999790,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00077526068048427998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -166 ,0 ,4.68134620187592975781,-0.0490149313813615025,0.00000000000000000000,-1.0000000000000000000,0.00042307688510848199,-0.0034593641287923599,0.99999392688444499466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00110070448351962005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -167 ,0 ,5.53250018693997969165,-0.0490149349890555974,0.00000000000000000000,-1.0000000000000000000,0.00049999994921104699,-0.0034593641298053300,0.99999389138127603438,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00149123706739828993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -168 ,0 ,-5.5325000724780997174,-0.0737224169291375019,0.00000000000000000000,-1.0000000000000000000,-0.0004999999344181489,-0.0042316947085464500,0.99999092133876799071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00158775714294278995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -169 ,0 ,-4.6813461050235796179,-0.0737224115262024998,0.00000000000000000000,-1.0000000000000000000,-0.0004230768725914139,-0.0042316947071773204,0.99999095684204297729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00119722456747694996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -170 ,0 ,-3.8301921926441702126,-0.0737224070237774004,0.00000000000000000000,-1.0000000000000000000,-0.0003461538082612659,-0.0042316947060362401,0.99999098642810602122,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087178077342286997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -171 ,0 ,-2.9790383253261900620,-0.0737224034218603996,0.00000000000000000000,-1.0000000000000000000,-0.0002692307418828710,-0.0042316947051237200,0.99999101009695601227,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00061142575032135904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -172 ,0 ,-2.1278844930559999149,-0.0737224007204248937,0.00000000000000000000,-1.0000000000000000000,-0.0001923076739113949,-0.0042316947044387697,0.99999102784859394965,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041615948657636197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -173 ,0 ,-1.2767306858199500840,-0.0737223989194673023,0.00000000000000000000,-1.0000000000000000000,-0.0001153846048020029,-0.0042316947039831003,0.99999103968301894518,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00028598198377949302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -174 ,0 ,-0.4255768936043740069,-0.0737223980189653932,0.00000000000000000000,-1.0000000000000000000,-0.0000384615350098619,-0.0042316947037545297,0.99999104560023199805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022089323283580600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -175 ,0 ,0.42557689360437400694,-0.0737223980189653932,0.00000000000000000000,-1.0000000000000000000,0.00003846153500986199,-0.0042316947037545297,0.99999104560023199805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022089323283580600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -176 ,0 ,1.27673068581995008408,-0.0737223989194673023,0.00000000000000000000,-1.0000000000000000000,0.00011538460480200299,-0.0042316947039831003,0.99999103968301894518,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00028598198377949302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -177 ,0 ,2.12788449305601012895,-0.0737224007204248937,0.00000000000000000000,-1.0000000000000000000,0.00019230767391139499,-0.0042316947044387697,0.99999102784859394965,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041615948657636197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -178 ,0 ,2.97903832532619006201,-0.0737224034218603996,0.00000000000000000000,-1.0000000000000000000,0.00026923074188287102,-0.0042316947051237200,0.99999101009695601227,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00061142575032135904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -179 ,0 ,3.83019219264417021264,-0.0737224070237774004,0.00000000000000000000,-1.0000000000000000000,0.00034615380826126599,-0.0042316947060362401,0.99999098642810602122,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087178077342286997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -180 ,0 ,4.68134610502357961792,-0.0737224115262024998,0.00000000000000000000,-1.0000000000000000000,0.00042307687259141398,-0.0042316947071773204,0.99999095684204297729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00119722456747694996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -181 ,0 ,5.53250007247809971744,-0.0737224169291375019,0.00000000000000000000,-1.0000000000000000000,0.00049999993441814897,-0.0042316947085464500,0.99999092133876799071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00158775714294278995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -182 ,0 ,-5.5324999468690903015,-0.1035089114136970023,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,-0.0050053442654487403,0.99998734818440004890,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00172707170213470991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -183 ,0 ,-4.6813459987390402261,-0.1035089038482499973,0.00000000000000000000,-1.0000000000000000000,-0.0004230768575709329,-0.0050053442636747999,0.99998738368780204499,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00133653913599118996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -184 ,0 ,-3.8301921056840901869,-0.1035088975437900016,0.00000000000000000000,-1.0000000000000000000,-0.0003461537959717820,-0.0050053442621964001,0.99998741327397000500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00101109534762144990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -185 ,0 ,-2.9790382576905800604,-0.1035088925001159954,0.00000000000000000000,-1.0000000000000000000,-0.0002692307323243830,-0.0050053442610135702,0.99998743694290603833,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00075074032929478594,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -186 ,0 ,-2.1278844447448599375,-0.1035088887173999938,0.00000000000000000000,-1.0000000000000000000,-0.0001923076670839029,-0.0050053442601265497,0.99998745469460703638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00055547406850564595,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -187 ,0 ,-1.2767306568332599248,-0.1035088861955749950,0.00000000000000000000,-1.0000000000000000000,-0.0001153846007055080,-0.0050053442595356699,0.99998746652907499754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00042529656866463499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -188 ,0 ,-0.4255768839421449900,-0.1035088849347149952,0.00000000000000000000,-1.0000000000000000000,-0.0000384615336443635,-0.0050053442592397903,0.99998747244630903363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036020781908519000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -189 ,0 ,0.42557688394214499005,-0.1035088849347149952,0.00000000000000000000,-1.0000000000000000000,0.00003846153364436359,-0.0050053442592397903,0.99998747244630903363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036020781908519000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -190 ,0 ,1.27673065683325992480,-0.1035088861955749950,0.00000000000000000000,-1.0000000000000000000,0.00011538460070550800,-0.0050053442595356699,0.99998746652907499754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00042529656866463499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -191 ,0 ,2.12788444474485993751,-0.1035088887173999938,0.00000000000000000000,-1.0000000000000000000,0.00019230766708390299,-0.0050053442601265497,0.99998745469460703638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00055547406850564595,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -192 ,0 ,2.97903825769058006045,-0.1035088925001159954,0.00000000000000000000,-1.0000000000000000000,0.00026923073232438301,-0.0050053442610135702,0.99998743694290603833,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00075074032929478594,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -193 ,0 ,3.83019210568409018691,-0.1035088975437900016,0.00000000000000000000,-1.0000000000000000000,0.00034615379597178200,-0.0050053442621964001,0.99998741327397000500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00101109534762144990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -194 ,0 ,4.68134599873904022615,-0.1035089038482499973,0.00000000000000000000,-1.0000000000000000000,0.00042307685757093298,-0.0050053442636747999,0.99998738368780204499,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00133653913599118996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -195 ,0 ,5.53249994686909030150,-0.1035089114136970023,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,-0.0050053442654487403,0.99998734818440004890,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00172707170213470991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -196 ,0 ,-5.5324996004110502667,-0.1052689433323930057,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,0.00495130793916306963,0.99998761719822104598,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00103415551279795008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -197 ,0 ,-4.6813457055822800256,-0.1052689360067270013,0.00000000000000000000,-1.0000000000000000000,-0.0004230768575709329,0.00495130793932834975,0.99998765270160294704,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00064362304453879904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -198 ,0 ,-3.8301918658285800667,-0.1052689299020110047,0.00000000000000000000,-1.0000000000000000000,-0.0003461537959717820,0.00495130793946596970,0.99998768228775603006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031817933813727000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -199 ,0 ,-2.9790380711363098065,-0.1052689250183270058,0.00000000000000000000,-1.0000000000000000000,-0.0002692307323243830,0.00495130793957607000,0.99998770595667796357,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005782438404366989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/CylinderDefault.rayx.csv b/Intern/RAY-Core/tests/output/CylinderDefault.rayx.csv deleted file mode 100644 index 93796a84f..000000000 --- a/Intern/RAY-Core/tests/output/CylinderDefault.rayx.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-5.5324996004110484904,-0.1052689433153378845,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00495130793918071004,0.99998761719822049087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010341555116610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-4.6813457055822755847,-0.1052689359895805643,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00495130793934610811,0.99998765270160316909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006436230432882,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,-3.8301918658285831753,-0.1052689298850338212,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00495130793948350862,0.99998768228775580801,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003181793363182,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,-2.9790380711363129151,-0.1052689250015643035,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00495130793959354040,0.99998770595667818561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000578243852942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-2.1278843114918162271,-0.1052689213378861232,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,0.00495130793967609676,0.99998772370837007983,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998625581793021,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-1.2767305768814414257,-0.1052689188971109440,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,0.00495130793973130867,0.99998773554283115760,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997323807074280,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,-0.4255768572915387126,-0.1052689176755418759,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,0.00495130793975870862,0.99998774146006197405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996672919733100,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,0.42557685729153871267,-0.1052689176755418759,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,0.00495130793975870862,0.99998774146006197405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996672919733100,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,1.27673057688144142574,-0.1052689188971109440,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,0.00495130793973130867,0.99998773554283115760,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997323807074280,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,2.12788431149181667123,-0.1052689213378861232,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,0.00495130793967609676,0.99998772370837007983,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998625581793021,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,2.97903807113631291514,-0.1052689250015643035,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,0.00495130793959354040,0.99998770595667818561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000578243852942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,3.83019186582858317535,-0.1052689298850338212,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,0.00495130793948350862,0.99998768228775580801,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003181793363182,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,4.68134570558227647296,-0.1052689359895805643,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,0.00495130793934610811,0.99998765270160316909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006436230432882,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,5.53249960041104849040,-0.1052689433153378845,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,0.00495130793918071004,0.99998761719822049087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010341555116610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,-5.5324998626028234482,-0.0757501133658783215,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,0.00419300807629373502,0.99999108430192384933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011680065290420,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,-4.6813459274368325324,-0.0757501081077115306,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,0.00419300807631259059,0.99999111980518673448,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007774740115564,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-3.8301920473459305505,-0.0757501037265893434,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,0.00419300807632876429,0.99999114939123956435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004520302682067,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-2.9790382123164627081,-0.0757501002216710433,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,0.00419300807634125690,0.99999117306008189487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001916752826218,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,-2.1278844123347755434,-0.0757500975926663072,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,0.00419300807635082824,0.99999119081171405909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999964090548019,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,-1.2767306373872144842,-0.0757500958404693502,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,0.00419300807635703595,0.99999120264613527986,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998662315683759,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -20 ,0 ,-0.4255768774601294546,-0.0757500949633296560,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,0.00419300807636027034,0.99999120856334600127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998011428288009,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,0 ,0.42557687746012945462,-0.0757500949633296560,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,0.00419300807636027034,0.99999120856334600127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998011428288009,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,0 ,1.27673063738721448423,-0.0757500958404693502,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,0.00419300807635703595,0.99999120264613527986,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998662315683759,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -23 ,0 ,2.12788441233477598757,-0.0757500975926663072,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,0.00419300807635082824,0.99999119081171405909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999964090548019,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -24 ,0 ,2.97903821231646270817,-0.0757501002216710433,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,0.00419300807634125690,0.99999117306008189487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001916752826218,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,0 ,3.83019204734593055050,-0.0757501037265893434,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,0.00419300807632876429,0.99999114939123956435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004520302682067,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,0 ,4.68134592743683342064,-0.0757501081077115306,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,0.00419300807631259059,0.99999111980518673448,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007774740115564,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -27 ,0 ,5.53249986260282344829,-0.0757501133658783215,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,0.00419300807629373502,0.99999108430192384933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011680065290420,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -28 ,0 ,-5.5325000719977426300,-0.0510410209511804116,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,0.00343346763727807877,0.99999398063190081398,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012613525759661,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -29 ,0 ,-4.6813461046171305213,-0.0510410174226627391,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,0.00343346763719416065,0.99999401613506333497,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008708200275577,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,0 ,-3.8301921923116171164,-0.0510410144826281414,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,0.00343346763712468238,0.99999404572103256505,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005453762496472,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,0 ,-2.9790383250675431803,-0.0510410121310130859,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,0.00343346763706829389,0.99999406938980806014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002850212422345,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -32 ,0 ,-2.1278844928712574713,-0.0510410103666757569,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,0.00343346763702664578,0.99999408714138993126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000897549925866,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -33 ,0 ,-1.2767306857091023086,-0.0510410091906037255,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,0.00343346763699871890,0.99999409897577784533,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999595774934277,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -34 ,0 ,-0.4255768935674251185,-0.0510410086024323042,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,0.00343346763698442261,0.99999410489297169135,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998944887465768,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -35 ,0 ,0.42557689356742511854,-0.0510410086024323042,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,0.00343346763698442261,0.99999410489297169135,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998944887465768,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,0 ,1.27673068570910230867,-0.0510410091906037255,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,0.00343346763699871890,0.99999409897577784533,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999595774934277,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,0 ,2.12788449287125791542,-0.0510410103666757569,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,0.00343346763702664578,0.99999408714138993126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000897549925866,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -38 ,0 ,2.97903832506754318032,-0.0510410121310130859,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,0.00343346763706829389,0.99999406938980806014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002850212422345,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -39 ,0 ,3.83019219231161711647,-0.0510410144826281414,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,0.00343346763712468238,0.99999404572103256505,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005453762496472,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -40 ,0 ,4.68134610461713140949,-0.0510410174226627391,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,0.00343346763719416065,0.99999401613506333497,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008708200275577,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,0 ,5.53250007199774263000,-0.0510410209511804116,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,0.00343346763727807877,0.99999398063190081398,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012613525759661,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -42 ,0 ,-5.5325002321981173736,-0.0311649352972233131,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,0.00267267983459367440,0.99999630338443767918,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013213982856541,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -43 ,0 ,-4.6813462401712806482,-0.0311649331577874451,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,0.00267267983445030471,0.99999633888751948695,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009308657081419,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,0 ,-3.8301923032195479557,-0.0311649313750618772,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,0.00267267983433108150,0.99999636847342165957,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006054219102225,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,0 ,-2.9790384113292627255,-0.0311649299486440982,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,0.00267267983423593756,0.99999639214214330884,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003450668846198,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,0 ,-2.1278845544867679429,-0.0311649288789428331,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,0.00267267983416399857,0.99999640989368465682,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001498006204201,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -47 ,0 ,-1.2767307226784072593,-0.0311649281656878884,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,0.00267267983411600745,0.99999642172804570350,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000196231158042,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -48 ,0 ,-0.4255769058905265467,-0.0311649278086710973,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,0.00267267983409217061,0.99999642764522600479,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999545343653153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -49 ,0 ,0.42557690589052654672,-0.0311649278086710973,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,0.00267267983409217061,0.99999642764522600479,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999545343653153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -50 ,0 ,1.27673072267840725935,-0.0311649281656878884,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,0.00267267983411600745,0.99999642172804570350,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000196231158042,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -51 ,0 ,2.12788455448676838699,-0.0311649288789428331,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,0.00267267983416399857,0.99999640989368465682,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001498006204201,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,0 ,2.97903841132926272550,-0.0311649299486440982,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,0.00267267983423593756,0.99999639214214330884,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003450668846198,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -53 ,0 ,3.83019230321954795570,-0.0311649313750618772,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,0.00267267983433108150,0.99999636847342165957,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006054219102225,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -54 ,0 ,4.68134624017128153639,-0.0311649331577874451,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,0.00267267983445030471,0.99999633888751948695,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009308657081419,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -55 ,0 ,5.53250023219811737362,-0.0311649352972233131,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,0.00267267983459367440,0.99999630338443767918,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013213982856541,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -56 ,0 ,-5.5325003468414974960,-0.0161453579203043526,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,0.00191063781544916714,0.99999804972968231453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013554187607951,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -57 ,0 ,-4.6813463371772074950,-0.0161453568263398537,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,0.00191063781529102151,0.99999808523270328208,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009648861632740,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -58 ,0 ,-3.8301923825880264118,-0.0161453559143680328,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,0.00191063781515872326,0.99999811481855449546,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006394423508027,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -59 ,0 ,-2.9790384730602976759,-0.0161453551853660733,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,0.00191063781505312825,0.99999813848723562159,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003790873142861,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -60 ,0 ,-2.1278845985803620521,-0.0161453546381223021,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,0.00191063781497408753,0.99999815623874677150,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001838210391724,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -61 ,0 ,-1.2767307491345629699,-0.0161453542734491632,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,0.00191063781492123311,0.99999816807308750110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000536435272806,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,0 ,-0.4255769147092448023,-0.0161453540911309263,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,0.00191063781489478703,0.99999817399025792141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999885547713347,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -63 ,0 ,0.42557691470924480237,-0.0161453540911309263,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,0.00191063781489478703,0.99999817399025792141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999885547713347,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -64 ,0 ,1.27673074913456296997,-0.0161453542734491632,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,0.00191063781492123311,0.99999816807308750110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000536435272806,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -65 ,0 ,2.12788459858036249627,-0.0161453546381223021,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,0.00191063781497408753,0.99999815623874677150,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001838210391724,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -66 ,0 ,2.97903847306029767594,-0.0161453551853660733,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,0.00191063781505312825,0.99999813848723562159,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003790873142861,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,0 ,3.83019238258802641183,-0.0161453559143680328,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,0.00191063781515872326,0.99999811481855449546,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006394423508027,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -68 ,0 ,4.68134633717720749501,-0.0161453568263398537,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,0.00191063781529102151,0.99999808523270328208,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009648861632740,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -69 ,0 ,5.53250034684149749608,-0.0161453579203043526,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,0.00191063781544916714,0.99999804972968231453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013554187607951,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -70 ,0 ,-5.5325004196011686730,-0.0060060257724747316,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,0.00114733466092457902,0.99999921681129311235,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013707605794479,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -71 ,0 ,-4.6813463987430763424,-0.0060060253772772648,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,0.00114733466079581223,0.99999925231427333471,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009802279728319,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -72 ,0 ,-3.8301924329600978147,-0.0060060250484691175,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,0.00114733466068836194,0.99999928190009079731,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006547841476276,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -73 ,0 ,-2.9790385122385716343,-0.0060060247857139570,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,0.00114733466060210542,0.99999930556874472298,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003944291020161,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -74 ,0 ,-2.1278846265648425628,-0.0060060245878257728,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,0.00114733466053778187,0.99999932332023544478,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001991628214454,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -75 ,0 ,-1.2767307659252511431,-0.0060060244562628040,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,0.00114733466049483923,0.99999933515456240762,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000689853077346,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -76 ,0 ,-0.4255769203061407490,-0.0060060243904466155,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,0.00114733466047340303,0.99999934107172616659,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000038965517887,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -77 ,0 ,0.42557692030614074907,-0.0060060243904466155,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,0.00114733466047340303,0.99999934107172616659,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000038965517887,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -78 ,0 ,1.27673076592525114314,-0.0060060244562628040,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,0.00114733466049483923,0.99999933515456240762,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000689853077346,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -79 ,0 ,2.12788462656484345103,-0.0060060245878257728,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,0.00114733466053778187,0.99999932332023544478,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001991628214454,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -80 ,0 ,2.97903851223857163432,-0.0060060247857139570,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,0.00114733466060210542,0.99999930556874472298,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003944291020161,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -81 ,0 ,3.83019243296009781474,-0.0060060250484691175,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,0.00114733466068836194,0.99999928190009079731,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006547841476276,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -82 ,0 ,4.68134639874307723061,-0.0060060253772772648,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,0.00114733466079581223,0.99999925231427333471,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009802279728319,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -83 ,0 ,5.53250041960116867301,-0.0060060257724747316,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,0.00114733466092457902,0.99999921681129311235,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013707605794479,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -84 ,0 ,-5.5325004541866693585,-0.0007709144390380543,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,0.00038276338507780356,0.99999980174608626981,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013748428191320,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -85 ,0 ,-4.6813464280077274892,-0.0007709143951225172,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,0.00038276338502338285,0.99999983724904617510,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009843102052400,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -86 ,0 ,-3.8301924569039020873,-0.0007709143585723709,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,0.00038276338497806098,0.99999986683484631821,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006588663800357,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -87 ,0 ,-2.9790385308615299209,-0.0007709143294440416,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,0.00038276338494178249,0.99999989050348669916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003985113289672,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -88 ,0 ,-2.1278846398669539752,-0.0007709143072627055,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,0.00038276338491456776,0.99999990825496720692,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002032450465776,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -89 ,0 ,-1.2767307739065179017,-0.0007709142922020185,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,0.00038276338489669729,0.99999992008928750841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000730675328668,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -90 ,0 ,-0.4255769229665629094,-0.0007709142850723371,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,0.00038276338488781757,0.99999992600644760365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000079787714639,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,0 ,0.42557692296656290942,-0.0007709142850723371,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,0.00038276338488781757,0.99999992600644760365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000079787714639,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -92 ,0 ,1.27673077390651790175,-0.0007709142922020185,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,0.00038276338489669729,0.99999992008928750841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000730675328668,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -93 ,0 ,2.12788463986695486340,-0.0007709143072627055,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,0.00038276338491456776,0.99999990825496720692,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002032450465776,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -94 ,0 ,2.97903853086152992091,-0.0007709143294440416,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,0.00038276338494178249,0.99999989050348669916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003985113289672,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -95 ,0 ,3.83019245690390208736,-0.0007709143585723709,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,0.00038276338497806098,0.99999986683484631821,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006588663800357,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -96 ,0 ,4.68134642800772837745,-0.0007709143951225172,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,0.00038276338502338285,0.99999983724904617510,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009843102052400,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -97 ,0 ,5.53250045418666935859,-0.0007709144390380543,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,0.00038276338507780356,0.99999980174608626981,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013748428191320,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -98 ,0 ,-5.5325004543443183635,-0.0004642413966301533,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,-0.0003830830659705315,0.99999980162367296809,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013751581136602,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -99 ,0 ,-4.6813464281411221179,-0.0004642413525654769,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,-0.0003830830659049143,0.99999983712663298440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009846255015872,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -100 ,0 ,-3.8301924570130432279,-0.0004642413154932556,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,-0.0003830830658501846,0.99999986671243301650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006591816745640,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -101 ,0 ,-2.9790385309464175733,-0.0004642412861942799,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,-0.0003830830658062139,0.99999989038107339744,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003988266234955,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -102 ,0 ,-2.1278846399275885836,-0.0004642412639256439,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,-0.0003830830657731686,0.99999990813255390520,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002035603429249,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -103 ,0 ,-1.2767307739428979118,-0.0004642412496656610,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,-0.0003830830657511189,0.99999991996687420670,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000733828273951,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -104 ,0 ,-0.4255769229786898200,-0.0004642412418241660,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,-0.0003830830657402898,0.99999992588403441295,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000082940696302,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -105 ,0 ,0.42557692297868982000,-0.0004642412418241660,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,-0.0003830830657402898,0.99999992588403441295,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000082940696302,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -106 ,0 ,1.27673077394289791186,-0.0004642412496656610,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,-0.0003830830657511189,0.99999991996687420670,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000733828273951,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -107 ,0 ,2.12788463992758902776,-0.0004642412639256439,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,-0.0003830830657731686,0.99999990813255390520,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002035603429249,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -108 ,0 ,2.97903853094641757337,-0.0004642412861942799,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,-0.0003830830658062139,0.99999989038107339744,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003988266234955,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -109 ,0 ,3.83019245701304322793,-0.0004642413154932556,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,-0.0003830830658501846,0.99999986671243301650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006591816745640,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -110 ,0 ,4.68134642814112300612,-0.0004642413525654769,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,-0.0003830830659049143,0.99999983712663298440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009846255015872,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -111 ,0 ,5.53250045434431836355,-0.0004642413966301533,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,-0.0003830830659705315,0.99999980162367296809,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013751581136602,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -112 ,0 ,-5.5325004238577379922,-0.0051104693245821349,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,-0.0011502118149598705,0.99999921350609288772,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013792737190669,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -113 ,0 ,-4.6813464023447881601,-0.0051104689269180431,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,-0.0011502118147275039,0.99999924900907355418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009887411106319,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -114 ,0 ,-3.8301924359069539072,-0.0051104685957476898,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,-0.0011502118145343758,0.99999927859489112780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006632972872466,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -115 ,0 ,-2.9790385145305702252,-0.0051104683300878814,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,-0.0011502118143795164,0.99999930226354505347,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004029422379971,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -116 ,0 ,-2.1278846282019845403,-0.0051104681308080874,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,-0.0011502118142633374,0.99999932001503599732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002076759610645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -117 ,0 ,-1.2767307669075358411,-0.0051104679985304064,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,-0.0011502118141860028,0.99999933184936318220,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000774984455347,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -118 ,0 ,-0.4255769206335690002,-0.0051104679323017397,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,-0.0011502118141474742,0.99999933776652683015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000124096877698,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -119 ,0 ,0.42557692063356900025,-0.0051104679323017397,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,-0.0011502118141474742,0.99999933776652683015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000124096877698,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -120 ,0 ,1.27673076690753584117,-0.0051104679985304064,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,-0.0011502118141860028,0.99999933184936318220,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000774984455347,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -121 ,0 ,2.12788462820198498448,-0.0051104681308080874,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,-0.0011502118142633374,0.99999932001503599732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002076759610645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -122 ,0 ,2.97903851453057022524,-0.0051104683300878814,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,-0.0011502118143795164,0.99999930226354505347,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004029422379971,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -123 ,0 ,3.83019243590695390722,-0.0051104685957476898,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,-0.0011502118145343758,0.99999927859489112780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006632972872466,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -124 ,0 ,4.68134640234478904829,-0.0051104689269180431,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,-0.0011502118147275039,0.99999924900907355418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009887411106319,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -125 ,0 ,5.53250042385773799225,-0.0051104693245821349,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,-0.0011502118149598705,0.99999921350609288772,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013792737190669,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -126 ,0 ,-5.5325003665484100423,-0.0147343094777857980,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,-0.0019186300544351566,0.99999803442744028547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013948325868113,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -127 ,0 ,-4.6813463538522839257,-0.0147343083704547742,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,-0.0019186300539900187,0.99999806993046247427,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010042999838333,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -128 ,0 ,-3.8301923962312698357,-0.0147343074469585989,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,-0.0019186300536191025,0.99999809951631479787,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006788561659050,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -129 ,0 ,-2.9790384836717080929,-0.0147343067081407985,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,-0.0019186300533223469,0.99999812318499647911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004185011257504,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -130 ,0 ,-2.1278846061599403505,-0.0147343061544944788,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,-0.0019186300530997925,0.99999814093650818414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002232348488178,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -131 ,0 ,-1.2767307536823098157,-0.0147343057848594548,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,-0.0019186300529516380,0.99999815277084924680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000930573369259,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -132 ,0 ,-0.4255769162251604731,-0.0147343056006547009,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,-0.0019186300528774950,0.99999815868801966711,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000279685773421,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -133 ,0 ,0.42557691622516047313,-0.0147343056006547009,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,-0.0019186300528774950,0.99999815868801966711,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000279685773421,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -134 ,0 ,1.27673075368230981574,-0.0147343057848594548,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,-0.0019186300529516380,0.99999815277084924680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000930573369259,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -135 ,0 ,2.12788460615994079461,-0.0147343061544944788,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,-0.0019186300530997925,0.99999814093650818414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002232348488178,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -136 ,0 ,2.97903848367170809297,-0.0147343067081407985,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,-0.0019186300533223469,0.99999812318499647911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004185011257504,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -137 ,0 ,3.83019239623126983573,-0.0147343074469585989,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,-0.0019186300536191025,0.99999809951631479787,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006788561659050,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -138 ,0 ,4.68134635385228392578,-0.0147343083704547742,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,-0.0019186300539900187,0.99999806993046247427,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010042999838333,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -139 ,0 ,5.53250036654841004235,-0.0147343094777857980,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,-0.0019186300544351566,0.99999803442744028547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013948325868113,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -140 ,0 ,-5.5325002862762060473,-0.0293607251172388200,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,-0.0026883450477043933,0.99999626139348296582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014295544697233,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -141 ,0 ,-4.6813462859296572915,-0.0293607229408725661,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,-0.0026883450469991649,0.99999629689656777120,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010390218776592,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -142 ,0 ,-3.8301923406582156772,-0.0293607211263358404,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,-0.0026883450464114827,0.99999632648247238631,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007135780688258,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -143 ,0 ,-2.9790384404482237457,-0.0293607196750424112,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,-0.0026883450459413969,0.99999635015119614500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004532230304903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -144 ,0 ,-2.1278845752860240381,-0.0293607185867077562,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,-0.0026883450455886291,0.99999636790273904729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002579567590146,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -145 ,0 ,-1.2767307351579608720,-0.0293607178607816245,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,-0.0026883450453535303,0.99999637973710087113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001277792471228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -146 ,0 ,-0.4255769100503776214,-0.0293607174981505222,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,-0.0026883450452360835,0.99999638565428183856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000626904948148,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -147 ,0 ,0.42557691005037762144,-0.0293607174981505222,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,-0.0026883450452360835,0.99999638565428183856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000626904948148,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -148 ,0 ,1.27673073515796087207,-0.0293607178607816245,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,-0.0026883450453535303,0.99999637973710087113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001277792471228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -149 ,0 ,2.12788457528602492629,-0.0293607185867077562,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,-0.0026883450455886291,0.99999636790273904729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002579567590146,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -150 ,0 ,2.97903844044822374570,-0.0293607196750424112,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,-0.0026883450459413969,0.99999635015119614500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004532230304903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -151 ,0 ,3.83019234065821567725,-0.0293607211263358404,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,-0.0026883450464114827,0.99999632648247238631,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007135780688258,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -152 ,0 ,4.68134628592965817972,-0.0293607229408725661,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,-0.0026883450469991649,0.99999629689656777120,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010390218776592,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -153 ,0 ,5.53250028627620604737,-0.0293607251172388200,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,-0.0026883450477043933,0.99999626139348296582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014295544697233,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -154 ,0 ,-5.5325001869399770271,-0.0490149350023435168,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,-0.0034593641298178785,0.99999389138127625642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014912370679667,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -155 ,0 ,-4.6813462018759324223,-0.0490149313937941755,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,-0.0034593641288048720,0.99999392688444521670,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011007044849975,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -156 ,0 ,-3.8301922718869909623,-0.0490149283872408567,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,-0.0034593641279605930,0.99999395647041977586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007752606816211,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -157 ,0 ,-2.9790383869594956323,-0.0490149259822842894,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,-0.0034593641272855379,0.99999398013919960082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005149056505615,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -158 ,0 ,-2.1278845370797920821,-0.0490149241784554948,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,-0.0034593641267787978,0.99999399789078458056,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003196393863618,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -159 ,0 ,-1.2767307122342219649,-0.0490149229761982982,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,-0.0034593641264412614,0.99999400972517460406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001894618781079,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -160 ,0 ,-0.4255769024091313745,-0.0490149223748500284,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,-0.0034593641262722803,0.99999401564236956030,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001243731239810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -161 ,0 ,0.42557690240913137458,-0.0490149223748500284,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,-0.0034593641262722803,0.99999401564236956030,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001243731239810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -162 ,0 ,1.27673071223422196496,-0.0490149229761982982,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,-0.0034593641264412614,0.99999400972517460406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001894618781079,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -163 ,0 ,2.12788453707979252627,-0.0490149241784554948,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,-0.0034593641267787978,0.99999399789078458056,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003196393863618,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -164 ,0 ,2.97903838695949563231,-0.0490149259822842894,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,-0.0034593641272855379,0.99999398013919960082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005149056505615,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -165 ,0 ,3.83019227188699096231,-0.0490149283872408567,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,-0.0034593641279605930,0.99999395647041977586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007752606816211,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -166 ,0 ,4.68134620187593242235,-0.0490149313937941755,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,-0.0034593641288048720,0.99999392688444521670,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011007044849975,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -167 ,0 ,5.53250018693997702712,-0.0490149350023435168,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,-0.0034593641298178785,0.99999389138127625642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014912370679667,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -168 ,0 ,-5.5325000724781041583,-0.0737224169448966043,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,-0.0042316947085615629,0.99999092133876832377,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015877571440796,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -169 ,0 ,-4.6813461050235840588,-0.0737224115415915509,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,-0.0042316947071926094,0.99999095684204297729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011972245683864,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -170 ,0 ,-3.8301921926441662158,-0.0737224070389522756,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,-0.0042316947060516254,0.99999098642810535508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008717807722860,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -171 ,0 ,-2.9790383253261909501,-0.0737224034377950560,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,-0.0042316947051389630,0.99999101009695567920,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006114257485023,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -172 ,0 ,-2.1278844930560047998,-0.0737224007360162691,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,-0.0042316947044539164,0.99999102784859361658,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004161594879406,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -173 ,0 ,-1.2767306858199505281,-0.0737223989349240910,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,-0.0042316947039977414,0.99999103968301861211,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002859819833247,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -174 ,0 ,-0.4255768936043742289,-0.0737223980344576951,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,-0.0042316947037695186,0.99999104560023155396,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002208932328358,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -175 ,0 ,0.42557689360437422898,-0.0737223980344576951,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,-0.0042316947037695186,0.99999104560023155396,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002208932328358,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -176 ,0 ,1.27673068581995052817,-0.0737223989349240910,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,-0.0042316947039977414,0.99999103968301861211,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002859819833247,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -177 ,0 ,2.12788449305600568806,-0.0737224007360162691,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,-0.0042316947044539164,0.99999102784859361658,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004161594879406,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -178 ,0 ,2.97903832532619095019,-0.0737224034377950560,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,-0.0042316947051389630,0.99999101009695567920,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006114257485023,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -179 ,0 ,3.83019219264416621584,-0.0737224070389522756,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,-0.0042316947060516254,0.99999098642810535508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008717807722860,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -180 ,0 ,4.68134610502358494699,-0.0737224115415915509,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,-0.0042316947071926094,0.99999095684204297729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011972245683864,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -181 ,0 ,5.53250007247810415833,-0.0737224169448966043,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,-0.0042316947085615629,0.99999092133876832377,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015877571440796,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -182 ,0 ,-5.5324999468690867487,-0.1035089114318905600,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,-0.0050053442654663833,0.99998734818439949378,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017270717034989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -183 ,0 ,-4.6813459987390393379,-0.1035089038666126559,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,-0.0050053442636926086,0.99998738368780148988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013365391369006,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -184 ,0 ,-3.8301921056840892987,-0.1035088975623240092,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,-0.0050053442622143510,0.99998741327397011602,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010110953462572,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -185 ,0 ,-2.9790382576905800604,-0.1035088925183670627,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,-0.0050053442610318334,0.99998743694290526118,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007507403279305,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -186 ,0 ,-2.1278844447448550525,-0.1035088887358819875,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,-0.0050053442601448666,0.99998745469460681434,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005554740728257,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -187 ,0 ,-1.2767306568332612570,-0.1035088862141353011,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,-0.0050053442595536165,0.99998746652907433141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004252965663908,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -188 ,0 ,-0.4255768839421447125,-0.1035088849529834792,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,-0.0050053442592579390,0.99998747244630847852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003602078177209,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -189 ,0 ,0.42557688394214471250,-0.1035088849529834792,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,-0.0050053442592579390,0.99998747244630847852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003602078177209,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -190 ,0 ,1.27673065683326125707,-0.1035088862141353011,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,-0.0050053442595536165,0.99998746652907433141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004252965663908,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -191 ,0 ,2.12788444474485594071,-0.1035088887358819875,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,-0.0050053442601448666,0.99998745469460681434,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005554740728257,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -192 ,0 ,2.97903825769058006045,-0.1035088925183670627,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,-0.0050053442610318334,0.99998743694290526118,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007507403279305,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -193 ,0 ,3.83019210568408929873,-0.1035088975623240092,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,-0.0050053442622143510,0.99998741327397011602,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010110953462572,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -194 ,0 ,4.68134599873904022615,-0.1035089038666126559,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,-0.0050053442636926086,0.99998738368780148988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013365391369006,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -195 ,0 ,5.53249994686908674879,-0.1035089114318905600,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,-0.0050053442654663833,0.99998734818439949378,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017270717034989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -196 ,0 ,-5.5324996004110484904,-0.1052689433153378845,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00495130793918071004,0.99998761719822049087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010341555116610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -197 ,0 ,-4.6813457055822755847,-0.1052689359895805643,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00495130793934610811,0.99998765270160316909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006436230432882,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -198 ,0 ,-3.8301918658285831753,-0.1052689298850338212,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00495130793948350862,0.99998768228775580801,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003181793363182,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -199 ,0 ,-2.9790380711363129151,-0.1052689250015643035,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00495130793959354040,0.99998770595667818561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000578243852942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/Ellipsoid.rayx.csv b/Intern/RAY-Core/tests/output/Ellipsoid.rayx.csv deleted file mode 100644 index 5f1d3a137..000000000 --- a/Intern/RAY-Core/tests/output/Ellipsoid.rayx.csv +++ /dev/null @@ -1,238 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.8208624317208490506,0.00271895172861148651,5.86883048335785151294,1.00000000000000000000,0.00082563400467130544,0.17465483853544519488,0.98462937479269208029,100.000000000000000000,0.70094095336303818832,0.70094095336303818832,0.00000000000000001113,0.00000000000000000502,10005.7792834639330976,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -0 ,1 ,0.00000000000000053564,-0.0000000000002071379,0.00000000000000000000,1.00000000000000000000,0.00082563400467130544,0.00102234248072186300,0.99999913657179828607,100.000000000000000000,0.70094095336303818832,0.70094095336303818832,0.00000000000000001113,0.00000000000000000502,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -0 ,2 ,0.00000000000000053564,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,0.00082563400467130544,0.34298053570088166130,0.93934214770701418562,100.000000000000000000,0.70094095336303818832,0.70094095336303818832,0.00000000000000001113,0.00000000000000000502,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,13.1488109581360514965,0.42123782399874459825,-57.502073563837001302,1.00000000000000000000,-0.0124434145014516561,0.16393380528068624002,0.98639285729456649409,100.000000000000000000,0.70869386921155264058,0.70869386921155264058,0.00000000000000001095,0.00000000000000000499,9943.31166444691552896,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -1 ,1 ,-0.0000000000000105729,-0.0000000000003192404,0.00000000000000000000,1.00000000000000000000,-0.0124434145014516561,-0.0098420397116644707,0.99987413992454998723,100.000000000000000000,0.70869386921155264058,0.70869386921155264058,0.00000000000000001095,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,2 ,-0.0000000000000105729,342.020143325668357192,10939.6926207859087298,0.00000000000000000000,-0.0124434145014516561,0.33272860455409131175,0.94294052683455675811,100.000000000000000000,0.70869386921155264058,0.70869386921155264058,0.00000000000000001095,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,-18.211469373818474082,0.54034079004051693839,-20.203586581015056111,1.00000000000000000000,0.01785484704958924251,0.16971798854218700380,0.98533091334943401218,100.000000000000000000,0.70422877614141543567,0.70422877614141543567,0.00000000000000001105,0.00000000000000000501,9980.02658195621734193,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -2 ,1 ,0.00000000000001579326,-0.0000000000000930742,0.00000000000000000000,1.00000000000000000000,0.01785484704958924251,-0.0039613265600383761,0.99983274217677042816,100.000000000000000000,0.70422877614141543567,0.70422877614141543567,0.00000000000000001105,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,2 ,0.00000000000001579326,342.020143325668527722,10939.6926207859087298,0.00000000000000000000,0.01785484704958924251,0.33824050844400405102,0.94089030332147483015,100.000000000000000000,0.70422877614141543567,0.70422877614141543567,0.00000000000000001105,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,-4.1820973275160042703,0.05339703631939562988,-23.445371624948215583,1.00000000000000000000,0.00408768500637922502,0.16967581727489661203,0.98549145499257595481,100.000000000000000000,0.70461854456259254142,0.70461854456259254142,0.00000000000000001104,0.00000000000000000501,9976.90322982582074473,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -3 ,1 ,-0.0000000000000030707,-0.0000000000000818897,0.00000000000000000000,1.00000000000000000000,0.00408768500637922502,-0.0040307349147915569,0.99998352186790306905,100.000000000000000000,0.70461854456259254142,0.70461854456259254142,0.00000000000000001104,0.00000000000000000501,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,2 ,-0.0000000000000030707,342.020143325668584566,10939.6926207859087298,0.00000000000000000000,0.00408768500637922502,0.33822685561679338706,0.94105572894003730599,100.000000000000000000,0.70461854456259254142,0.70461854456259254142,0.00000000000000001104,0.00000000000000000501,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,2.87225448589241105779,0.02448549018802721743,-15.578105371346707030,1.00000000000000000000,-0.0028288460755579018,0.17099971560683227544,0.98526701705287134114,100.000000000000000000,0.70364766648957521866,0.70364766648957521866,0.00000000000000001107,0.00000000000000000501,9984.65508225789562857,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -4 ,1 ,-0.0000000000000002538,-0.0000000000005914062,0.00000000000000000000,1.00000000000000000000,-0.0028288460755579018,-0.0026879763340723747,0.99999238617756880387,100.000000000000000000,0.70364766648957521866,0.70364766648957521866,0.00000000000000001107,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,2 ,-0.0000000000000002538,342.020143325668072975,10939.6926207859087298,0.00000000000000000000,-0.0028288460755579018,0.33949166771905453510,0.94060480818418923387,100.000000000000000000,0.70364766648957521866,0.70364766648957521866,0.00000000000000001107,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,10.0093102601071493040,0.34311327481168019115,-63.731589598318691969,3.00000000000000000000,-0.0094177608163586983,0.16306274881034044099,0.98657075049467257699,100.000000000000000000,0.70941460462584193802,0.70941460462584193802,0.00000000000000001093,0.00000000000000000499,9937.18788836504245409,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -6 ,0 ,-3.8960504180493127357,0.03524304551839960858,-15.480701986288000426,3.00000000000000000000,0.00383752613923638323,0.17100501873196569113,0.98526268424294383141,100.000000000000000000,0.70363577122196696578,0.70363577122196696578,0.00000000000000001107,0.00000000000000000501,9984.74947747859005175,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -7 ,0 ,-2.7661422826941146624,0.11115585663511395875,45.0235014847562595718,1.00000000000000000000,0.00289443432356383239,0.18158556610744955306,0.98337088854174625751,100.000000000000000000,0.69575817363116787550,0.69575817363116787550,0.00000000000000001125,0.00000000000000000503,10044.3237007747193274,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -7 ,1 ,-0.0000000000000030480,-0.0000000000007772039,0.00000000000000000000,1.00000000000000000000,0.00289443432356383239,0.00806631057174291704,0.99996327776759197369,100.000000000000000000,0.69575817363116787550,0.69575817363116787550,0.00000000000000001125,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,2 ,-0.0000000000000030480,342.020143325667902445,10939.6926207859087298,0.00000000000000000000,0.00289443432356383239,0.34958743610371140198,0.93689927247723880920,100.000000000000000000,0.69575817363116787550,0.69575817363116787550,0.00000000000000001125,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-5.0549440832372329879,0.06539019087414953135,22.5412873604695072060,1.00000000000000000000,0.00516965640244173435,0.17752191791894109118,0.98410326862126684677,100.000000000000000000,0.69877418959926507202,0.69877418959926507202,0.00000000000000001118,0.00000000000000000502,10022.1895441929791559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -8 ,1 ,-0.0000000000000030107,-0.0000000000003103798,0.00000000000000000000,1.00000000000000000000,0.00516965640244173435,0.00393722186401735362,0.99997888624544162272,100.000000000000000000,0.69877418959926507202,0.69877418959926507202,0.00000000000000001118,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,2 ,-0.0000000000000030107,342.020143325668357192,10939.6926207859087298,0.00000000000000000000,0.00516965640244173435,0.34571270032832251972,0.93832617116031657999,100.000000000000000000,0.69877418959926507202,0.69877418959926507202,0.00000000000000001118,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,2.84358472285670416113,0.02019926816361695964,-12.536772634059669684,3.00000000000000000000,-0.0028088971444116712,0.17150997077530849566,0.98517837979803679626,100.000000000000000000,0.70326929520977832233,0.70326929520977832233,0.00000000000000001108,0.00000000000000000501,9987.65081928541076194,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -10 ,0 ,-2.5585713875464297650,0.48040466971745759972,96.9702440257593281103,1.00000000000000000000,0.00282849085987728170,0.19143630915751891352,0.98150096239158235444,100.000000000000000000,0.68834960815050028060,0.68834960815050028060,0.00000000000000001141,0.00000000000000000505,10095.4287942590563034,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -10 ,1 ,0.00000000000000221260,0.00000000000003241143,0.00000000000000000000,1.00000000000000000000,0.00282849085987728170,0.01809210796873001944,0.99983232357666007583,100.000000000000000000,0.68834960815050028060,0.68834960815050028060,0.00000000000000001141,0.00000000000000000505,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,2 ,0.00000000000000221260,342.020143325668698253,10939.6926207859087298,0.00000000000000000000,0.00282849085987728170,0.35896381496400314725,0.93334719112768749216,100.000000000000000000,0.68834960815050028060,0.68834960815050028060,0.00000000000000001141,0.00000000000000000505,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,-13.164254617793801571,-388.75767567263636692,0.00000000000000000000,1.00000000000000000000,-0.0011888942174626106,-0.3439958881558409786,0.93897040180317381530,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.6879014430087408,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -11 ,1 ,-13.164254617793801571,-23.292575777789181756,11072.6555767384179489,0.00000000000000000000,-0.0011888942174626106,-0.0021036062774562364,0.99999708068132320271,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.6879014430087408,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -12 ,0 ,7.44813000626506571677,0.08785896030592459104,-0.2110985822887304907,1.00000000000000000000,-0.0074464889925757258,0.17352207892580903680,0.98480182672807248245,100.000000000000000000,0.70171896490464014117,0.70171896490464014117,0.00000000000000001111,0.00000000000000000502,9999.77962584904344112,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -12 ,1 ,-0.0000000000000029772,0.00000000000001527144,0.00000000000000000000,1.00000000000000000000,-0.0074464889925757258,-0.0001231539294608149,0.99997226693283480791,100.000000000000000000,0.70171896490464014117,0.70171896490464014117,0.00000000000000001111,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,2 ,-0.0000000000000029772,342.020143325668641409,10939.6926207859087298,0.00000000000000000000,-0.0074464889925757258,0.34189493121932684749,0.93970868135194673964,100.000000000000000000,0.70171896490464014117,0.70171896490464014117,0.00000000000000001111,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-15.162411375714913930,0.38720583707064382128,-23.764747956230824144,1.00000000000000000000,0.01481487339979122366,0.16928965315473357144,0.98545498773962181271,100.000000000000000000,0.70466359036019554640,0.70466359036019554640,0.00000000000000001104,0.00000000000000000501,9976.54127939233148936,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -13 ,1 ,-0.0000000000000044650,-0.0000000000000229160,0.00000000000000000000,1.00000000000000000000,0.01481487339979122366,-0.0044046998622432071,0.99988055193871605563,100.000000000000000000,0.70466359036019554640,0.70466359036019554640,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,2 ,-0.0000000000000044650,342.020143325668641409,10939.6926207859087298,0.00000000000000000000,0.01481487339979122366,0.33784022572530170158,0.94108687240234356607,100.000000000000000000,0.70466359036019554640,0.70466359036019554640,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,-7.6330117877166268058,0.20700265372352003034,-49.972482919756274100,3.00000000000000000000,0.00727478189489976292,0.16530129323875486502,0.98621628459581667236,100.000000000000000000,0.70780853260618159517,0.70780853260618159517,0.00000000000000001097,0.00000000000000000500,9950.75730131950513168,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -15 ,0 ,-9.5293571310425804199,0.14858471107732842964,-10.676498352055984852,3.00000000000000000000,0.00943000814177996464,0.17169076063268517984,0.98510575963183577563,100.000000000000000000,0.70303934154907421483,0.70303934154907421483,0.00000000000000001108,0.00000000000000000501,9989.46459135889563185,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -16 ,0 ,3.21126326829594654910,0.17243483250383706550,-57.972148343796597202,1.00000000000000000000,-0.0030377588755008933,0.16410285717839306895,0.98643855575849337391,100.000000000000000000,0.70874440977433472710,0.70874440977433472710,0.00000000000000001095,0.00000000000000000499,9942.88408003862969053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -16 ,1 ,0.00000000000000604580,-0.0000000000007697755,0.00000000000000000000,1.00000000000000000000,-0.0030377588755008933,-0.0096834915471244453,0.99994849968009391627,100.000000000000000000,0.70874440977433472710,0.70874440977433472710,0.00000000000000001095,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,2 ,0.00000000000000604580,342.020143325667902445,10939.6926207859087298,0.00000000000000000000,-0.0030377588755008933,0.33290302362859752749,0.94295617548216481562,100.000000000000000000,0.70874440977433472710,0.70874440977433472710,0.00000000000000001095,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-8.9753185992343205157,0.19074964951178000061,-37.252138209418106384,1.00000000000000000000,0.00865747419155783910,0.16731475209391583058,0.98586551916190567901,100.000000000000000000,0.70629586299825108941,0.70629586299825108941,0.00000000000000001100,0.00000000000000000500,9963.28670456951476808,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -17 ,1 ,-0.0000000000000033867,-0.0000000000004020843,0.00000000000000000000,1.00000000000000000000,0.00865747419155783910,-0.0064208857717232307,0.99994190849595276926,100.000000000000000000,0.70629586299825108941,0.70629586299825108941,0.00000000000000001100,0.00000000000000000500,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,2 ,-0.0000000000000033867,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,0.00865747419155783910,0.33596661588253085017,0.94183410490014729532,100.000000000000000000,0.70629586299825108941,0.70629586299825108941,0.00000000000000001100,0.00000000000000000500,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,-3.3323240961560571804,0.14540298727249920118,51.0591502549130566990,1.00000000000000000000,0.00350868014522791316,0.18268503395654064891,0.98316522900880498614,100.000000000000000000,0.69492990358146056184,0.69492990358146056184,0.00000000000000001127,0.00000000000000000503,10050.2627887901708163,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -18 ,1 ,-0.0000000000000008841,-0.0000000000004261113,0.00000000000000000000,1.00000000000000000000,0.00350868014522791316,0.00918478743683052642,0.99995166325346862556,100.000000000000000000,0.69492990358146056184,0.69492990358146056184,0.00000000000000001127,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,2 ,-0.0000000000000008841,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,0.00350868014522791316,0.35063448816256886919,0.93650581678631938942,100.000000000000000000,0.69492990358146056184,0.69492990358146056184,0.00000000000000001127,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,13.4323762541003475234,0.36351637655365492962,-42.026632788471637525,3.00000000000000000000,-0.0128978902528744353,0.16638951303553167759,0.98597574735833304337,100.000000000000000000,0.70686989974632918887,0.70686989974632918887,0.00000000000000001099,0.00000000000000000500,9958.56019932354683987,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -20 ,0 ,9.57313839504018382342,0.15442584148982857472,13.2227770407213096603,1.00000000000000000000,-0.0096992279036101462,0.17577886888997210079,0.98438189450529600676,100.000000000000000000,0.69999462871127526852,0.69999462871127526852,0.00000000000000001115,0.00000000000000000502,10012.9999531739049416,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -20 ,1 ,0.00000000000001046081,-0.0000000000004732327,0.00000000000000000000,1.00000000000000000000,-0.0096992279036101462,0.00217227078939581522,0.99995060188875883877,100.000000000000000000,0.69999462871127526852,0.69999462871127526852,0.00000000000000001115,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -20 ,2 ,0.00000000000001046081,342.020143325668186662,10939.6926207859087298,0.00000000000000000000,-0.0096992279036101462,0.34404451500772598171,0.93890324137856295827,100.000000000000000000,0.69999462871127526852,0.69999462871127526852,0.00000000000000001115,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,0 ,20.1961714341372307046,0.64636982942683607333,-0.9597205211121303536,1.00000000000000000000,-0.0201752502300818273,0.17282259534985325299,0.98474631749232466315,100.000000000000000000,0.70182428352998615928,0.70182428352998615928,0.00000000000000001111,0.00000000000000000502,9998.96302629128149419,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -21 ,1 ,0.00000000000001217805,-0.0000000000000955488,0.00000000000000000000,1.00000000000000000000,-0.0201752502300818273,-0.0008023717005354654,0.99979613695883395863,100.000000000000000000,0.70182428352998615928,0.70182428352998615928,0.00000000000000001111,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,2 ,0.00000000000001217805,342.020143325668527722,10939.6926207859087298,0.00000000000000000000,-0.0201752502300818273,0.34119643529298959716,0.93977547947449124876,100.000000000000000000,0.70182428352998615928,0.70182428352998615928,0.00000000000000001111,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,0 ,-8.5955539335088975150,0.29793139508224414369,-62.927312483675407861,3.00000000000000000000,0.00809363802681327751,0.16322789153979821996,0.98655519280320180808,100.000000000000000000,0.70932100404793252401,0.70932100404793252401,0.00000000000000001093,0.00000000000000000499,9937.98636595399693760,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -23 ,0 ,2.76758101826002933520,0.24744062013377027264,-71.340489242811685244,1.00000000000000000000,-0.0025858190829626584,0.16201257773378346938,0.98678530501610373093,100.000000000000000000,0.71028599023865091055,0.71028599023865091055,0.00000000000000001091,0.00000000000000000499,9929.70817777045886032,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -23 ,1 ,0.00000000000000455628,-0.0000000000007476836,0.00000000000000000000,1.00000000000000000000,-0.0025858190829626584,-0.0118022273268293658,0.99992700782096877176,100.000000000000000000,0.71028599023865091055,0.71028599023865091055,0.00000000000000001091,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -23 ,2 ,0.00000000000000455628,342.020143325667959288,10939.6926207859087298,0.00000000000000000000,-0.0025858190829626584,0.33090471260227538596,0.94366063005578193489,100.000000000000000000,0.71028599023865091055,0.71028599023865091055,0.00000000000000001091,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -24 ,0 ,-13.631146927497532317,0.34249262079148057313,30.1725376936455873533,1.00000000000000000000,0.01404788428625847185,0.17860406190529290459,0.98382073876189968242,100.000000000000000000,0.69776777458209493509,0.69776777458209493509,0.00000000000000001120,0.00000000000000000503,10029.6654891419184423,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -24 ,1 ,-0.0000000000000054357,-0.0000000000003605798,0.00000000000000000000,1.00000000000000000000,0.01404788428625847185,0.00505198644686781408,0.99988856098068246147,100.000000000000000000,0.69776777458209493509,0.69776777458209493509,0.00000000000000001120,0.00000000000000000503,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -24 ,2 ,-0.0000000000000054357,342.020143325668300349,10939.6926207859087298,0.00000000000000000000,0.01404788428625847185,0.34672934332074167862,0.93786002123315093115,100.000000000000000000,0.69776777458209493509,0.69776777458209493509,0.00000000000000001120,0.00000000000000000503,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,0 ,-1.6428047507136378513,0.05399616489106964095,32.0170672412832217901,1.00000000000000000000,0.00169627644685661597,0.17924450319817128440,0.98380309550207079016,100.000000000000000000,0.69751579984314715510,0.69751579984314715510,0.00000000000000001121,0.00000000000000000503,10031.5229845005906099,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -25 ,1 ,-0.0000000000000025884,-0.0000000000002293461,0.00000000000000000000,1.00000000000000000000,0.00169627644685661597,0.00568576171736103960,0.99998239722502568760,100.000000000000000000,0.69751579984314715510,0.69751579984314715510,0.00000000000000001121,0.00000000000000000503,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,2 ,-0.0000000000000025884,342.020143325668414036,10939.6926207859087298,0.00000000000000000000,0.00169627644685661597,0.34735699115140017401,0.93773143455067220486,100.000000000000000000,0.69751579984314715510,0.69751579984314715510,0.00000000000000001121,0.00000000000000000503,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,0 ,1.48634293136153994296,0.01944814609041152150,18.1852602720361922195,1.00000000000000000000,-0.0015134429775992351,0.17679445022965145639,0.98424663162154069073,100.000000000000000000,0.69934530691785368183,0.69934530691785368183,0.00000000000000001117,0.00000000000000000502,10017.9062221958865848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -26 ,1 ,0.00000000000000093715,-0.0000000000004173043,0.00000000000000000000,1.00000000000000000000,-0.0015134429775992351,0.00319591131979664582,0.99999374780104965942,100.000000000000000000,0.69934530691785368183,0.69934530691785368183,0.00000000000000001117,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,2 ,0.00000000000000093715,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,-0.0015134429775992351,0.34502117923158664991,0.93859367959303796613,100.000000000000000000,0.69934530691785368183,0.69934530691785368183,0.00000000000000001117,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -27 ,0 ,9.21983246934597389099,0.21043380428446564756,-40.815330999331585815,3.00000000000000000000,-0.0088633046912960956,0.16673096544178817035,0.98596258904321454341,100.000000000000000000,0.70672277704750774418,0.70672277704750774418,0.00000000000000001099,0.00000000000000000500,9959.77484804285268182,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -28 ,0 ,-7.6368970763968722081,0.12270059217004547491,-25.771361663137295039,1.00000000000000000000,0.00744774469676313336,0.16922755913931841753,0.98554886450478973447,100.000000000000000000,0.70490441700300077165,0.70490441700300077165,0.00000000000000001104,0.00000000000000000501,9974.60273044590940116,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -28 ,1 ,0.00000000000000489817,-0.0000000000002036382,0.00000000000000000000,1.00000000000000000000,0.00744774469676313336,-0.0044821520592364496,0.99996221999226020393,100.000000000000000000,0.70490441700300077165,0.70490441700300077165,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -28 ,2 ,0.00000000000000489817,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,0.00744774469676313336,0.33779537658670177879,0.94119010548112946867,100.000000000000000000,0.70490441700300077165,0.70490441700300077165,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -29 ,0 ,2.18419292645215890047,0.23855408114538140251,68.4396100641845777090,1.00000000000000000000,-0.0023419614194492466,0.18593533715851437437,0.98255919191286356095,100.000000000000000000,0.69249788385862753870,0.69249788385862753870,0.00000000000000001132,0.00000000000000000504,10067.3659658467768167,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -29 ,1 ,0.00000000000000235410,-0.0000000000004141328,0.00000000000000000000,1.00000000000000000000,-0.0023419614194492466,0.01249094846708347257,0.99991924245066021725,100.000000000000000000,0.69249788385862753870,0.69249788385862753870,0.00000000000000001132,0.00000000000000000504,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -29 ,2 ,0.00000000000000235410,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,-0.0023419614194492466,0.35373017471820422663,0.93534457752773558780,100.000000000000000000,0.69249788385862753870,0.69249788385862753870,0.00000000000000001132,0.00000000000000000504,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,0 ,19.8554955834969426575,1.01854492523166584305,-95.520364933029597409,1.00000000000000000000,-0.0181458995038627952,0.15776589176264257941,0.98730980433070425483,100.000000000000000000,0.71300888203566969991,0.71300888203566969991,0.00000000000000001084,0.00000000000000000498,9905.78609347691963193,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -30 ,1 ,0.00000000000000754026,-0.0000000000004261656,0.00000000000000000000,1.00000000000000000000,-0.0181458995038627952,-0.0160754749459850673,0.99970610953242455831,100.000000000000000000,0.71300888203566969991,0.71300888203566969991,0.00000000000000001084,0.00000000000000000498,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,2 ,0.00000000000000754026,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,-0.0181458995038627952,0.32681362168345556851,0.94491459032726232702,100.000000000000000000,0.71300888203566969991,0.71300888203566969991,0.00000000000000001084,0.00000000000000000498,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,0 ,9.64621458679677701297,0.30593501872860201507,-59.036542989922729418,1.00000000000000000000,-0.0091158273881513166,0.16381119752601025485,0.98644958982003927427,100.000000000000000000,0.70887040987140059744,0.70887040987140059744,0.00000000000000001094,0.00000000000000000499,9941.81688879553985316,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -31 ,1 ,-0.0000000000000007699,-0.0000000000005178586,0.00000000000000000000,1.00000000000000000000,-0.0091158273881513166,-0.0099726362787116145,0.99990871994231633745,100.000000000000000000,0.70887040987140059744,0.70887040987140059744,0.00000000000000001094,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,2 ,-0.0000000000000007699,342.020143325668129818,10939.6926207859087298,0.00000000000000000000,-0.0091158273881513166,0.33261771098636977450,0.94301768807865782306,100.000000000000000000,0.70887040987140059744,0.70887040987140059744,0.00000000000000001094,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -32 ,0 ,0.84692601683928570022,0.05808089008891697407,34.2623136268611361288,3.00000000000000000000,-0.0008764932366809061,0.17965033870078633837,0.98373013960348842932,100.000000000000000000,0.69721492636551052335,0.69721492636551052335,0.00000000000000001121,0.00000000000000000503,10033.7335402080061612,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -33 ,0 ,9.18153456725341676758,0.18149710336838234536,-32.538698647816900688,1.00000000000000000000,-0.0088962311096362541,0.16807644395511217583,0.98573382109951357410,100.000000000000000000,0.70572787307425577374,0.70572787307425577374,0.00000000000000001102,0.00000000000000000500,9967.92985095585936505,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -33 ,1 ,-0.0000000000000088838,-0.0000000000001474571,0.00000000000000000000,1.00000000000000000000,-0.0088962311096362541,-0.0056478965928740765,0.99994447762669291801,100.000000000000000000,0.70572787307425577374,0.70572787307425577374,0.00000000000000001102,0.00000000000000000500,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -33 ,2 ,-0.0000000000000088838,342.020143325668527722,10939.6926207859087298,0.00000000000000000000,-0.0088962311096362541,0.33669386680430674063,0.94157214122360644026,100.000000000000000000,0.70572787307425577374,0.70572787307425577374,0.00000000000000001102,0.00000000000000000500,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -34 ,0 ,-12.309168919022127397,0.47420276617363871229,-72.221989751321615358,1.00000000000000000000,0.01149109330198833621,0.16166471645259292144,0.98677883754619888367,100.000000000000000000,0.71039022321931799552,0.71039022321931799552,0.00000000000000001091,0.00000000000000000499,9928.80785182622639695,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -34 ,1 ,-0.0000000000000010731,-0.0000000000002642313,0.00000000000000000000,1.00000000000000000000,0.01149109330198833621,-0.0121436807491555696,0.99986023312890448533,100.000000000000000000,0.71039022321931799552,0.71039022321931799552,0.00000000000000001091,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -34 ,2 ,-0.0000000000000010731,342.020143325668414036,10939.6926207859087298,0.00000000000000000000,0.01149109330198833621,0.33056101305122298494,0.94371466631883682563,100.000000000000000000,0.71039022321931799552,0.71039022321931799552,0.00000000000000001091,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -35 ,0 ,7.71193572756398548762,0.12204199797192583076,23.5823203995562877821,1.00000000000000000000,-0.0078951563531782734,0.17764877987410385151,0.98406228335172019061,100.000000000000000000,0.69863797935164018149,0.69863797935164018149,0.00000000000000001118,0.00000000000000000502,10023.2067127512345905,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -35 ,1 ,0.00000000000001400978,-0.0000000000007561649,0.00000000000000000000,1.00000000000000000000,-0.0078951563531782734,0.00406927351839194394,0.99996055298156194535,100.000000000000000000,0.69863797935164018149,0.69863797935164018149,0.00000000000000001118,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -35 ,2 ,0.00000000000001400978,342.020143325667902445,10939.6926207859087298,0.00000000000000000000,-0.0078951563531782734,0.34583051794796110245,0.93826377920177828073,100.000000000000000000,0.69863797935164018149,0.69863797935164018149,0.00000000000000001118,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,0 ,7.64699682498994093293,0.09376732594999868941,-5.3544313848644087272,1.00000000000000000000,-0.0076067842627988661,0.17264175565063652473,0.98495530915826079443,100.000000000000000000,0.70237014051164137207,0.70237014051164137207,0.00000000000000001110,0.00000000000000000501,9994.71359239307639654,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -36 ,1 ,0.00000000000000283655,-0.0000000000001683672,0.00000000000000000000,1.00000000000000000000,-0.0076067842627988661,-0.0010167550603138837,0.99997055108754384633,100.000000000000000000,0.70237014051164137207,0.70237014051164137207,0.00000000000000001110,0.00000000000000000501,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,2 ,0.00000000000000283655,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,-0.0076067842627988661,0.34105463397708590811,0.94001269857163871623,100.000000000000000000,0.70237014051164137207,0.70237014051164137207,0.00000000000000001110,0.00000000000000000501,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,0 ,-13.423827974585105238,0.44799426586235541192,-60.415852092052993782,1.00000000000000000000,0.01266922787484858585,0.16346399817012841060,0.98646794776479762578,100.000000000000000000,0.70903287001190107297,0.70903287001190107297,0.00000000000000001094,0.00000000000000000499,9940.43835131937339610,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -37 ,1 ,0.00000000000000216023,-0.0000000000002440116,0.00000000000000000000,1.00000000000000000000,0.01266922787484858585,-0.0103177487198778568,0.99986650845320768077,100.000000000000000000,0.70903287001190107297,0.70903287001190107297,0.00000000000000001094,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,2 ,0.00000000000000216023,342.020143325668414036,10939.6926207859087298,0.00000000000000000000,0.01266922787484858585,0.33227897419250951305,0.94309605766042114982,100.000000000000000000,0.70903287001190107297,0.70903287001190107297,0.00000000000000001094,0.00000000000000000499,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -38 ,0 ,16.4509379631673908761,0.51373620176832879291,-44.575221710831542054,1.00000000000000000000,-0.0157580409340129443,0.16584219220836460273,0.98602639489490617741,100.000000000000000000,0.70717561215348023750,0.70717561215348023750,0.00000000000000001098,0.00000000000000000500,9956.02898659446691453,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -38 ,1 ,0.00000000000000637216,-0.0000000000005763130,0.00000000000000000000,1.00000000000000000000,-0.0157580409340129443,-0.0078990099416552227,0.99984463282445190657,100.000000000000000000,0.70717561215348023750,0.70717561215348023750,0.00000000000000001098,0.00000000000000000500,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -38 ,2 ,0.00000000000000637216,342.020143325668072975,10939.6926207859087298,0.00000000000000000000,-0.0157580409340129443,0.33454436326833164594,0.94224824390990924438,100.000000000000000000,0.70717561215348023750,0.70717561215348023750,0.00000000000000001098,0.00000000000000000500,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -39 ,0 ,9.77058820750191969750,0.17828606331963881004,22.9888901692427012335,1.00000000000000000000,-0.0099966556487147608,0.17748355932652087885,0.98407299172603568404,100.000000000000000000,0.69871733654995438200,0.69871733654995438200,0.00000000000000001118,0.00000000000000000502,10022.6143071399983455,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -39 ,1 ,-0.0000000000000152383,-0.0000000000002066932,0.00000000000000000000,1.00000000000000000000,-0.0099966556487147608,0.00390470355248968576,0.99994240842460913043,100.000000000000000000,0.69871733654995438200,0.69871733654995438200,0.00000000000000001118,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -39 ,2 ,-0.0000000000000152383,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,-0.0099966556487147608,0.34566966696143019976,0.93830301513882730102,100.000000000000000000,0.69871733654995438200,0.69871733654995438200,0.00000000000000001118,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -40 ,0 ,-13.827056985003961742,0.58404008391585959802,-79.431598123003539058,1.00000000000000000000,0.01282292178502232420,0.16049604065609485159,0.98695318714243596147,100.000000000000000000,0.71120913342062896944,0.71120913342062896944,0.00000000000000001089,0.00000000000000000498,9921.69216838283500692,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -40 ,1 ,-0.0000000000000063714,0.00000000000004737248,0.00000000000000000000,1.00000000000000000000,0.01282292178502232420,-0.0133248772239680599,0.99982899554066795300,100.000000000000000000,0.71120913342062896944,0.71120913342062896944,0.00000000000000001089,0.00000000000000000498,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -40 ,2 ,-0.0000000000000063714,342.020143325668698253,10939.6926207859087298,0.00000000000000000000,0.01282292178502232420,0.32944036755573757879,0.94408930557529102678,100.000000000000000000,0.71120913342062896944,0.71120913342062896944,0.00000000000000001089,0.00000000000000000498,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,0 ,-7.6042256962217589233,0.22410055915066051657,51.6354180992114919490,1.00000000000000000000,0.00801135575205329589,0.18270919790982340091,0.98313435866017984121,100.000000000000000000,0.69485189443374406614,0.69485189443374406614,0.00000000000000001127,0.00000000000000000503,10050.8191208120024384,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -41 ,1 ,0.00000000000001078319,0.00000000000004627634,0.00000000000000000000,1.00000000000000000000,0.00801135575205329589,0.00921394486514951274,0.99992545792125719916,100.000000000000000000,0.69485189443374406614,0.69485189443374406614,0.00000000000000001127,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,2 ,0.00000000000001078319,342.020143325668698253,10939.6926207859087298,0.00000000000000000000,0.00801135575205329589,0.35065292443132245470,0.93647121940120237049,100.000000000000000000,0.69485189443374406614,0.69485189443374406614,0.00000000000000001127,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -42 ,0 ,2.39901064426452448330,0.01320989529559026161,9.19950037835543277253,3.00000000000000000000,-0.0024209391784400739,0.17522210550858219324,0.98452595333725623216,100.000000000000000000,0.70051263191766999227,0.70051263191766999227,0.00000000000000001114,0.00000000000000000502,10009.0578624902409501,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -43 ,0 ,-0.4526835870140141215,0.00035056035658596960,-0.7399660894948142386,1.00000000000000000000,0.00045235392316904496,0.17352136921855512707,0.98483000045715807235,100.000000000000000000,0.70178455044895793335,0.70178455044895793335,0.00000000000000001111,0.00000000000000000502,9999.27122585196048021,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -43 ,1 ,0.00000000000000033626,-0.0000000000002378630,0.00000000000000000000,1.00000000000000000000,0.00045235392316904496,-0.0001287451713806173,0.99999988940029826967,100.000000000000000000,0.70178455044895793335,0.70178455044895793335,0.00000000000000001111,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -43 ,2 ,0.00000000000000033626,342.020143325668414036,10939.6926207859087298,0.00000000000000000000,0.00045235392316904496,0.34189912461083465933,0.93973655029815283956,100.000000000000000000,0.70178455044895793335,0.70178455044895793335,0.00000000000000001111,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,0 ,14.9882210124446757504,0.48569789131960416916,49.8840562275269121528,1.00000000000000000000,-0.0157614327625755362,0.18209557890279401415,0.98315450331131937211,100.000000000000000000,0.69509870241285454106,0.69509870241285454106,0.00000000000000001126,0.00000000000000000503,10049.0571994169731624,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -44 ,1 ,0.00000000000001461143,-0.0000000000002865735,0.00000000000000000000,1.00000000000000000000,-0.0157614327625755362,0.00860615002767125061,0.99983874270752870483,100.000000000000000000,0.69509870241285454106,0.69509870241285454106,0.00000000000000001126,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,2 ,0.00000000000001461143,342.020143325668357192,10939.6926207859087298,0.00000000000000000000,-0.0157614327625755362,0.35005212575776445405,0.93659761183217882241,100.000000000000000000,0.69509870241285454106,0.69509870241285454106,0.00000000000000001126,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,0 ,8.90570587251371392767,0.15082216403093190448,22.2755832804269999769,1.00000000000000000000,-0.0091052542475915012,0.17738487614039880058,0.98409943606413174954,100.000000000000000000,0.69881081663430433259,0.69881081663430433259,0.00000000000000001118,0.00000000000000000502,10021.9157389405754656,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -45 ,1 ,-0.0000000000000029865,-0.0000000000005193602,0.00000000000000000000,1.00000000000000000000,-0.0091052542475915012,0.00380292757458475542,0.99995131485835297979,100.000000000000000000,0.69881081663430433259,0.69881081663430433259,0.00000000000000001118,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,2 ,-0.0000000000000029865,342.020143325668129818,10939.6926207859087298,0.00000000000000000000,-0.0091052542475915012,0.34557707500576523296,0.93834619388344409074,100.000000000000000000,0.69881081663430433259,0.69881081663430433259,0.00000000000000001118,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,0 ,-0.3307864004869899288,-386.90290006754088381,0.00000000000000000000,1.00000000000000000000,-0.0000298758255289863,-0.3438484310890401740,0.93902516235990218795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.0421822671360132,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -46 ,1 ,-0.3307864004869899288,-21.549656828467220748,11072.0212061201254982,0.00000000000000000000,-0.0000298758255289863,-0.0019463127464399154,0.99999810548526935072,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.0421822671360132,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -47 ,0 ,-3.7334459048680939119,0.02230075292620381857,2.07407763459179816933,3.00000000000000000000,0.00374107545166759217,0.17398069302418059378,0.98474195747377923915,100.000000000000000000,0.70142680148950953267,0.70142680148950953267,0.00000000000000001112,0.00000000000000000502,10002.0393993379893800,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -48 ,0 ,7.52825323832961146308,0.40305219449320689451,79.1174593882176395709,1.00000000000000000000,-0.0081638782991516004,0.18787254831932909127,0.98215948637638161855,100.000000000000000000,0.69097045761255371232,0.69097045761255371232,0.00000000000000001135,0.00000000000000000504,10077.8582234485347726,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -48 ,1 ,0.00000000000000123490,-0.0000000000003961963,0.00000000000000000000,1.00000000000000000000,-0.0081638782991516004,0.01446813717548900424,0.99986200252724244386,100.000000000000000000,0.69097045761255371232,0.69097045761255371232,0.00000000000000001135,0.00000000000000000504,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -48 ,2 ,0.00000000000000123490,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,-0.0081638782991516004,0.35556854715058283655,0.93461455122865477740,100.000000000000000000,0.69097045761255371232,0.69097045761255371232,0.00000000000000001135,0.00000000000000000504,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -49 ,0 ,1.49659911924146382666,0.01015168628197833135,-11.807436983616005576,1.00000000000000000000,-0.0014793945041201800,0.17164191668924991263,0.98515829379198849302,100.000000000000000000,0.70317813099590575909,0.70317813099590575909,0.00000000000000001108,0.00000000000000000501,9988.37050220656783494,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -49 ,1 ,0.00000000000000029409,-0.0000000000000435318,0.00000000000000000000,1.00000000000000000000,-0.0014793945041201800,-0.0020366521329922946,0.99999683171497610878,100.000000000000000000,0.70317813099590575909,0.70317813099590575909,0.00000000000000001108,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -49 ,2 ,0.00000000000000029409,342.020143325668584566,10939.6926207859087298,0.00000000000000000000,-0.0014793945041201800,0.34010523272788995008,0.94038621962628132777,100.000000000000000000,0.70317813099590575909,0.70317813099590575909,0.00000000000000001108,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -50 ,0 ,-3.2479248710679478051,0.06630060813680353770,-32.533567236256210719,3.00000000000000000000,0.00314706542427192412,0.16819155160825169370,0.98574930786018022388,100.000000000000000000,0.70572524334667607881,0.70572524334667607881,0.00000000000000001102,0.00000000000000000500,9967.95127104186030919,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -51 ,0 ,2.38639377097429639107,0.03704219871626772409,-24.396318915645345271,1.00000000000000000000,-0.0023303922390261666,0.16953700081879910510,0.98552106757054103169,100.000000000000000000,0.70473475381719019594,0.70473475381719019594,0.00000000000000001104,0.00000000000000000501,9975.96905318757490022,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -51 ,1 ,0.00000000000000107002,-0.0000000000006801173,0.00000000000000000000,1.00000000000000000000,-0.0023303922390261666,-0.0041725846072017186,0.99998857933963813948,100.000000000000000000,0.70473475381719019594,0.70473475381719019594,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -51 ,2 ,0.00000000000000107002,342.020143325668016132,10939.6926207859087298,0.00000000000000000000,-0.0023303922390261666,0.33809529026478252200,0.94110899686103532957,100.000000000000000000,0.70473475381719019594,0.70473475381719019594,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,0 ,-14.493378582902934681,0.33580904053693927391,-9.6011612679789717361,1.00000000000000000000,0.01435694441967719052,0.17168088374831902420,0.98504799492325567644,100.000000000000000000,0.70290815781344440082,0.70290815781344440082,0.00000000000000001108,0.00000000000000000501,9990.49699161342869047,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -52 ,1 ,-0.0000000000000120203,-0.0000000000003886213,0.00000000000000000000,1.00000000000000000000,0.01435694441967719052,-0.0019791238735548115,0.99989497509269598118,100.000000000000000000,0.70290815781344440082,0.70290815781344440082,0.00000000000000001108,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,2 ,-0.0000000000000120203,342.020143325668300349,10939.6926207859087298,0.00000000000000000000,0.01435694441967719052,0.34012445459221907206,0.94027082988640842131,100.000000000000000000,0.70290815781344440082,0.70290815781344440082,0.00000000000000001108,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -53 ,0 ,12.4939909143168108585,0.24775574238375006053,-4.4313477427700034283,3.00000000000000000000,-0.0124392677678118474,0.17264093548357870022,0.98490627575051803432,100.000000000000000000,0.70225648239539728567,0.70225648239539728567,0.00000000000000001110,0.00000000000000000501,9995.60077429584998753,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -54 ,0 ,-17.401646228156440798,0.48071450343642624369,-6.8823326871978869334,1.00000000000000000000,0.01728332334388305718,0.17199000710932715874,0.98494706669380183150,100.000000000000000000,0.70256956437951778582,0.70256956437951778582,0.00000000000000001109,0.00000000000000000501,9993.15392752197658410,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -54 ,1 ,-0.0000000000000147404,-0.0000000000001801974,0.00000000000000000000,1.00000000000000000000,0.01728332334388305718,-0.0016571707878769729,0.99984925889814535437,100.000000000000000000,0.70256956437951778582,0.70256956437951778582,0.00000000000000001109,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -54 ,2 ,-0.0000000000000147404,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,0.01728332334388305718,0.34041135567165731190,0.94011775627523119780,100.000000000000000000,0.70256956437951778582,0.70256956437951778582,0.00000000000000001109,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -55 ,0 ,3.60526234965565262058,-342.70312529197684625,0.00000000000000000000,1.00000000000000000000,0.00032606381239634125,-0.3403211436641045972,0.94030921130101974281,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11056.9226408766189706,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -55 ,1 ,3.60526234965565262058,19.9845453685294387469,11056.9039928164256707,0.00000000000000000000,0.00032606381239634125,0.00180742382104117282,0.99999831344933820531,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11056.9226408766189706,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -56 ,0 ,11.8994768122247993602,0.22463718286265718648,1.73414155744581433005,1.00000000000000000000,-0.0119194523906198997,0.17371466551276948386,0.98472389106819901982,100.000000000000000000,0.70147387151198592469,0.70147387151198592469,0.00000000000000001112,0.00000000000000000502,10001.6758805472327367,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -56 ,1 ,0.00000000000001432774,-0.0000000000006304013,0.00000000000000000000,1.00000000000000000000,-0.0119194523906198997,0.00008004021981626740,0.99992895760062405763,100.000000000000000000,0.70147387151198592469,0.70147387151198592469,0.00000000000000001112,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -56 ,2 ,0.00000000000001432774,342.020143325668072975,10939.6926207859087298,0.00000000000000000000,-0.0119194523906198997,0.34207105859797931612,0.93959848739999840550,100.000000000000000000,0.70147387151198592469,0.70147387151198592469,0.00000000000000001112,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -57 ,0 ,7.83712448396275807027,0.15235259403091033769,33.2524961321846745931,1.00000000000000000000,-0.0081022769280714238,0.17936568743821790228,0.98374910585900721127,100.000000000000000000,0.69735224097407655374,0.69735224097407655374,0.00000000000000001121,0.00000000000000000503,10032.7256703840903355,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -57 ,1 ,0.00000000000000034215,-0.0000000000003116812,0.00000000000000000000,1.00000000000000000000,-0.0081022769280714238,0.00581448009963271127,0.99995027122840030031,100.000000000000000000,0.69735224097407655374,0.69735224097407655374,0.00000000000000001121,0.00000000000000000503,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -57 ,2 ,0.00000000000000034215,342.020143325668357192,10939.6926207859087298,0.00000000000000000000,-0.0081022769280714238,0.34746695912741010214,0.93765722170915466460,100.000000000000000000,0.69735224097407655374,0.69735224097407655374,0.00000000000000001121,0.00000000000000000503,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -58 ,0 ,-11.078788707728095985,0.25587490610302027205,34.6887235734814822762,3.00000000000000000000,0.01147021400805807271,0.17951843585836707584,0.98368773773874729204,100.000000000000000000,0.69716148088622609257,0.69716148088622609257,0.00000000000000001122,0.00000000000000000503,10034.1253702899521158,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -59 ,0 ,6.46046913624813878840,0.06632177593608047649,1.84415734869520320238,1.00000000000000000000,-0.0064721625070438132,0.17389603694526870047,0.98474274785205295756,100.000000000000000000,0.70145693327953262397,0.70145693327953262397,0.00000000000000001112,0.00000000000000000502,10001.8067177366065152,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -59 ,1 ,0.00000000000000276766,-0.0000000000005138987,0.00000000000000000000,1.00000000000000000000,-0.0064721625070438132,0.00025538176656357005,0.99997902272629457520,100.000000000000000000,0.70145693327953262397,0.70145693327953262397,0.00000000000000001112,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -59 ,2 ,0.00000000000000276766,342.020143325668186662,10939.6926207859087298,0.00000000000000000000,-0.0064721625070438132,0.34225294903703240567,0.93958556288820027635,100.000000000000000000,0.70145693327953262397,0.70145693327953262397,0.00000000000000001112,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -60 ,0 ,2.00127033499683459893,0.00721953829610212823,4.25151414192824628202,1.00000000000000000000,-0.0020096826623723796,0.17437085681350311672,0.98467800090675394741,100.000000000000000000,0.70114830536340777555,0.70114830536340777555,0.00000000000000001112,0.00000000000000000502,10004.1858983674646879,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -60 ,1 ,0.00000000000000318026,-0.0000000000008541457,0.00000000000000000000,1.00000000000000000000,-0.0020096826623723796,0.00073423124314569282,0.99999771103741930122,100.000000000000000000,0.70114830536340777555,0.70114830536340777555,0.00000000000000001112,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -60 ,2 ,0.00000000000000318026,342.020143325667845601,10939.6926207859087298,0.00000000000000000000,-0.0020096826623723796,0.34270931213549321592,0.93943934798964712218,100.000000000000000000,0.70114830536340777555,0.70114830536340777555,0.00000000000000001112,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -61 ,0 ,10.4794518388644171125,0.17414194811346284108,-2.9053341646778645390,1.00000000000000000000,-0.0104492958297827676,0.17297484123068854189,0.98487081209561688766,100.000000000000000000,0.70206224324438815109,0.70206224324438815109,0.00000000000000001110,0.00000000000000000502,9997.11406303612238843,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -61 ,1 ,0.00000000000000386725,-0.0000000000004696252,0.00000000000000000000,1.00000000000000000000,-0.0104492958297827676,-0.0006740570377157658,0.99994517742912858437,100.000000000000000000,0.70206224324438815109,0.70206224324438815109,0.00000000000000001110,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -61 ,2 ,0.00000000000000386725,342.020143325668186662,10939.6926207859087298,0.00000000000000000000,-0.0104492958297827676,0.34136798647779142967,0.93987164550525714723,100.000000000000000000,0.70206224324438815109,0.70206224324438815109,0.00000000000000001110,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,0 ,21.6850031053740117670,0.91527977813848249155,-63.937234455373108232,1.00000000000000000000,-0.0203979740965516617,0.16248100863239919866,0.98650080815301643966,100.000000000000000000,0.70944784709048624993,0.70944784709048624993,0.00000000000000001093,0.00000000000000000499,9936.90407671220964402,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -62 ,1 ,-0.0000000000000084471,0.00000000000002541394,0.00000000000000000000,1.00000000000000000000,-0.0203979740965516617,-0.0112915105842951168,0.99972817527640023271,100.000000000000000000,0.70944784709048624993,0.70944784709048624993,0.00000000000000001093,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,2 ,-0.0000000000000084471,342.020143325668641409,10939.6926207859087298,0.00000000000000000000,-0.0203979740965516617,0.33131662462115551992,0.94329911316739833981,100.000000000000000000,0.70944784709048624993,0.70944784709048624993,0.00000000000000001093,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -63 ,0 ,-14.352560807008686083,0.37390898543223860528,-33.309563037949502017,3.00000000000000000000,0.01389598542559728616,0.16776216764421114646,0.98572955555586705411,100.000000000000000000,0.70582436967987405296,0.70582436967987405296,0.00000000000000001102,0.00000000000000000500,9967.14336065937641251,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -64 ,0 ,-12.432433041412917162,0.27024510844508470297,-24.329460362983589050,1.00000000000000000000,0.01214106880123599040,0.16931467885624706948,0.98548725713332774311,100.000000000000000000,0.70473068758765000652,0.70473068758765000652,0.00000000000000001104,0.00000000000000000501,9976.00176352288872294,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -64 ,1 ,0.00000000000000418675,-0.0000000000004015730,0.00000000000000000000,1.00000000000000000000,0.01214106880123599040,-0.0043856578787796508,0.99991667675528528302,100.000000000000000000,0.70473068758765000652,0.70473068758765000652,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -64 ,2 ,0.00000000000000418675,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,0.01214106880123599040,0.33787047475158815679,0.94111430588398747865,100.000000000000000000,0.70473068758765000652,0.70473068758765000652,0.00000000000000001104,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -65 ,0 ,11.8531160881149784103,0.27582449110263940195,32.1246233968862355823,3.00000000000000000000,-0.0122398638419693190,0.17902920894883617153,0.98376761894071496072,100.000000000000000000,0.69750569045452981420,0.69750569045452981420,0.00000000000000001121,0.00000000000000000503,10031.5973902036585059,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -66 ,0 ,0.92222255721226042979,0.04601190752755438678,30.3692724031979821575,1.00000000000000000000,-0.0009506482300213906,0.17895310661878735536,0.98385714506702015569,100.000000000000000000,0.69773582091258312676,0.69773582091258312676,0.00000000000000001120,0.00000000000000000503,10029.9013577382756920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -66 ,1 ,0.00000000000000049778,-0.0000000000003759145,0.00000000000000000000,1.00000000000000000000,-0.0009506482300213906,0.00538940649832534823,0.99998502517064635775,100.000000000000000000,0.69773582091258312676,0.69773582091258312676,0.00000000000000001120,0.00000000000000000503,10999.9999999999963620,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -66 ,2 ,0.00000000000000049778,342.020143325668300349,10939.6926207859087298,0.00000000000000000000,-0.0009506482300213906,0.34707940714927881797,0.93783526346626966407,100.000000000000000000,0.69773582091258312676,0.69773582091258312676,0.00000000000000001120,0.00000000000000000503,10999.9999999999963620,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,0 ,-10.126807721163308073,0.20051532845564809526,-29.171573340688116360,1.00000000000000000000,0.00984373268201403292,0.16859927327464310775,0.98563552390229292043,100.000000000000000000,0.70532006858885587519,0.70532006858885587519,0.00000000000000001103,0.00000000000000000501,9971.24312003448721952,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -67 ,1 ,-0.0000000000000024151,0.00000000000010005390,0.00000000000000000000,1.00000000000000000000,0.00984373268201403292,-0.0051159410963307790,0.99993846214333803601,100.000000000000000000,0.70532006858885587519,0.70532006858885587519,0.00000000000000001103,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,2 ,-0.0000000000000024151,342.020143325668755096,10939.6926207859087298,0.00000000000000000000,0.00984373268201403292,0.33719168404251576021,0.94138454902311685668,100.000000000000000000,0.70532006858885587519,0.70532006858885587519,0.00000000000000001103,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -68 ,0 ,-19.215531137701301389,0.59850889974901533285,14.0834930407427219023,3.00000000000000000000,0.01948410984036972118,0.17546841302158810993,0.98429223581993874336,100.000000000000000000,0.69989114340613733933,0.69989114340613733933,0.00000000000000001115,0.00000000000000000502,10013.7844995162122359,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -69 ,0 ,-29.952819986205657443,-367.48533848962830461,0.00000000000000000000,1.00000000000000000000,-0.0027068847967085855,-0.3422993808882140998,0.93958704046950458632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11065.4210414224271517,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -69 ,1 ,-29.952819986205657443,-3.3031175000468238067,11065.3800089262131223,0.00000000000000000000,-0.0027068847967085855,-0.0002985080719189855,0.99999629182693872131,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11065.4210414224271517,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -70 ,0 ,0.02358475971254117911,0.00244496507809413956,7.14277698968306307136,3.00000000000000000000,-0.0000237518280470632,0.17487579413614121048,0.98459050171180528820,100.000000000000000000,0.70077731146627209035,0.70077731146627209035,0.00000000000000001113,0.00000000000000000502,10007.0339147871527529,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -71 ,0 ,4.68425747180554274962,0.03909904222683334429,-9.7247266663770073336,1.00000000000000000000,-0.0046397964311405484,0.17196125282712415582,0.98509278741406047785,100.000000000000000000,0.70291827139386486855,0.70291827139386486855,0.00000000000000001108,0.00000000000000000501,9990.41745875603919557,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -71 ,1 ,0.00000000000000150719,-0.0000000000000480407,0.00000000000000000000,1.00000000000000000000,-0.0046397964311405484,-0.0017107923654440494,0.99998777266452598677,100.000000000000000000,0.70291827139386486855,0.70291827139386486855,0.00000000000000001108,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -71 ,2 ,0.00000000000000150719,342.020143325668584566,10939.6926207859087298,0.00000000000000000000,-0.0046397964311405484,0.34040834236913269927,0.94026625629902116365,100.000000000000000000,0.70291827139386486855,0.70291827139386486855,0.00000000000000001108,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -72 ,0 ,-17.442337026379412634,0.57827874208914531450,42.2230204765055745497,1.00000000000000000000,0.01819752329772530638,0.18056316152225537763,0.98339503499199987235,100.000000000000000000,0.69614918274795645203,0.69614918274795645203,0.00000000000000001124,0.00000000000000000503,10041.4993985165165213,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -72 ,1 ,-0.0000000000000047335,-0.0000000000004043967,0.00000000000000000000,1.00000000000000000000,0.01819752329772530638,0.00705524562244474844,0.99980951868595224762,100.000000000000000000,0.69614918274795645203,0.69614918274795645203,0.00000000000000001124,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -72 ,2 ,-0.0000000000000047335,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,0.01819752329772530638,0.34858475712858061346,0.93710059078171370483,100.000000000000000000,0.69614918274795645203,0.69614918274795645203,0.00000000000000001124,0.00000000000000000503,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -73 ,0 ,-9.9670705550382532322,0.20245397450685648221,29.7948880402105551468,1.00000000000000000000,0.01026806314617295830,0.17868355937414512335,0.98385301366038024895,100.000000000000000000,0.69781544003455753255,0.69781544003455753255,0.00000000000000001120,0.00000000000000000503,10029.3134729354387673,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -73 ,1 ,0.00000000000001233207,-0.0000000000001717283,0.00000000000000000000,1.00000000000000000000,0.01026806314617295830,0.00512467169323285818,0.99993415014152919884,100.000000000000000000,0.69781544003455753255,0.69781544003455753255,0.00000000000000001120,0.00000000000000000503,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -73 ,2 ,0.00000000000001233207,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,0.01026806314617295830,0.34681323752171783203,0.93787800121280695542,100.000000000000000000,0.69781544003455753255,0.69781544003455753255,0.00000000000000001120,0.00000000000000000503,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -74 ,0 ,-8.5092956436319795443,0.11972664783007103128,9.72719000175554349141,3.00000000000000000000,0.00859145054641737362,0.17520382035882259286,0.98449469694314839518,100.000000000000000000,0.70044651717834005566,0.70044651717834005566,0.00000000000000001114,0.00000000000000000502,10009.5624018716662249,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -75 ,0 ,-21.496875829434536342,0.91950628007029611143,58.3492752395213116756,3.00000000000000000000,0.02280429579967206688,0.18323386833713312116,0.98280481968053601260,100.000000000000000000,0.69393318107875523459,0.69393318107875523459,0.00000000000000001129,0.00000000000000000504,10057.3321790649806644,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -76 ,0 ,1.69284855323381910885,0.00586796878565212613,5.24941812378072469869,3.00000000000000000000,-0.0017016440689034606,0.17454450124560783041,0.98464781596893058424,100.000000000000000000,0.70102045551948743984,0.70102045551948743984,0.00000000000000001113,0.00000000000000000502,10005.1688339708489365,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -77 ,0 ,11.6193842201899872890,-340.73943505270648302,0.00000000000000000000,1.00000000000000000000,0.00105093261113999286,-0.3401639305642029653,0.94036556502445300953,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11056.2600275444183353,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -77 ,1 ,11.6193842201899872890,21.8298105958810992888,11056.2323711993431061,0.00000000000000000000,0.00105093261113999286,0.00197442991947520320,0.99999749858044129080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11056.2600275444183353,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -78 ,0 ,8.43689657289664829420,0.12814560409166295129,17.3692640704914005311,1.00000000000000000000,-0.0085835654975946838,0.17653654367896806642,0.98425665918460114589,100.000000000000000000,0.69945406234590756788,0.69945406234590756788,0.00000000000000001116,0.00000000000000000502,10017.0871795338607626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -78 ,1 ,0.00000000000001286436,-0.0000000000003818410,0.00000000000000000000,1.00000000000000000000,-0.0085835654975946838,0.00294018168107916793,0.99995883802036089615,100.000000000000000000,0.69945406234590756788,0.69945406234590756788,0.00000000000000001116,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -78 ,2 ,0.00000000000001286436,342.020143325668300349,10939.6926207859087298,0.00000000000000000000,-0.0085835654975946838,0.34476893212897291585,0.93864833981741835344,100.000000000000000000,0.69945406234590756788,0.69945406234590756788,0.00000000000000001116,0.00000000000000000502,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -79 ,0 ,-10.230940583145233802,0.19752622464826163906,24.8647916316258594804,1.00000000000000000000,0.01048745294172173658,0.17779944374896292091,0.98401085925580844548,100.000000000000000000,0.69846997666683119376,0.69846997666683119376,0.00000000000000001119,0.00000000000000000502,10024.4589758830788923,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -79 ,1 ,-0.0000000000000094535,-0.0000000000003154930,0.00000000000000000000,1.00000000000000000000,0.01048745294172173658,0.00422657817099528210,0.99993607264052597471,100.000000000000000000,0.69846997666683119376,0.69846997666683119376,0.00000000000000001119,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -79 ,2 ,-0.0000000000000094535,342.020143325668357192,10939.6926207859087298,0.00000000000000000000,0.01048745294172173658,0.34596996319947798115,0.93818697384612326217,100.000000000000000000,0.69846997666683119376,0.69846997666683119376,0.00000000000000001119,0.00000000000000000502,10999.9999999999981810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -80 ,0 ,-17.203866127042882538,0.51400874570255838946,-33.133564813634542645,1.00000000000000000000,0.01665906118885861555,0.16765142745485217545,0.98570557193954033703,100.000000000000000000,0.70580555541112655060,0.70580555541112655060,0.00000000000000001102,0.00000000000000000500,9967.29678029223941848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -80 ,1 ,0.00000000000001109569,0.00000000000006031758,0.00000000000000000000,1.00000000000000000000,0.01665906118885861555,-0.0060615507223382731,0.99984285429418662261,100.000000000000000000,0.70580555541112655060,0.70580555541112655060,0.00000000000000001102,0.00000000000000000500,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -80 ,2 ,0.00000000000001109569,342.020143325668698253,10939.6926207859087298,0.00000000000000000000,0.01665906118885861555,0.33627040184454259907,0.94161812457259719266,100.000000000000000000,0.70580555541112655060,0.70580555541112655060,0.00000000000000001102,0.00000000000000000500,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -81 ,0 ,-1.1450955286575339453,0.31912329094552832620,-82.955642476809927643,3.00000000000000000000,0.00105856748213791190,0.16023161044671702102,0.98707887752121270530,100.000000000000000000,0.71160112944771203302,0.71160112944771203302,0.00000000000000001088,0.00000000000000000498,9918.25930044169945176,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -82 ,0 ,-18.286517621725504767,0.55778723288645903899,-26.825731672776871761,1.00000000000000000000,0.01781447957872702575,0.16862233091322742506,0.98551973792244718097,100.000000000000000000,0.70504076862042897033,0.70504076862042897033,0.00000000000000001103,0.00000000000000000501,9973.50256341127351333,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -82 ,1 ,0.00000000000001948995,-0.0000000000001117944,0.00000000000000000000,1.00000000000000000000,0.01781447957872702575,-0.0050731277306872123,0.99982843912961727461,100.000000000000000000,0.70504076862042897033,0.70504076862042897033,0.00000000000000001103,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -82 ,2 ,0.00000000000001948995,342.020143325668527722,10939.6926207859087298,0.00000000000000000000,0.01781447957872702575,0.33719428535936013524,0.94126651817555317958,100.000000000000000000,0.70504076862042897033,0.70504076862042897033,0.00000000000000001103,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -83 ,0 ,17.6135003898255320109,0.49891366648833185282,-14.826697811470566534,1.00000000000000000000,-0.0173588062473832085,0.17064549687107644082,0.98517957055721017134,100.000000000000000000,0.70356287154349228529,0.70356287154349228529,0.00000000000000001107,0.00000000000000000501,9985.32766949451433902,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -83 ,1 ,0.00000000000001979573,-0.0000000000002616701,0.00000000000000000000,1.00000000000000000000,-0.0173588062473832085,-0.0030216287666919540,0.99984475875270839573,100.000000000000000000,0.70356287154349228529,0.70356287154349228529,0.00000000000000001107,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -83 ,2 ,0.00000000000001979573,342.020143325668414036,10939.6926207859087298,0.00000000000000000000,-0.0173588062473832085,0.33912764543720508303,0.94058019963524774897,100.000000000000000000,0.70356287154349228529,0.70356287154349228529,0.00000000000000001107,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -84 ,0 ,-6.1150059515452008795,0.37416035326812308037,79.4652028428700560880,1.00000000000000000000,0.00663380095359580260,0.18797452535566050446,0.98215150078906987562,100.000000000000000000,0.69091953376857850877,0.69091953376857850877,0.00000000000000001135,0.00000000000000000504,10078.2047887296630506,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -84 ,1 ,0.00000000000000395341,0.00000000000006527578,0.00000000000000000000,1.00000000000000000000,0.00663380095359580260,0.01456995163418169439,0.99987184638546822146,100.000000000000000000,0.69091953376857850877,0.69091953376857850877,0.00000000000000001135,0.00000000000000000504,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -84 ,2 ,0.00000000000000395341,342.020143325668698253,10939.6926207859087298,0.00000000000000000000,0.00663380095359580260,0.35566758824390692916,0.93458897883383484916,100.000000000000000000,0.69091953376857850877,0.69091953376857850877,0.00000000000000001135,0.00000000000000000504,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -85 ,0 ,-0.6017643166528174880,0.21974176847714260718,66.7230441599111117056,3.00000000000000000000,0.00064406533726248257,0.18561958721504906444,0.98262147036483793449,100.000000000000000000,0.69274103644158890880,0.69274103644158890880,0.00000000000000001131,0.00000000000000000504,10065.6781512097222730,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -86 ,0 ,-16.491232973917998805,0.45006154707183704255,17.9954011988269684252,3.00000000000000000000,0.01678767080270367195,0.17631143539522980967,0.98419126792402178427,100.000000000000000000,0.69937827300672739117,0.69937827300672739117,0.00000000000000001117,0.00000000000000000502,10017.6580677730435127,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -87 ,0 ,3.51336457734990670331,0.02089241464175496318,-5.4018835681879986410,3.00000000000000000000,-0.0034947627064009947,0.17270799769121530919,0.98496686957842238818,100.000000000000000000,0.70237479747514908190,0.70237479747514908190,0.00000000000000001110,0.00000000000000000501,9994.67721487503877142,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -88 ,0 ,-1.5772284759190644543,0.21639584792004640245,-67.701404587940487544,1.00000000000000000000,0.00147860048197617451,0.16258666395060331066,0.98669315921720479600,100.000000000000000000,0.70986918060322012902,0.70986918060322012902,0.00000000000000001092,0.00000000000000000499,9933.29638726272423809,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -88 ,1 ,-0.0000000000000008912,-0.0000000000006391810,0.00000000000000000000,1.00000000000000000000,0.00147860048197617451,-0.0112208618195492933,0.99993595094917997467,100.000000000000000000,0.70986918060322012902,0.70986918060322012902,0.00000000000000001092,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -88 ,2 ,-0.0000000000000008912,342.020143325668016132,10939.6926207859087298,0.00000000000000000000,0.00147860048197617451,0.33145407620943850846,0.94347019513324414941,100.000000000000000000,0.70986918060322012902,0.70986918060322012902,0.00000000000000001092,0.00000000000000000499,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -89 ,0 ,-4.1788107304647708062,0.02831495416557183730,-3.8487808431796679542,1.00000000000000000000,0.00416301486958204312,0.17296358144644760623,0.98491942249120745245,100.000000000000000000,0.70217889686535706061,0.70217889686535706061,0.00000000000000001110,0.00000000000000000501,9996.20566791674355044,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -89 ,1 ,0.00000000000000728545,-0.0000000000000941352,0.00000000000000000000,1.00000000000000000000,0.00416301486958204312,-0.0006935868671434652,0.99999109408256880993,100.000000000000000000,0.70217889686535706061,0.70217889686535706061,0.00000000000000001110,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -89 ,2 ,0.00000000000000728545,342.020143325668527722,10939.6926207859087298,0.00000000000000000000,0.00416301486958204312,0.34136533886158365591,0.93992147264072611889,100.000000000000000000,0.70217889686535706061,0.70217889686535706061,0.00000000000000001110,0.00000000000000000501,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -90 ,0 ,6.81381864766946332423,0.17982039401130417433,-48.010076314579819722,1.00000000000000000000,-0.0065060422297264237,0.16563288756223293329,0.98616601947760385016,100.000000000000000000,0.70757663144900506679,0.70757663144900506679,0.00000000000000001097,0.00000000000000000500,9952.69375649964422336,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -90 ,1 ,0.00000000000000080590,-0.0000000000001541477,0.00000000000000000000,1.00000000000000000000,-0.0065060422297264237,-0.0081293803342500949,0.99994579082562562444,100.000000000000000000,0.70757663144900506679,0.70757663144900506679,0.00000000000000001097,0.00000000000000000500,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -90 ,2 ,0.00000000000000080590,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,-0.0065060422297264237,0.33436248398442269813,0.94242209265183896071,100.000000000000000000,0.70757663144900506679,0.70757663144900506679,0.00000000000000001097,0.00000000000000000500,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,0 ,-9.9701386727567875567,0.17200923542580001668,-18.266717845376163609,1.00000000000000000000,0.00979371812394634611,0.17040652598772929038,0.98532517423747068008,100.000000000000000000,0.70398323988704147868,0.70398323988704147868,0.00000000000000001106,0.00000000000000000501,9981.98635629719865391,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -91 ,1 ,-0.0000000000000061627,-0.0000000000001935137,0.00000000000000000000,1.00000000000000000000,0.00979371812394634611,-0.0032822529590952080,0.99994665352748735021,100.000000000000000000,0.70398323988704147868,0.70398323988704147868,0.00000000000000001106,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,2 ,-0.0000000000000061627,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,0.00979371812394634611,0.33891758887227946273,0.94076508812684411786,100.000000000000000000,0.70398323988704147868,0.70398323988704147868,0.00000000000000001106,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -92 ,0 ,-13.168120917465572006,0.66040770749080568435,-92.921409749872807992,1.00000000000000000000,0.01206309826043587205,0.15847124126165984536,0.98728990036024766308,100.000000000000000000,0.71271639738386127760,0.71271639738386127760,0.00000000000000001085,0.00000000000000000498,9908.39644731619955564,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -92 ,1 ,-0.0000000000000092858,-0.0000000000001551399,0.00000000000000000000,1.00000000000000000000,0.01206309826043587205,-0.0153773850025714624,0.99980899060312589110,100.000000000000000000,0.71271639738386127760,0.71271639738386127760,0.00000000000000001085,0.00000000000000000498,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -92 ,2 ,-0.0000000000000092858,342.020143325668470879,10939.6926207859087298,0.00000000000000000000,0.01206309826043587205,0.32750479905047291673,0.94477250608771845552,100.000000000000000000,0.71271639738386127760,0.71271639738386127760,0.00000000000000001085,0.00000000000000000498,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -93 ,0 ,-7.1490650786013754114,-338.72739136233479939,0.00000000000000000000,1.00000000000000000000,-0.0006466481424787385,-0.3400031074588028001,0.94042408984698899754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11055.5719702487713220,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -93 ,1 ,-7.1490650786013754114,23.7205132044222182230,11055.5442117279835656,0.00000000000000000000,-0.0006466481424787385,0.00214557087306344691,0.99999748918275210840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11055.5719702487713220,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -94 ,0 ,3.89031397913859722237,0.16031051349501915237,-54.174796329843559306,3.00000000000000000000,-0.0036931915926833331,0.16469722902558647792,0.98633725626032864308,100.000000000000000000,0.70830106849279395042,0.70830106849279395042,0.00000000000000001096,0.00000000000000000500,9946.62546431498776655,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -95 ,0 ,-7.1138596778483504934,0.13358871890890824940,32.8313098872619093526,3.00000000000000000000,0.00735140981771886629,0.17930868902038105128,0.98376539419491892957,100.000000000000000000,0.69740832377999895097,0.69740832377999895097,0.00000000000000001121,0.00000000000000000503,10032.3135487968538654,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -96 ,0 ,-7.2427545178432835015,0.09964149949348480306,-19.085222654217098181,1.00000000000000000000,0.00710903756011141332,0.17034445376785276038,0.98535893391976747679,100.000000000000000000,0.70408303338636923918,0.70408303338636923918,0.00000000000000001106,0.00000000000000000501,9981.19056811822883901,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -96 ,1 ,0.00000000000000214517,-0.0000000000004121880,0.00000000000000000000,1.00000000000000000000,0.00710903756011141332,-0.0033492444697858420,0.99996912159648720930,100.000000000000000000,0.70408303338636923918,0.70408303338636923918,0.00000000000000001106,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -96 ,2 ,0.00000000000000214517,342.020143325668243505,10939.6926207859087298,0.00000000000000000000,0.00710903756011141332,0.33886232197620780315,0.94080911365157460224,100.000000000000000000,0.70408303338636923918,0.70408303338636923918,0.00000000000000001106,0.00000000000000000501,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -97 ,0 ,9.90597021658748921879,-389.32875323796622524,0.00000000000000000000,1.00000000000000000000,0.00089461543430313292,-0.3440414646689553546,0.93895402989265897009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.8809684619554900,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -97 ,1 ,9.90597021658748921879,-23.829213151826024841,11072.8508967691614088,0.00000000000000000000,0.00089461543430313292,-0.0021520337136917491,0.99999728420337186118,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.8809684619554900,0.00000000000000000000,2.00000000000000000000,2.00000000000000000000 -98 ,0 ,-0.7849229158794012173,0.16018376067829198650,56.9948586025198693505,3.00000000000000000000,0.00083157971039126159,0.18380033607158460795,0.98296324699103465594,100.000000000000000000,0.69410688250591601189,0.69410688250591601189,0.00000000000000001128,0.00000000000000000504,10056.1062204005775129,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -99 ,0 ,1.74776068947598894887,0.03142718525943998669,23.4508272624857099231,1.00000000000000000000,-0.0017890704907367969,0.17772032913584887015,0.98407940931543969043,100.000000000000000000,0.69865360771286710850,0.69865360771286710850,0.00000000000000001118,0.00000000000000000502,10023.0900914607336744,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -99 ,1 ,0.00000000000000108536,-0.0000000000003690354,0.00000000000000000000,1.00000000000000000000,-0.0017890704907367969,0.00413676189369011244,0.99998984316232619740,100.000000000000000000,0.69865360771286710850,0.69865360771286710850,0.00000000000000001118,0.00000000000000000502,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -99 ,2 ,0.00000000000000108536,342.020143325668300349,10939.6926207859087298,0.00000000000000000000,-0.0017890704907367969,0.34590395410804064546,0.93826822058471170961,100.000000000000000000,0.69865360771286710850,0.69865360771286710850,0.00000000000000001118,0.00000000000000000502,11000.0000000000018189,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/Ellipsoid_DGIA.rayui.csv b/Intern/RAY-Core/tests/output/Ellipsoid_DGIA.rayui.csv deleted file mode 100644 index dc58e82d7..000000000 --- a/Intern/RAY-Core/tests/output/Ellipsoid_DGIA.rayui.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,0.05882048391403579823,0.16490226832990301231,0.00000000000000000000,-1.0000000000000000000,0.00521878189192140004,0.00516383704542310983,0.99997304918809404306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00058149790447714600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,0.04977814599792829836,0.16529220016920700975,0.00000000000000000000,-1.0000000000000000000,0.00441622536327758961,0.00518769198446844981,0.99997679213340495696,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00053995472080714502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,0.04073232505912290080,0.16561720121049100518,0.00000000000000000000,-1.0000000000000000000,0.00361350236940675018,0.00520757384813070028,0.99997991168585198540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00050532631667010697,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,0.03168365380360380068,0.16587723991044600602,0.00000000000000000000,-1.0000000000000000000,0.00281064314820035979,0.00522348113795407034,0.99998240761020196210,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047761764074039097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,0.02263276527979860008,0.16607229102795800779,0.00000000000000000000,-1.0000000000000000000,0.00200767795465373001,0.00523541265483378967,0.99998427971821901572,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045683266648666198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,0.01358029280256079981,0.16620233562742101063,0.00000000000000000000,-1.0000000000000000000,0.00120463705706987003,0.00524336749924520038,0.99998552786869299158,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00044297436159013202,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,0.00452686987710892996,0.16626736108401998781,0.00000000000000000000,-1.0000000000000000000,0.00040155073325977199,0.00524734507140945001,0.99998615196747098199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043604471409253197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,-0.0045268698771089299,0.16626736108401998781,0.00000000000000000000,-1.0000000000000000000,-0.0004015507332597719,0.00524734507140945001,0.99998615196747098199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043604471409253197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-0.0135802928025607998,0.16620233562742101063,0.00000000000000000000,-1.0000000000000000000,-0.0012046370570698700,0.00524336749924520038,0.99998552786869299158,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00044297436159013202,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-0.0226327652797988013,0.16607229102795800779,0.00000000000000000000,-1.0000000000000000000,-0.0020076779546537300,0.00523541265483378967,0.99998427971821901572,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045683266648666198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,-0.0316836538036038006,0.16587723991044600602,0.00000000000000000000,-1.0000000000000000000,-0.0028106431482003597,0.00522348113795407034,0.99998240761020196210,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047761764074039097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,-0.0407323250591229008,0.16561720121049100518,0.00000000000000000000,-1.0000000000000000000,-0.0036135023694067501,0.00520757384813070028,0.99997991168585198540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00050532631667010697,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-0.0497781459979282983,0.16529220016920700975,0.00000000000000000000,-1.0000000000000000000,-0.0044162253632775896,0.00518769198446844981,0.99997679213340495696,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00053995472080714502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-0.0588204839140357982,0.16490226832990301231,0.00000000000000000000,-1.0000000000000000000,-0.0052187818919214000,0.00516383704542310983,0.99997304918809404306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00058149790447714600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,0.05812984039025170107,0.13915481323449199746,0.00000000000000000000,-1.0000000000000000000,0.00519278105207585972,0.00434616908666906991,0.99997707265677704402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045547744139184899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,0.04919368725890289895,0.13954093576061799009,0.00000000000000000000,-1.0000000000000000000,0.00439422136346555997,0.00436984518948264032,0.99998079745144596852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041432482146319698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,0.04025408512822539752,0.13986276167557298855,0.00000000000000000000,-1.0000000000000000000,0.00359549685375214981,0.00438957798892786014,0.99998390187415298058,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00038002197254627400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,0.03131166052646029707,0.14012025981700299004,0.00000000000000000000,-1.0000000000000000000,0.00279663746231617995,0.00440536600510144007,0.99998638569195896774,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035257380216080502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,0.02236704031929809960,0.14031340524847599193,0.00000000000000000000,-1.0000000000000000000,0.00199767314538970000,0.00441720805374701003,0.99998824871846103690,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00033198423659541698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,0.01342085163497449933,0.14044217926336000079,0.00000000000000000000,-1.0000000000000000000,0.00119863387231610991,0.00442510324647781960,0.99998949081382804138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031825622249925800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -20 ,0 ,0.00447372178931049017,0.14050656938957700736,0.00000000000000000000,-1.0000000000000000000,0.00039954962180648701,0.00442905099094498006,0.99999011188482300749,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031139172290295402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -21 ,0 ,-0.0044737217893104901,0.14050656938957700736,0.00000000000000000000,-1.0000000000000000000,-0.0003995496218064870,0.00442905099094498006,0.99999011188482300749,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031139172290295402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -22 ,0 ,-0.0134208516349744993,0.14044217926336000079,0.00000000000000000000,-1.0000000000000000000,-0.0011986338723161099,0.00442510324647781960,0.99998949081382804138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031825622249925800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -23 ,0 ,-0.0223670403192980996,0.14031340524847599193,0.00000000000000000000,-1.0000000000000000000,-0.0019976731453897000,0.00441720805374701003,0.99998824871846103690,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00033198423659541698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -24 ,0 ,-0.0313116605264602970,0.14012025981700299004,0.00000000000000000000,-1.0000000000000000000,-0.0027966374623161799,0.00440536600510144007,0.99998638569195896774,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035257380216080502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -25 ,0 ,-0.0402540851282253975,0.13986276167557298855,0.00000000000000000000,-1.0000000000000000000,-0.0035954968537521498,0.00438957798892786014,0.99998390187415298058,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00038002197254627400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -26 ,0 ,-0.0491936872589028989,0.13954093576061799009,0.00000000000000000000,-1.0000000000000000000,-0.0043942213634655599,0.00436984518948264032,0.99998079745144596852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041432482146319698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -27 ,0 ,-0.0581298403902517010,0.13915481323449199746,0.00000000000000000000,-1.0000000000000000000,-0.0051927810520758597,0.00434616908666906991,0.99997707265677704402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045547744139184899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -28 ,0 ,0.05744336930002540142,0.11347366461587600483,0.00000000000000000000,-1.0000000000000000000,0.00516697067379635974,0.00353251502622171009,0.99998041168397200362,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035075886580671099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -29 ,0 ,0.04861275987691639904,0.11385601512983900551,0.00000000000000000000,-1.0000000000000000000,0.00437237856364982961,0.00355601405321587021,0.99998411840876300082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030999499881545500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -30 ,0 ,0.03977873505983930274,0.11417469701279700511,0.00000000000000000000,-1.0000000000000000000,0.00357762325642718009,0.00357559925595501981,0.99998720776907801255,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027601619626693702,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -31 ,0 ,0.03094191527514799852,0.11442967947801599426,0.00000000000000000000,-1.0000000000000000000,0.00278273439664485002,0.00359126917281599004,0.99998967953424799937,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00024882731997877299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -32 ,0 ,0.02210292128174180109,0.11462093788923199966,0.00000000000000000000,-1.0000000000000000000,0.00198774164542273989,0.00360302263417105984,0.99999153351968395053,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022843225542601400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -33 ,0 ,0.01326237409724799996,0.11474845376548599429,0.00000000000000000000,-1.0000000000000000000,0.00119267467679908000,0.00361085876260969001,0.99999276958691696304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021483392595200701,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -34 ,0 ,0.00442089492414760032,0.11481221478433199789,0.00000000000000000000,-1.0000000000000000000,0.00039756317404190998,0.00361477697310009019,0.99999338764361700437,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020803427548798900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -35 ,0 ,-0.0044208949241476003,0.11481221478433199789,0.00000000000000000000,-1.0000000000000000000,-0.0003975631740419099,0.00361477697310009019,0.99999338764361700437,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020803427548798900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -36 ,0 ,-0.0132623740972479999,0.11474845376548599429,0.00000000000000000000,-1.0000000000000000000,-0.0011926746767990800,0.00361085876260969001,0.99999276958691696304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021483392595200701,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -37 ,0 ,-0.0221029212817415998,0.11462093788923199966,0.00000000000000000000,-1.0000000000000000000,-0.0019877416454227398,0.00360302263417105984,0.99999153351968395053,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022843225542601400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -38 ,0 ,-0.0309419152751479985,0.11442967947801599426,0.00000000000000000000,-1.0000000000000000000,-0.0027827343966448500,0.00359126917281599004,0.99998967953424799937,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00024882731997877299,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -39 ,0 ,-0.0397787350598393027,0.11417469701279700511,0.00000000000000000000,-1.0000000000000000000,-0.0035776232564271800,0.00357559925595501981,0.99998720776907801255,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027601619626693702,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -40 ,0 ,-0.0486127598769154969,0.11385601512983900551,0.00000000000000000000,-1.0000000000000000000,-0.0043723785636498296,0.00355601405321587021,0.99998411840876300082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030999499881545500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -41 ,0 ,-0.0574433693000254014,0.11347366461587600483,0.00000000000000000000,-1.0000000000000000000,-0.0051669706737963597,0.00353251502622171009,0.99998041168397200362,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035075886580671099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -42 ,0 ,0.05676102893361090195,0.08785816907667640118,0.00000000000000000000,-1.0000000000000000000,0.00514134892082677031,0.00272284614681999985,0.99998307617685999737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00026712895453329099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -43 ,0 ,0.04803532854671919982,0.08823678441837269625,0.00000000000000000000,-1.0000000000000000000,0.00435069540949058024,0.00274616983702330019,0.99998676491275695354,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022675203126709699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -44 ,0 ,0.03930624595939310322,0.08855235297909659630,0.00000000000000000000,-1.0000000000000000000,0.00355988030530052018,0.00276560889273957987,0.99998983927821305517,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019309576362047699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -45 ,0 ,0.03057439557084769971,0.08880484434225040246,0.00000000000000000000,-1.0000000000000000000,0.00276893296150269993,0.00278116187035531980,0.99999229904480102515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016616497089216899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -46 ,0 ,0.02184039210800610072,0.08899423416766880090,0.00000000000000000000,-1.0000000000000000000,0.00197788274770293020,0.00279282761465926999,0.99999414402972996995,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014596350331430598,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -47 ,0 ,0.01310485055277599980,0.08912050419662169431,0.00000000000000000000,-1.0000000000000000000,0.00118675904623563002,0.00280060525905479005,0.99999537409587502256,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013249425433059500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -48 ,0 ,0.00436838606923151042,0.08918364225489970598,0.00000000000000000000,-1.0000000000000000000,0.00039559124852945400,0.00280449422572104020,0.99999598915180798464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012575914854551199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -49 ,0 ,-0.0043683860692315104,0.08918364225489970598,0.00000000000000000000,-1.0000000000000000000,-0.0003955912485294540,0.00280449422572104020,0.99999598915180798464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012575914854551199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -50 ,0 ,-0.0131048505527759998,0.08912050419662169431,0.00000000000000000000,-1.0000000000000000000,-0.0011867590462356300,0.00280060525905479005,0.99999537409587502256,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013249425433059500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -51 ,0 ,-0.0218403921080063991,0.08899423416766880090,0.00000000000000000000,-1.0000000000000000000,-0.0019778827477029302,0.00279282761465926999,0.99999414402972996995,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014596350331430598,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -52 ,0 ,-0.0305743955708476997,0.08880484434225040246,0.00000000000000000000,-1.0000000000000000000,-0.0027689329615026999,0.00278116187035531980,0.99999229904480102515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016616497089216899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -53 ,0 ,-0.0393062459593931032,0.08855235297909659630,0.00000000000000000000,-1.0000000000000000000,-0.0035598803053005201,0.00276560889273957987,0.99998983927821305517,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019309576362047699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -54 ,0 ,-0.0480353285467191998,0.08823678441837269625,0.00000000000000000000,-1.0000000000000000000,-0.0043506954094905802,0.00274616983702330019,0.99998676491275695354,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022675203126709699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -55 ,0 ,-0.0567610289336109019,0.08785816907667640118,0.00000000000000000000,-1.0000000000000000000,-0.0051413489208267703,0.00272284614681999985,0.99998307617685999737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00026712895453329099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -56 ,0 ,0.05608277810603200241,0.06230768000668000100,0.00000000000000000000,-1.0000000000000000000,0.00511591397875990963,0.00191713399627351996,0.99998507589933705030,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020437763032532500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -57 ,0 ,0.04746135840728980120,0.06268259656080689412,0.00000000000000000000,-1.0000000000000000000,0.00432917036514540026,0.00194028406763829992,0.99998874672752602332,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016438583111266799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -58 ,0 ,0.03883658929592750247,0.06299508213022539382,0.00000000000000000000,-1.0000000000000000000,0.00354226674338175987,0.00195957840844174007,0.99999180616582095115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013105058735618499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -59 ,0 ,0.03020907921763570092,0.06324510666208339737,0.00000000000000000000,-1.0000000000000000000,0.00275523217898651986,0.00197501559281904005,0.99999425398801600195,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010437666799134599,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -60 ,0 ,0.02157943694109110133,0.06343264610887319743,0.00000000000000000000,-1.0000000000000000000,0.00196809575359724016,0.00198659447976106979,0.99999609001309497369,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008436788971266649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -61 ,0 ,0.01294827148625139930,0.06355768243035879450,0.00000000000000000000,-1.0000000000000000000,0.00118088656139362009,0.00199431421332757008,0.99999731410526704333,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007102711435891249,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -62 ,0 ,0.00431619205260791016,0.06362020359828360338,0.00000000000000000000,-1.0000000000000000000,0.00039363370551635199,0.00199817422280268008,0.99999792617398997052,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006435624800360530,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -63 ,0 ,-0.0043161920526079101,0.06362020359828360338,0.00000000000000000000,-1.0000000000000000000,-0.0003936337055163519,0.00199817422280268008,0.99999792617398997052,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006435624800360530,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -64 ,0 ,-0.0129482714862513993,0.06355768243035879450,0.00000000000000000000,-1.0000000000000000000,-0.0011808865613936200,0.00199431421332757008,0.99999731410526704333,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00007102711435891249,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -65 ,0 ,-0.0215794369410911013,0.06343264610887319743,0.00000000000000000000,-1.0000000000000000000,-0.0019680957535972401,0.00198659447976106979,0.99999609001309497369,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008436788971266649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -66 ,0 ,-0.0302090792176357009,0.06324510666208339737,0.00000000000000000000,-1.0000000000000000000,-0.0027552321789865198,0.00197501559281904005,0.99999425398801600195,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010437666799134599,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -67 ,0 ,-0.0388365892959275024,0.06299508213022539382,0.00000000000000000000,-1.0000000000000000000,-0.0035422667433817598,0.00195957840844174007,0.99999180616582095115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013105058735618499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -68 ,0 ,-0.0474613584072888991,0.06268259656080689412,0.00000000000000000000,-1.0000000000000000000,-0.0043291703651454002,0.00194028406763829992,0.99998874672752602332,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016438583111266799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -69 ,0 ,-0.0560827781060320024,0.06230768000668000100,0.00000000000000000000,-1.0000000000000000000,-0.0051159139787599096,0.00191713399627351996,0.99998507589933705030,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020437763032532500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -70 ,0 ,0.05540857614912030049,0.03682155749394829674,0.00000000000000000000,-1.0000000000000000000,0.00509066405472956978,0.00111535038451481991,0.99998642047429997514,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016229788388955100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -71 ,0 ,0.04689081503512949888,0.03719281119761189829,0.00000000000000000000,-1.0000000000000000000,0.00430780191300850039,0.00113832853421957989,0.99999007347614599083,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012268939815385200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -72 ,0 ,0.03836973689658360053,0.03750224373247300346,0.00000000000000000000,-1.0000000000000000000,0.00352478132860798007,0.00115747957490263992,0.99999311805513002582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008967366306933399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -73 ,0 ,0.02984594429821110089,0.03774982540539179726,0.00000000000000000000,-1.0000000000000000000,0.00274163108280743019,0.00117280209818593000,0.99999555398723904975,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006325540550733420,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -74 ,0 ,0.02132004012305640031,0.03793553245615519792,0.00000000000000000000,-1.0000000000000000000,0.00195837997277074991,0.00118429497705713009,0.99999738109321600898,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004343840635101509,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -75 ,0 ,0.01279262750181950000,0.03805934706062959888,0.00000000000000000000,-1.0000000000000000000,0.00117505680802066996,0.00119195736607457993,0.99999859923858702703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00003022549742581760,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -76 ,0 ,0.00426430974214375962,0.03812125733402060151,0.00000000000000000000,-1.0000000000000000000,0.00039169040690990598,0.00119578870152480996,0.99999920833369004835,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002361857104915540,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -77 ,0 ,-0.0042643097421437596,0.03812125733402060151,0.00000000000000000000,-1.0000000000000000000,-0.0003916904069099059,0.00119578870152480996,0.99999920833369004835,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002361857104915540,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -78 ,0 ,-0.0127926275018195000,0.03805934706062959888,0.00000000000000000000,-1.0000000000000000000,-0.0011750568080206699,0.00119195736607457993,0.99999859923858702703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00003022549742581760,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -79 ,0 ,-0.0213200401230560013,0.03793553245615519792,0.00000000000000000000,-1.0000000000000000000,-0.0019583799727707499,0.00118429497705713009,0.99999738109321600898,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004343840635101509,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -80 ,0 ,-0.0298459442982111008,0.03774982540539179726,0.00000000000000000000,-1.0000000000000000000,-0.0027416310828074301,0.00117280209818593000,0.99999555398723904975,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006325540550733420,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -81 ,0 ,-0.0383697368965836005,0.03750224373247300346,0.00000000000000000000,-1.0000000000000000000,-0.0035247813286079800,0.00115747957490263992,0.99999311805513002582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008967366306933399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -82 ,0 ,-0.0468908150351294988,0.03719281119761189829,0.00000000000000000000,-1.0000000000000000000,-0.0043078019130085003,0.00113832853421957989,0.99999007347614599083,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012268939815385200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -83 ,0 ,-0.0554085761491203004,0.03682155749394829674,0.00000000000000000000,-1.0000000000000000000,-0.0050906640547295697,0.00111535038451481991,0.99998642047429997514,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016229788388955100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -84 ,0 ,0.05473838290367979975,0.01139916823639089936,0.00000000000000000000,-1.0000000000000000000,0.00506559737710747959,0.00031746738068927398,0.99998711938588302761,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014068574989778399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -85 ,0 ,0.04632366443761169738,0.01176679458512690061,0.00000000000000000000,-1.0000000000000000000,0.00428658855345416013,0.00034027528543850699,0.99999075464291398152,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010145875728540000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -86 ,0 ,0.03790566094119050127,0.01207320367454980079,0.00000000000000000000,-1.0000000000000000000,0.00350742283363365001,0.00035928442372174001,0.99999378443056796683,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006876102156638809,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -87 ,0 ,0.02948496916966680120,0.01231836616638900053,0.00000000000000000000,-1.0000000000000000000,0.00272812871812746007,0.00037449340439515998,0.99999620852700599193,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004259721504240589,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -88 ,0 ,0.02106218619200459982,0.01250225858318190080,0.00000000000000000000,-1.0000000000000000000,0.00194873472306994000,0.00038590111423558699,0.99999802675470794710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002297108403581659,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -89 ,0 ,0.01263790932127070026,0.01262486331340540064,0.00000000000000000000,-1.0000000000000000000,0.00116926937677408991,0.00039350671814997200,0.99999923898050402382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000988543411040154,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -90 ,0 ,0.00421273604492366973,0.01268616861450629941,0.00000000000000000000,-1.0000000000000000000,0.00038976121625412102,0.00039730965932321900,0.99999984511560302546,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000334214439590140,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -91 ,0 ,-0.0042127360449236697,0.01268616861450629941,0.00000000000000000000,-1.0000000000000000000,-0.0003897612162541210,0.00039730965932321900,0.99999984511560302546,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000334214439590140,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -92 ,0 ,-0.0126379093212707002,0.01262486331340540064,0.00000000000000000000,-1.0000000000000000000,-0.0011692693767740899,0.00039350671814997200,0.99999923898050402382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000988543411040154,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -93 ,0 ,-0.0210621861920039996,0.01250225858318190080,0.00000000000000000000,-1.0000000000000000000,-0.0019487347230699400,0.00038590111423558699,0.99999802675470794710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002297108403581659,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -94 ,0 ,-0.0294849691696668012,0.01231836616638900053,0.00000000000000000000,-1.0000000000000000000,-0.0027281287181274600,0.00037449340439515998,0.99999620852700599193,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004259721504240589,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -95 ,0 ,-0.0379056609411905012,0.01207320367454980079,0.00000000000000000000,-1.0000000000000000000,-0.0035074228336336500,0.00035928442372174001,0.99999378443056796683,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006876102156638809,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -96 ,0 ,-0.0463236644376116973,0.01176679458512690061,0.00000000000000000000,-1.0000000000000000000,-0.0042865885534541601,0.00034027528543850699,0.99999075464291398152,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010145875728540000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -97 ,0 ,-0.0547383829036797997,0.01139916823639089936,0.00000000000000000000,-1.0000000000000000000,-0.0050655973771074795,0.00031746738068927398,0.99998711938588302761,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014068574989778399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -98 ,0 ,0.05407215871184160166,-0.0139601145436791997,0.00000000000000000000,-1.0000000000000000000,0.00504071219520539019,-0.0004765426897136439,0.99998718198166502979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013934023445472099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -99 ,0 ,0.04575987304650649956,-0.0135960804888701006,0.00000000000000000000,-1.0000000000000000000,0.00426552880458434986,-0.0004539033733991780,0.99999079957554903863,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010049292416169900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -100 ,0 ,0.03744433395694989757,-0.0132926656176671001,0.00000000000000000000,-1.0000000000000000000,0.00349019004562406984,-0.0004350347566208219,0.99999381463997405461,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006811166497300290,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -101 ,0 ,0.02912613245935569833,-0.0130498989195219003,0.00000000000000000000,-1.0000000000000000000,0.00271472414139874987,-0.0004199382135421930,0.99999622695524903459,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004220109940433759,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -102 ,0 ,0.02080585987913050050,-0.0128678035924510991,0.00000000000000000000,-1.0000000000000000000,0.00193915933040775994,-0.0004086148437937859,0.99999803634557205000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002276492728015000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -103 ,0 ,0.01248410778226900080,-0.0127463970386736003,0.00000000000000000000,-1.0000000000000000000,0.00116352386315192999,-0.0004010654722734760,0.99999924267906703523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000980593551958009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -104 ,0 ,0.00416146790666054988,-0.0126856908604254005,0.00000000000000000000,-1.0000000000000000000,0.00038784599870672598,-0.0003972906489966839,0.99999984586779899764,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000332597414853808,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -105 ,0 ,-0.0041614679066605498,-0.0126856908604254005,0.00000000000000000000,-1.0000000000000000000,-0.0003878459987067259,-0.0003972906489966839,0.99999984586779899764,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000332597414853808,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -106 ,0 ,-0.0124841077822690008,-0.0127463970386736003,0.00000000000000000000,-1.0000000000000000000,-0.0011635238631519299,-0.0004010654722734760,0.99999924267906703523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000980593551958009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -107 ,0 ,-0.0208058598791302992,-0.0128678035924510991,0.00000000000000000000,-1.0000000000000000000,-0.0019391593304077599,-0.0004086148437937859,0.99999803634557205000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002276492728015000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -108 ,0 ,-0.0291261324593556983,-0.0130498989195219003,0.00000000000000000000,-1.0000000000000000000,-0.0027147241413987498,-0.0004199382135421930,0.99999622695524903459,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004220109940433759,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -109 ,0 ,-0.0374443339569498975,-0.0132926656176671001,0.00000000000000000000,-1.0000000000000000000,-0.0034901900456240698,-0.0004350347566208219,0.99999381463997405461,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006811166497300290,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -110 ,0 ,-0.0457598730465064995,-0.0135960804888701006,0.00000000000000000000,-1.0000000000000000000,-0.0042655288045843498,-0.0004539033733991780,0.99999079957554903863,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010049292416169900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -111 ,0 ,-0.0540721587118416016,-0.0139601145436791997,0.00000000000000000000,-1.0000000000000000000,-0.0050407121952053901,-0.0004765426897136439,0.99998718198166502979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00013934023445472099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -112 ,0 ,0.05340986440948029823,-0.0392569111849105992,0.00000000000000000000,-1.0000000000000000000,0.00501600677898164041,-0.0012667072477002799,0.99998661747482497919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015806328838152699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -113 ,0 ,0.04519940771158029862,-0.0388964347914408994,0.00000000000000000000,-1.0000000000000000000,0.00424462120198039038,-0.0012442348831936400,0.99999021748735494874,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011959383664361699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -114 ,0 ,0.03698572881318450134,-0.0385959852685859999,0.00000000000000000000,-1.0000000000000000000,0.00347308176605201981,-0.0012255054236134398,0.99999321789675299498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008752754672514130,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -115 ,0 ,0.02876941306082030080,-0.0383555912622677019,0.00000000000000000000,-1.0000000000000000000,0.00270141642020536995,-0.0012105202263867399,0.99999561848545404085,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006186900452576080,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -116 ,0 ,0.02055104610580539906,-0.0381752756949068003,0.00000000000000000000,-1.0000000000000000000,0.00192965312865060007,-0.0011992803777509700,0.99999741907935901785,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004262188474513100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -117 ,0 ,0.01233121383660499940,-0.0380550557623174010,0.00000000000000000000,-1.0000000000000000000,0.00115781986742513002,-0.0011917866925555999,0.99999861954786395390,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002978894031002710,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -118 ,0 ,0.00411050231111109980,-0.0379949429295846977,0.00000000000000000000,-1.0000000000000000000,0.00038594462101654698,-0.0011880397141174100,0.99999921980388895015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002337200783131269,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -119 ,0 ,-0.0041105023111110998,-0.0379949429295846977,0.00000000000000000000,-1.0000000000000000000,-0.0003859446210165469,-0.0011880397141174100,0.99999921980388895015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002337200783131269,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -120 ,0 ,-0.0123312138366049994,-0.0380550557623174010,0.00000000000000000000,-1.0000000000000000000,-0.0011578198674251300,-0.0011917866925555999,0.99999861954786395390,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002978894031002710,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -121 ,0 ,-0.0205510461058053990,-0.0381752756949068003,0.00000000000000000000,-1.0000000000000000000,-0.0019296531286506000,-0.0011992803777509700,0.99999741907935901785,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004262188474513100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -122 ,0 ,-0.0287694130608203008,-0.0383555912622677019,0.00000000000000000000,-1.0000000000000000000,-0.0027014164202053699,-0.0012105202263867399,0.99999561848545404085,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006186900452576080,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -123 ,0 ,-0.0369857288131845013,-0.0385959852685859999,0.00000000000000000000,-1.0000000000000000000,-0.0034730817660520198,-0.0012255054236134398,0.99999321789675299498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008752754672514130,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -124 ,0 ,-0.0451994077115793965,-0.0388964347914408994,0.00000000000000000000,-1.0000000000000000000,-0.0042446212019803903,-0.0012442348831936400,0.99999021748735494874,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011959383664361699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -125 ,0 ,-0.0534098644094802982,-0.0392569111849105992,0.00000000000000000000,-1.0000000000000000000,-0.0050160067789816404,-0.0012667072477002799,0.99998661747482497919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015806328838152699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -126 ,0 ,0.05275146131884420053,-0.0644918356697016942,0.00000000000000000000,-1.0000000000000000000,0.00499147941875277036,-0.0020530534635688798,0.99998543494627400995,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019665973047722199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -127 ,0 ,0.04464223569432770183,-0.0641348827270149940,0.00000000000000000000,-1.0000000000000000000,0.00422386429845865961,-0.0020307464338557000,0.99998901745934698492,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015856632865052201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -128 ,0 ,0.03652981871622709708,-0.0638373700348390943,0.00000000000000000000,-1.0000000000000000000,0.00345609681049781000,-0.0020121547835161798,0.99999200328200799070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012681348948717600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -129 ,0 ,0.02841479012979379950,-0.0635993258999229954,0.00000000000000000000,-1.0000000000000000000,0.00268820463310769997,-0.0019972798534846300,0.99999439219879504570,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010140576023332000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -130 ,0 ,0.02029772998072480044,-0.0634207729742124054,0.00000000000000000000,-1.0000000000000000000,0.00192021545950709997,-0.0019861227167996000,0.99999618403729095827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008234678170992990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -131 ,0 ,0.01217921854847790058,-0.0633017282484576032,0.00000000000000000000,-1.0000000000000000000,0.00115215699457077002,-0.0019786841784075700,0.99999737866815596731,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006963927683045770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -132 ,0 ,0.00405983627950735025,-0.0632422030530079976,0.00000000000000000000,-1.0000000000000000000,0.00038405695150127200,-0.0019749647750210699,0.99999797600514994666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006328507049602190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -133 ,0 ,-0.0040598362795073502,-0.0632422030530079976,0.00000000000000000000,-1.0000000000000000000,-0.0003840569515012720,-0.0019749647750210699,0.99999797600514994666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006328507049602190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -134 ,0 ,-0.0121792185484779005,-0.0633017282484576032,0.00000000000000000000,-1.0000000000000000000,-0.0011521569945707700,-0.0019786841784075700,0.99999737866815596731,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006963927683045770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -135 ,0 ,-0.0202977299807248004,-0.0634207729742124054,0.00000000000000000000,-1.0000000000000000000,-0.0019202154595070999,-0.0019861227167996000,0.99999618403729095827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008234678170992990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -136 ,0 ,-0.0284147901297937995,-0.0635993258999229954,0.00000000000000000000,-1.0000000000000000000,-0.0026882046331076999,-0.0019972798534846300,0.99999439219879504570,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00010140576023332000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -137 ,0 ,-0.0365298187162270970,-0.0638373700348390943,0.00000000000000000000,-1.0000000000000000000,-0.0034560968104978100,-0.0020121547835161798,0.99999200328200799070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012681348948717600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -138 ,0 ,-0.0446422356943277018,-0.0641348827270149940,0.00000000000000000000,-1.0000000000000000000,-0.0042238642984586596,-0.0020307464338557000,0.99998901745934698492,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015856632865052201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -139 ,0 ,-0.0527514613188442005,-0.0644918356697016942,0.00000000000000000000,-1.0000000000000000000,-0.0049914794187527703,-0.0020530534635688798,0.99998543494627400995,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019665973047722199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -140 ,0 ,0.05209691124125100103,-0.0896654957077766961,0.00000000000000000000,-1.0000000000000000000,0.00496712842490950982,-0.0028356082596787701,0.99998364334673395248,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025493723296676800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -141 ,0 ,0.04408832466180889753,-0.0893120324208287047,0.00000000000000000000,-1.0000000000000000000,0.00420325666383021025,-0.0028134649670757401,0.99998720844233701665,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021721806115237998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -142 ,0 ,0.03607657720435990256,-0.0890174283879994060,0.00000000000000000000,-1.0000000000000000000,0.00343923400845241996,-0.0027950097941378797,0.99999017974662496310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018577715968604000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -143 ,0 ,0.02806224308028189978,-0.0887817115819067026,0.00000000000000000000,-1.0000000000000000000,0.00267508786948925016,-0.0027802440655447799,0.99999255704621503593,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016061903386344099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -144 ,0 ,0.02004589679711400035,-0.0886049043865110991,0.00000000000000000000,-1.0000000000000000000,0.00191084567241874003,-0.0027691688413243901,0.99999434017035604416,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014174728528360000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -145 ,0 ,0.01202811309282210069,-0.0884870235928180981,0.00000000000000000000,-1.0000000000000000000,0.00114653485420645995,-0.0027617849166657300,0.99999552899095700553,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012916461605527699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -146 ,0 ,0.00400946686999287000,-0.0884280803967793932,0.00000000000000000000,-1.0000000000000000000,0.00038218286002554698,-0.0027580928217732498,0.99999612342261101627,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012287283357181899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -147 ,0 ,-0.0040094668699928700,-0.0884280803967793932,0.00000000000000000000,-1.0000000000000000000,-0.0003821828600255469,-0.0027580928217732498,0.99999612342261101627,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012287283357181899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -148 ,0 ,-0.0120281130928221006,-0.0884870235928180981,0.00000000000000000000,-1.0000000000000000000,-0.0011465348542064599,-0.0027617849166657300,0.99999552899095700553,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012916461605527699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -149 ,0 ,-0.0200458967971137991,-0.0886049043865110991,0.00000000000000000000,-1.0000000000000000000,-0.0019108456724187400,-0.0027691688413243901,0.99999434017035604416,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014174728528360000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -150 ,0 ,-0.0280622430802818997,-0.0887817115819067026,0.00000000000000000000,-1.0000000000000000000,-0.0026750878694892501,-0.0027802440655447799,0.99999255704621503593,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00016061903386344099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -151 ,0 ,-0.0360765772043599025,-0.0890174283879994060,0.00000000000000000000,-1.0000000000000000000,-0.0034392340084524199,-0.0027950097941378797,0.99999017974662496310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018577715968604000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -152 ,0 ,-0.0440883246618097995,-0.0893120324208287047,0.00000000000000000000,-1.0000000000000000000,-0.0042032566638302102,-0.0028134649670757401,0.99998720844233701665,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021721806115237998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -153 ,0 ,-0.0520969112412510010,-0.0896654957077766961,0.00000000000000000000,-1.0000000000000000000,-0.0049671284249095098,-0.0028356082596787701,0.99998364334673395248,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025493723296676800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -154 ,0 ,0.05144617644995010119,-0.1147784928153720018,0.00000000000000000000,-1.0000000000000000000,0.00494295212763757024,-0.0036143983131736701,0.99998125149879601991,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00033270624851411401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -155 ,0 ,0.04353764268058939873,-0.1144284857992100001,0.00000000000000000000,-1.0000000000000000000,0.00418279688466424021,-0.0035924171790578398,0.99998479925898597908,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029535949317960297,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -156 ,0 ,0.03562597814287030151,-0.1141367625958549930,0.00000000000000000000,-1.0000000000000000000,0.00342249220312393007,-0.0035740971675722898,0.99998775611332202384,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00026422901805744897,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -157 ,0 ,0.02771175158070220134,-0.1139033508489979973,0.00000000000000000000,-1.0000000000000000000,0.00266206522940607001,-0.0035594395873756999,0.99999012185048097300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00023931928024012401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -158 ,0 ,0.01979553202995610119,-0.1137282726785339981,0.00000000000000000000,-1.0000000000000000000,0.00190154312445212992,-0.0035484454856756198,0.99999189630135598694,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022063385472392800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -159 ,0 ,0.01187788875364610002,-0.1136115446783629995,0.00000000000000000000,-1.0000000000000000000,0.00114095306052567008,-0.0035411156480424400,0.99999307933909298284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020817541576434499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -160 ,0 ,0.00395939117707439034,-0.1135531779117970041,0.00000000000000000000,-1.0000000000000000000,0.00038032221797944601,-0.0035374505982663198,0.99999367087910895346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020194575063214899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -161 ,0 ,-0.0039593911770743903,-0.1135531779117970041,0.00000000000000000000,-1.0000000000000000000,-0.0003803222179794460,-0.0035374505982663198,0.99999367087910895346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020194575063214899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -162 ,0 ,-0.0118778887536461000,-0.1136115446783629995,0.00000000000000000000,-1.0000000000000000000,-0.0011409530605256700,-0.0035411156480424400,0.99999307933909298284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00020817541576434499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -163 ,0 ,-0.0197955320299562989,-0.1137282726785339981,0.00000000000000000000,-1.0000000000000000000,-0.0019015431244521299,-0.0035484454856756198,0.99999189630135598694,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022063385472392800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -164 ,0 ,-0.0277117515807022013,-0.1139033508489979973,0.00000000000000000000,-1.0000000000000000000,-0.0026620652294060700,-0.0035594395873756999,0.99999012185048097300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00023931928024012401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -165 ,0 ,-0.0356259781428703015,-0.1141367625958549930,0.00000000000000000000,-1.0000000000000000000,-0.0034224922031239300,-0.0035740971675722898,0.99998775611332202384,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00026422901805744897,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -166 ,0 ,-0.0435376426805893987,-0.1144284857992100001,0.00000000000000000000,-1.0000000000000000000,-0.0041827968846642402,-0.0035924171790578398,0.99998479925898597908,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029535949317960297,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -167 ,0 ,-0.0514461764499501011,-0.1147784928153720018,0.00000000000000000000,-1.0000000000000000000,-0.0049429521276375702,-0.0036143983131736701,0.99998125149879601991,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00033270624851411401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -168 ,0 ,0.05079921968307579693,-0.1398314223968719904,0.00000000000000000000,-1.0000000000000000000,0.00491894887664269010,-0.0043894500586811897,0.99997826809892798038,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00042977998032256399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -169 ,0 ,0.04299015821079699845,-0.1394848386695800024,0.00000000000000000000,-1.0000000000000000000,0.00416248356405538033,-0.0043676295232177898,0.99998179860581803968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039280382725337398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -170 ,0 ,0.03517799571916849915,-0.1391959688026430108,0.00000000000000000000,-1.0000000000000000000,0.00340587025124703020,-0.0043494433728993300,0.99998474107867196813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036198226143824302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -171 ,0 ,0.02736329555009220024,-0.1389648401147239864,0.00000000000000000000,-1.0000000000000000000,0.00264913582343840985,-0.0043348929005951903,0.99998709530819995805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00033731970688677398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -172 ,0 ,0.01954662133329329934,-0.1387914744659660137,0.00000000000000000000,-1.0000000000000000000,0.00189230718019316006,-0.0043239791408765703,0.99998886112692597638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031881969312053099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -173 ,0 ,0.01172853692241200042,-0.1386758882548279891,0.00000000000000000000,-1.0000000000000000000,0.00113541123223419001,-0.0043167028698313202,0.99999003840921696362,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030648487881990100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -174 ,0 ,0.00390960633107712007,-0.1386180924157709992,0.00000000000000000000,-1.0000000000000000000,0.00037847489825727602,-0.0043130646049303602,0.99999062707130703664,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030031702908672698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -175 ,0 ,-0.0039096063310771200,-0.1386180924157709992,0.00000000000000000000,-1.0000000000000000000,-0.0003784748982572760,-0.0043130646049303602,0.99999062707130703664,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030031702908672698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -176 ,0 ,-0.0117285369224120004,-0.1386758882548279891,0.00000000000000000000,-1.0000000000000000000,-0.0011354112322341900,-0.0043167028698313202,0.99999003840921696362,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030648487881990100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -177 ,0 ,-0.0195466213332931015,-0.1387914744659660137,0.00000000000000000000,-1.0000000000000000000,-0.0018923071801931600,-0.0043239791408765703,0.99998886112692597638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00031881969312053099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -178 ,0 ,-0.0273632955500922002,-0.1389648401147239864,0.00000000000000000000,-1.0000000000000000000,-0.0026491358234384098,-0.0043348929005951903,0.99998709530819995805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00033731970688677398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -179 ,0 ,-0.0351779957191684991,-0.1391959688026430108,0.00000000000000000000,-1.0000000000000000000,-0.0034058702512470302,-0.0043494433728993300,0.99998474107867196813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036198226143824302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -180 ,0 ,-0.0429901582107969984,-0.1394848386695800024,0.00000000000000000000,-1.0000000000000000000,-0.0041624835640553803,-0.0043676295232177898,0.99998179860581803968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00039280382725337398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -181 ,0 ,-0.0507992196830757969,-0.1398314223968719904,0.00000000000000000000,-1.0000000000000000000,-0.0049189488766426901,-0.0043894500586811897,0.99997826809892798038,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00042977998032256399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -182 ,0 ,0.05015600413677920310,-0.1648248738205140007,0.00000000000000000000,-1.0000000000000000000,0.00489511704088030005,-0.0051607896909705601,0.99997470171946001293,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054597432949776703,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -183 ,0 ,0.04244584010027269843,-0.1644816807989659956,0.00000000000000000000,-1.0000000000000000000,0.00414231532139469962,-0.0051391282128494496,0.99997821505520401164,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00050936696334247201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -184 ,0 ,0.03473260443801209906,-0.1641956371067750108,0.00000000000000000000,-1.0000000000000000000,0.00338936702289541983,-0.0051210746388576896,0.99998114321507503010,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047885280014270398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -185 ,0 ,0.02701685515439499959,-0.1639667697428980053,0.00000000000000000000,-1.0000000000000000000,0.00263629877254489006,-0.0051066302463011496,0.99998348599179898155,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045443621502272397,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -186 ,0 ,0.01929915053756769971,-0.1637951003111509928,0.00000000000000000000,-1.0000000000000000000,0.00188313721164269989,-0.0050957960572950398,0.99998524321951198778,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043612071067400398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -187 ,0 ,0.01158004909643330082,-0.1636806450183919958,0.00000000000000000000,-1.0000000000000000000,0.00112990899248756999,-0.0050885728385844401,0.99998641477378902298,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00042390891280774699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -188 ,0 ,0.00386010949761495013,-0.1636234146703779979,0.00000000000000000000,-1.0000000000000000000,0.00037664077523672000,-0.0050849611014086599,0.99998700057167000387,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041780257811296900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -189 ,0 ,-0.0038601094976149501,-0.1636234146703779979,0.00000000000000000000,-1.0000000000000000000,-0.0003766407752367200,-0.0050849611014086599,0.99998700057167000387,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00041780257811296900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -190 ,0 ,-0.0115800490964333008,-0.1636806450183919958,0.00000000000000000000,-1.0000000000000000000,-0.0011299089924875699,-0.0050885728385844401,0.99998641477378902298,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00042390891280774699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -191 ,0 ,-0.0192991505375679009,-0.1637951003111509928,0.00000000000000000000,-1.0000000000000000000,-0.0018831372116426998,-0.0050957960572950398,0.99998524321951198778,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043612071067400398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -192 ,0 ,-0.0270168551543949995,-0.1639667697428980053,0.00000000000000000000,-1.0000000000000000000,-0.0026362987725448900,-0.0051066302463011496,0.99998348599179898155,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045443621502272397,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -193 ,0 ,-0.0347326044380120990,-0.1641956371067750108,0.00000000000000000000,-1.0000000000000000000,-0.0033893670228954198,-0.0051210746388576896,0.99998114321507503010,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047885280014270398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -194 ,0 ,-0.0424458401002726984,-0.1644816807989659956,0.00000000000000000000,-1.0000000000000000000,-0.0041423153213946996,-0.0051391282128494496,0.99997821505520401164,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00050936696334247201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -195 ,0 ,-0.0501560041367792031,-0.1648248738205140007,0.00000000000000000000,-1.0000000000000000000,-0.0048951170408803000,-0.0051607896909705601,0.99997470171946001293,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054597432949776703,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -196 ,0 ,0.05882048391403579823,0.16490226832990301231,0.00000000000000000000,-1.0000000000000000000,0.00521878189192140004,0.00516383704542310983,0.99997304918809404306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00058149790447714600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -197 ,0 ,0.04977814599792829836,0.16529220016920700975,0.00000000000000000000,-1.0000000000000000000,0.00441622536327758961,0.00518769198446844981,0.99997679213340495696,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00053995472080714502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -198 ,0 ,0.04073232505912290080,0.16561720121049100518,0.00000000000000000000,-1.0000000000000000000,0.00361350236940675018,0.00520757384813070028,0.99997991168585198540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00050532631667010697,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -199 ,0 ,0.03168365380360380068,0.16587723991044600602,0.00000000000000000000,-1.0000000000000000000,0.00281064314820035979,0.00522348113795407034,0.99998240761020196210,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047761764074039097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/Ellipsoid_DGIA.rayx.csv b/Intern/RAY-Core/tests/output/Ellipsoid_DGIA.rayx.csv deleted file mode 100644 index 91cb7d2a9..000000000 --- a/Intern/RAY-Core/tests/output/Ellipsoid_DGIA.rayx.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,0.05882048391403898318,0.16490226832961626945,0.00000000000000000000,1.00000000000000000000,0.00521878189192140958,0.00516383704542349407,0.99997304918809326590,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005814979012939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,0.04977814599792802774,0.16529220016889181743,0.00000000000000000000,1.00000000000000000000,0.00441622536327760176,0.00518769198446898671,0.99997679213340484594,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005399547171691,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,0.04073232505913049195,0.16561720121073586486,0.00000000000000000000,1.00000000000000000000,0.00361350236940675799,0.00520757384813131177,0.99997991168585087518,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005053263121226,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,0.03168365380360934485,0.16587723991093875075,0.00000000000000000000,1.00000000000000000000,0.00281064314820036282,0.00522348113795453872,0.99998240761020129596,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004776176374434,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,0.02263276527980014052,0.16607229102780121654,0.00000000000000000000,1.00000000000000000000,0.00200767795465373174,0.00523541265483441070,0.99998427971821823856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004568326621665,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,0.01358029280256172616,0.16620233562723416009,0.00000000000000000000,1.00000000000000000000,0.00120463705706987350,0.00524336749924557248,0.99998552786869288055,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004429743639775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,0.00452686987710899067,0.16626736108389750246,0.00000000000000000000,1.00000000000000000000,0.00040155073325977280,0.00524734507140973017,0.99998615196747098199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004360447146609,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,-0.0045268698771089906,0.16626736108389750246,0.00000000000000000000,1.00000000000000000000,-0.0004015507332597728,0.00524734507140973017,0.99998615196747098199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004360447146609,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-0.0135802928025617261,0.16620233562723416009,0.00000000000000000000,1.00000000000000000000,-0.0012046370570698735,0.00524336749924557248,0.99998552786869288055,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004429743639775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,-0.0226327652798001162,0.16607229102780121654,0.00000000000000000000,1.00000000000000000000,-0.0020076779546537321,0.00523541265483441070,0.99998427971821823856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004568326621665,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,-0.0316836538036093448,0.16587723991093875075,0.00000000000000000000,1.00000000000000000000,-0.0028106431482003628,0.00522348113795453872,0.99998240761020129596,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004776176374434,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,-0.0407323250591304919,0.16561720121073586486,0.00000000000000000000,1.00000000000000000000,-0.0036135023694067579,0.00520757384813131177,0.99997991168585087518,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005053263121226,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,-0.0497781459979279791,0.16529220016889181743,0.00000000000000000000,1.00000000000000000000,-0.0044162253632776026,0.00518769198446898671,0.99997679213340484594,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005399547171691,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-0.0588204839140389831,0.16490226832961626945,0.00000000000000000000,1.00000000000000000000,-0.0052187818919214095,0.00516383704542349407,0.99997304918809326590,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005814979012939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,0.05812984039026503763,0.13915481323486020293,0.00000000000000000000,1.00000000000000000000,0.00519278105207585626,0.00434616908666901613,0.99997707265677604482,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004554774386633,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,0.04919368725889873561,0.13954093576007262078,0.00000000000000000000,1.00000000000000000000,0.00439422136346555476,0.00436984518948249633,0.99998079745144519137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004143248170294,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,0.04025408512823023393,0.13986276167537128878,0.00000000000000000000,1.00000000000000000000,0.00359549685375215415,0.00438957798892825653,0.99998390187415187035,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003800219692493,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,0.03131166052646428693,0.14012025981678605246,0.00000000000000000000,1.00000000000000000000,0.00279663746231617865,0.00440536600510172630,0.99998638569195774650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003525737993186,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,0.02236704031930024025,0.14031340524840593686,0.00000000000000000000,1.00000000000000000000,0.00199767314538970217,0.00441720805374724075,0.99998824871846059281,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003319842344353,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,0.01342085163497640752,0.14044217926327298706,0.00000000000000000000,1.00000000000000000000,0.00119863387231611143,0.00442510324647843629,0.99998949081382715320,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003182562213623,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -20 ,0 ,0.00447372178931030022,0.14050656938906594395,0.00000000000000000000,1.00000000000000000000,0.00039954962180648842,0.00442905099094551262,0.99999011188482200829,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003113917209702,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,0 ,-0.0044737217893103002,0.14050656938906594395,0.00000000000000000000,1.00000000000000000000,-0.0003995496218064884,0.00442905099094551262,0.99999011188482200829,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003113917209702,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,0 ,-0.0134208516349764075,0.14044217926327298706,0.00000000000000000000,1.00000000000000000000,-0.0011986338723161114,0.00442510324647843629,0.99998949081382715320,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003182562213623,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -23 ,0 ,-0.0223670403193004206,0.14031340524840593686,0.00000000000000000000,1.00000000000000000000,-0.0019976731453897030,0.00441720805374724075,0.99998824871846059281,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003319842344353,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -24 ,0 ,-0.0313116605264642869,0.14012025981678605246,0.00000000000000000000,1.00000000000000000000,-0.0027966374623161786,0.00440536600510172630,0.99998638569195774650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003525737993186,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,0 ,-0.0402540851282302339,0.13986276167537128878,0.00000000000000000000,1.00000000000000000000,-0.0035954968537521541,0.00438957798892825653,0.99998390187415187035,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003800219692493,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,0 ,-0.0491936872588986939,0.13954093576007262078,0.00000000000000000000,1.00000000000000000000,-0.0043942213634655556,0.00436984518948249633,0.99998079745144519137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004143248170294,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -27 ,0 ,-0.0581298403902650376,0.13915481323486020293,0.00000000000000000000,1.00000000000000000000,-0.0051927810520758562,0.00434616908666901613,0.99997707265677604482,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004554774386633,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -28 ,0 ,0.05744336930002531815,0.11347366461536335935,0.00000000000000000000,1.00000000000000000000,0.00516697067379635888,0.00353251502622164113,0.99998041168397155953,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003507588608044,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -29 ,0 ,0.04861275987692290079,0.11385601512989423911,0.00000000000000000000,1.00000000000000000000,0.00437237856364982527,0.00355601405321594220,0.99998411840876211265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003099949954048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,0 ,0.03977873505984289709,0.11417469701292071171,0.00000000000000000000,1.00000000000000000000,0.00357762325642719180,0.00357559925595570329,0.99998720776907723539,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002760161933110,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,0 ,0.03094191527515297718,0.11442967947834130348,0.00000000000000000000,1.00000000000000000000,0.00278273439664485132,0.00359126917281579532,0.99998967953424688914,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002488273166818,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -32 ,0 ,0.02210292128174509707,0.11462093788932660454,0.00000000000000000000,1.00000000000000000000,0.00198774164542274249,0.00360302263417132395,0.99999153351968350644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002284322563355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -33 ,0 ,0.01326237409724948315,0.11474845376552757214,0.00000000000000000000,1.00000000000000000000,0.00119267467679908499,0.00361085876260994545,0.99999276958691629690,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002148339226550,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -34 ,0 ,0.00442089492414788742,0.11481221478424544213,0.00000000000000000000,1.00000000000000000000,0.00039756317404191122,0.00361477697310057721,0.99999338764361689335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002080342728731,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -35 ,0 ,-0.0044208949241478874,0.11481221478424544213,0.00000000000000000000,1.00000000000000000000,-0.0003975631740419112,0.00361477697310057721,0.99999338764361689335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002080342728731,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,0 ,-0.0132623740972494831,0.11474845376552757214,0.00000000000000000000,1.00000000000000000000,-0.0011926746767990849,0.00361085876260994545,0.99999276958691629690,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002148339226550,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,0 ,-0.0221029212817450762,0.11462093788932660454,0.00000000000000000000,1.00000000000000000000,-0.0019877416454227429,0.00360302263417132395,0.99999153351968350644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002284322563355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -38 ,0 ,-0.0309419152751529771,0.11442967947834130348,0.00000000000000000000,1.00000000000000000000,-0.0027827343966448513,0.00359126917281579532,0.99998967953424688914,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002488273166818,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -39 ,0 ,-0.0397787350598428970,0.11417469701292071171,0.00000000000000000000,1.00000000000000000000,-0.0035776232564271918,0.00357559925595570329,0.99998720776907723539,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002760161933110,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -40 ,0 ,-0.0486127598769228591,0.11385601512989423911,0.00000000000000000000,1.00000000000000000000,-0.0043723785636498261,0.00355601405321594220,0.99998411840876211265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003099949954048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,0 ,-0.0574433693000253181,0.11347366461536335935,0.00000000000000000000,1.00000000000000000000,-0.0051669706737963588,0.00353251502622164113,0.99998041168397155953,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003507588608044,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -42 ,0 ,0.05676102893360509410,0.08785816907623306137,0.00000000000000000000,1.00000000000000000000,0.00514134892082678332,0.00272284614682045088,0.99998307617685944226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002671289530553,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -43 ,0 ,0.04803532854671775653,0.08823678441791181492,0.00000000000000000000,1.00000000000000000000,0.00435069540949057850,0.00274616983702354868,0.99998676491275606537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002267520285386,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,0 ,0.03930624595939681553,0.08855235297894234469,0.00000000000000000000,1.00000000000000000000,0.00355988030530052235,0.00276560889273965706,0.99998983927821194495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001930957605509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,0 ,0.03057439557084579151,0.08880484434205934696,0.00000000000000000000,1.00000000000000000000,0.00276893296150271077,0.00278116187035595081,0.99999229904480024799,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001661649694142,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,0 ,0.02184039210800818586,0.08899423416737789471,0.00000000000000000000,1.00000000000000000000,0.00197788274770293800,0.00279282761465989536,0.99999414402972919280,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001459635022911,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -47 ,0 ,0.01310485055277658787,0.08912050419683796576,0.00000000000000000000,1.00000000000000000000,0.00118675904623563306,0.00280060525905498564,0.99999537409587480052,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001324942513747,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -48 ,0 ,0.00436838606923202997,0.08918364225508548792,0.00000000000000000000,1.00000000000000000000,0.00039559124852945459,0.00280449422572117508,0.99999598915180720748,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001257591429748,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -49 ,0 ,-0.0043683860692320299,0.08918364225508548792,0.00000000000000000000,1.00000000000000000000,-0.0003955912485294545,0.00280449422572117508,0.99999598915180720748,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001257591429748,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -50 ,0 ,-0.0131048505527765878,0.08912050419683796576,0.00000000000000000000,1.00000000000000000000,-0.0011867590462356330,0.00280060525905498564,0.99999537409587480052,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001324942513747,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -51 ,0 ,-0.0218403921080083732,0.08899423416737789471,0.00000000000000000000,1.00000000000000000000,-0.0019778827477029388,0.00279282761465989536,0.99999414402972919280,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001459635022911,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,0 ,-0.0305743955708457915,0.08880484434205934696,0.00000000000000000000,1.00000000000000000000,-0.0027689329615027107,0.00278116187035595081,0.99999229904480024799,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001661649694142,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -53 ,0 ,-0.0393062459593968155,0.08855235297894234469,0.00000000000000000000,1.00000000000000000000,-0.0035598803053005223,0.00276560889273965706,0.99998983927821194495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001930957605509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -54 ,0 ,-0.0480353285467177565,0.08823678441791181492,0.00000000000000000000,1.00000000000000000000,-0.0043506954094905785,0.00274616983702354868,0.99998676491275606537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002267520285386,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -55 ,0 ,-0.0567610289336050941,0.08785816907623306137,0.00000000000000000000,1.00000000000000000000,-0.0051413489208267833,0.00272284614682045088,0.99998307617685944226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002671289530553,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -56 ,0 ,0.05608277810603842783,0.06230768000674995199,0.00000000000000000000,1.00000000000000000000,0.00511591397875992524,0.00191713399627405447,0.99998507589933660621,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002043776257778,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -57 ,0 ,0.04746135840729651111,0.06268259656070808427,0.00000000000000000000,1.00000000000000000000,0.00432917036514541154,0.00194028406763871821,0.99998874672752491310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001643858286115,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -58 ,0 ,0.03883658929592925801,0.06299508212996182687,0.00000000000000000000,1.00000000000000000000,0.00354226674338176247,0.00195957840844198424,0.99999180616582039604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001310505849687,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -59 ,0 ,0.03020907921763837933,0.06324510666186024254,0.00000000000000000000,1.00000000000000000000,0.00275523217898652377,0.00197501559281943774,0.99999425398801544684,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001043766678776,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -60 ,0 ,0.02157943694109499405,0.06343264610906228229,0.00000000000000000000,1.00000000000000000000,0.00196809575359724450,0.00198659447976179447,0.99999609001309464062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000843678863020,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -61 ,0 ,0.01294827148625275585,0.06355768243046615306,0.00000000000000000000,1.00000000000000000000,0.00118088656139362312,0.00199431421332804193,0.99999731410526671027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000710271087882,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,0 ,0.00431619205260850170,0.06362020359817020798,0.00000000000000000000,1.00000000000000000000,0.00039363370551635248,0.00199817422280292988,0.99999792617399008154,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000643562434561,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -63 ,0 ,-0.0043161920526085017,0.06362020359817020798,0.00000000000000000000,1.00000000000000000000,-0.0003936337055163524,0.00199817422280292988,0.99999792617399008154,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000643562434561,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -64 ,0 ,-0.0129482714862527558,0.06355768243046615306,0.00000000000000000000,1.00000000000000000000,-0.0011808865613936231,0.00199431421332804193,0.99999731410526671027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000710271087882,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -65 ,0 ,-0.0215794369410947581,0.06343264610906228229,0.00000000000000000000,1.00000000000000000000,-0.0019680957535972449,0.00198659447976179447,0.99999609001309464062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000843678863020,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -66 ,0 ,-0.0302090792176383793,0.06324510666186024254,0.00000000000000000000,1.00000000000000000000,-0.0027552321789865237,0.00197501559281943774,0.99999425398801544684,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001043766678776,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,0 ,-0.0388365892959292580,0.06299508212996182687,0.00000000000000000000,1.00000000000000000000,-0.0035422667433817624,0.00195957840844198424,0.99999180616582039604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001310505849687,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -68 ,0 ,-0.0474613584072956576,0.06268259656070808427,0.00000000000000000000,1.00000000000000000000,-0.0043291703651454106,0.00194028406763871821,0.99998874672752491310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001643858286115,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -69 ,0 ,-0.0560827781060384278,0.06230768000674995199,0.00000000000000000000,1.00000000000000000000,-0.0051159139787599252,0.00191713399627405447,0.99998507589933660621,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002043776257778,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -70 ,0 ,0.05540857614911578327,0.03682155749334486971,0.00000000000000000000,1.00000000000000000000,0.00509066405472956371,0.00111535038451479129,0.99998642047429886492,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001622978797968,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -71 ,0 ,0.04689081503513142790,0.03719281119737458812,0.00000000000000000000,1.00000000000000000000,0.00430780191300850125,0.00113832853421978979,0.99999007347614499163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001226893928105,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -72 ,0 ,0.03836973689658702141,0.03750224373260120647,0.00000000000000000000,1.00000000000000000000,0.00352478132860798007,0.00115747957490288169,0.99999311805512880457,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000896736601134,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -73 ,0 ,0.02984594429821426503,0.03774982540512662743,0.00000000000000000000,1.00000000000000000000,0.00274163108280743150,0.00117280209818644456,0.99999555398723849464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000632554056210,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -74 ,0 ,0.02132004012305664317,0.03793553245600099488,0.00000000000000000000,1.00000000000000000000,0.00195837997277075771,0.00118429497705761430,0.99999738109321523182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000434384037362,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -75 ,0 ,0.01279262750181843662,0.03805934706005856954,0.00000000000000000000,1.00000000000000000000,0.00117505680802067300,0.00119195736607483710,0.99999859923858624988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000302254957205,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -76 ,0 ,0.00426430974214371451,0.03812125733384156417,0.00000000000000000000,1.00000000000000000000,0.00039169040690990636,0.00119578870152508209,0.99999920833368960426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000236185678659,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -77 ,0 ,-0.0042643097421437145,0.03812125733384156417,0.00000000000000000000,1.00000000000000000000,-0.0003916904069099063,0.00119578870152508209,0.99999920833368960426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000236185678659,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -78 ,0 ,-0.0127926275018184366,0.03805934706005856954,0.00000000000000000000,1.00000000000000000000,-0.0011750568080206730,0.00119195736607483710,0.99999859923858624988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000302254957205,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -79 ,0 ,-0.0213200401230561990,0.03793553245600099488,0.00000000000000000000,1.00000000000000000000,-0.0019583799727707577,0.00118429497705761430,0.99999738109321523182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000434384037362,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -80 ,0 ,-0.0298459442982142650,0.03774982540512662743,0.00000000000000000000,1.00000000000000000000,-0.0027416310828074315,0.00117280209818644456,0.99999555398723849464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000632554056210,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -81 ,0 ,-0.0383697368965870214,0.03750224373260120647,0.00000000000000000000,1.00000000000000000000,-0.0035247813286079800,0.00115747957490288169,0.99999311805512880457,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000896736601134,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -82 ,0 ,-0.0468908150351322675,0.03719281119737458812,0.00000000000000000000,1.00000000000000000000,-0.0043078019130085029,0.00113832853421978979,0.99999007347614499163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001226893928105,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -83 ,0 ,-0.0554085761491157832,0.03682155749334486971,0.00000000000000000000,1.00000000000000000000,-0.0050906640547295637,0.00111535038451479129,0.99998642047429886492,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001622978797968,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -84 ,0 ,0.05473838290368630149,0.01139916823600780823,0.00000000000000000000,1.00000000000000000000,0.00506559737710749087,0.00031746738068962943,0.99998711938588236147,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001406857481924,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -85 ,0 ,0.04632366443761534030,0.01176679458493122207,0.00000000000000000000,1.00000000000000000000,0.00428658855345416620,0.00034027528543878661,0.99999075464291331538,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001014587542158,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -86 ,0 ,0.03790566094119746792,0.01207320367477842000,0.00000000000000000000,1.00000000000000000000,0.00350742283363365521,0.00035928442372221266,0.99999378443056763376,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000687610190652,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -87 ,0 ,0.02948496916967356315,0.01231836616680285871,0.00000000000000000000,1.00000000000000000000,0.00272812871812745790,0.00037449340439499410,0.99999620852700565887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000425972102675,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -88 ,0 ,0.02106218619200928357,0.01250225858308170491,0.00000000000000000000,1.00000000000000000000,0.00194873472306994650,0.00038590111423589257,0.99999802675470739199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000229710803978,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -89 ,0 ,0.01263790932127330929,0.01262486331365111555,0.00000000000000000000,1.00000000000000000000,0.00116926937677409772,0.00039350671815056203,0.99999923898050391279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000098854343377,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -90 ,0 ,0.00421273604492387009,0.01268616861433568415,0.00000000000000000000,1.00000000000000000000,0.00038976121625412297,0.00039730965932423424,0.99999984511560224831,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000033421401894,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,0 ,-0.0042127360449238700,0.01268616861433568415,0.00000000000000000000,1.00000000000000000000,-0.0003897612162541229,0.00039730965932423424,0.99999984511560224831,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000033421401894,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -92 ,0 ,-0.0126379093212733092,0.01262486331365111555,0.00000000000000000000,1.00000000000000000000,-0.0011692693767740977,0.00039350671815056203,0.99999923898050391279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000098854343377,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -93 ,0 ,-0.0210621861920094848,0.01250225858308170491,0.00000000000000000000,1.00000000000000000000,-0.0019487347230699473,0.00038590111423589257,0.99999802675470739199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000229710803978,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -94 ,0 ,-0.0294849691696735631,0.01231836616680285871,0.00000000000000000000,1.00000000000000000000,-0.0027281287181274579,0.00037449340439499410,0.99999620852700565887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000425972102675,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -95 ,0 ,-0.0379056609411974679,0.01207320367477842000,0.00000000000000000000,1.00000000000000000000,-0.0035074228336336552,0.00035928442372221266,0.99999378443056763376,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000687610190652,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -96 ,0 ,-0.0463236644376153194,0.01176679458493122207,0.00000000000000000000,1.00000000000000000000,-0.0042865885534541670,0.00034027528543878661,0.99999075464291331538,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001014587542158,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -97 ,0 ,-0.0547383829036863014,0.01139916823600780823,0.00000000000000000000,1.00000000000000000000,-0.0050655973771074908,0.00031746738068962943,0.99998711938588236147,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001406857481924,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -98 ,0 ,0.05407215871184516131,-0.0139601145438658941,0.00000000000000000000,1.00000000000000000000,0.00504071219520539973,-0.0004765426897131836,0.99998718198166403059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001393402344547,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -99 ,0 ,0.04575987304650797060,-0.0135960804890955661,0.00000000000000000000,1.00000000000000000000,0.00426552880458435246,-0.0004539033733989023,0.99999079957554837250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001004929235932,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -100 ,0 ,0.03744433395695629523,-0.0132926656178805665,0.00000000000000000000,1.00000000000000000000,0.00349019004562407201,-0.0004350347566209113,0.99999381463997327745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000681116653140,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -101 ,0 ,0.02912613245935724223,-0.0130498989197803255,0.00000000000000000000,1.00000000000000000000,0.00271472414139874813,-0.0004199382135423059,0.99999622695524825743,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000422010980400,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -102 ,0 ,0.02080585987912864434,-0.0128678035929166573,0.00000000000000000000,1.00000000000000000000,0.00193915933040776319,-0.0004086148437934223,0.99999803634557216103,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000227649252337,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -103 ,0 ,0.01248410778227083961,-0.0127463970385609092,0.00000000000000000000,1.00000000000000000000,0.00116352386315193433,-0.0004010654722728185,0.99999924267906636909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000098059317679,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -104 ,0 ,0.00416146790666067217,-0.0126856908607684126,0.00000000000000000000,1.00000000000000000000,0.00038784599870672652,-0.0003972906489964242,0.99999984586779866457,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000033259711926,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -105 ,0 ,-0.0041614679066606721,-0.0126856908607684126,0.00000000000000000000,1.00000000000000000000,-0.0003878459987067265,-0.0003972906489964242,0.99999984586779866457,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000033259711926,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -106 ,0 ,-0.0124841077822708396,-0.0127463970385609092,0.00000000000000000000,1.00000000000000000000,-0.0011635238631519343,-0.0004010654722728185,0.99999924267906636909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000098059317679,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -107 ,0 ,-0.0208058598791286339,-0.0128678035929166573,0.00000000000000000000,1.00000000000000000000,-0.0019391593304077636,-0.0004086148437934223,0.99999803634557216103,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000227649252337,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -108 ,0 ,-0.0291261324593572422,-0.0130498989197803255,0.00000000000000000000,1.00000000000000000000,-0.0027147241413987481,-0.0004199382135423059,0.99999622695524825743,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000422010980400,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -109 ,0 ,-0.0374443339569562952,-0.0132926656178805665,0.00000000000000000000,1.00000000000000000000,-0.0034901900456240720,-0.0004350347566209113,0.99999381463997327745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000681116653140,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -110 ,0 ,-0.0457598730465079706,-0.0135960804890955661,0.00000000000000000000,1.00000000000000000000,-0.0042655288045843524,-0.0004539033733989023,0.99999079957554837250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001004929235932,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -111 ,0 ,-0.0540721587118451613,-0.0139601145438658941,0.00000000000000000000,1.00000000000000000000,-0.0050407121952053997,-0.0004765426897131836,0.99998718198166403059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001393402344547,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -112 ,0 ,0.05340986440948571056,-0.0392569111848151061,0.00000000000000000000,1.00000000000000000000,0.00501600677898165168,-0.0012667072476997705,0.99998661747482464612,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001580632851982,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -113 ,0 ,0.04519940771158414277,-0.0388964347916353897,0.00000000000000000000,1.00000000000000000000,0.00424462120198040165,-0.0012442348831930194,0.99999021748735461567,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001195938348246,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -114 ,0 ,0.03698572881319179411,-0.0385959852685670914,0.00000000000000000000,1.00000000000000000000,0.00347308176605202632,-0.0012255054236130667,0.99999321789675299498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000875275472935,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -115 ,0 ,0.02876941306082313534,-0.0383555912622780340,0.00000000000000000000,1.00000000000000000000,0.00270141642020537559,-0.0012105202263864704,0.99999561848545381881,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000618690028204,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -116 ,0 ,0.02055104610580694296,-0.0381752756956336425,0.00000000000000000000,1.00000000000000000000,0.00192965312865060376,-0.0011992803777506595,0.99999741907935857376,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000426218794018,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -117 ,0 ,0.01233121383660646698,-0.0380550557624260987,0.00000000000000000000,1.00000000000000000000,0.00115781986742512481,-0.0011917866925556812,0.99999861954786395390,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000297889364446,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -118 ,0 ,0.00411050231111183706,-0.0379949429296631419,0.00000000000000000000,1.00000000000000000000,0.00038594462101654796,-0.0011880397141171301,0.99999921980388895015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000233720056712,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -119 ,0 ,-0.0041105023111118370,-0.0379949429296631419,0.00000000000000000000,1.00000000000000000000,-0.0003859446210165479,-0.0011880397141171301,0.99999921980388895015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000233720056712,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -120 ,0 ,-0.0123312138366064669,-0.0380550557624260987,0.00000000000000000000,1.00000000000000000000,-0.0011578198674251248,-0.0011917866925556812,0.99999861954786395390,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000297889364446,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -121 ,0 ,-0.0205510461058067139,-0.0381752756956336425,0.00000000000000000000,1.00000000000000000000,-0.0019296531286506041,-0.0011992803777506595,0.99999741907935857376,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000426218794018,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -122 ,0 ,-0.0287694130608231353,-0.0383555912622780340,0.00000000000000000000,1.00000000000000000000,-0.0027014164202053755,-0.0012105202263864704,0.99999561848545381881,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000618690028204,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -123 ,0 ,-0.0369857288131917941,-0.0385959852685670914,0.00000000000000000000,1.00000000000000000000,-0.0034730817660520263,-0.0012255054236130667,0.99999321789675299498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000875275472935,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -124 ,0 ,-0.0451994077115832684,-0.0388964347916353897,0.00000000000000000000,1.00000000000000000000,-0.0042446212019804007,-0.0012442348831930194,0.99999021748735461567,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001195938348246,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -125 ,0 ,-0.0534098644094857105,-0.0392569111848151061,0.00000000000000000000,1.00000000000000000000,-0.0050160067789816516,-0.0012667072476997705,0.99998661747482464612,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001580632851982,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -126 ,0 ,0.05275146131884073108,-0.0644918356701894984,0.00000000000000000000,1.00000000000000000000,0.00499147941875277383,-0.0020530534635688408,0.99998543494627345484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001966597283171,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -127 ,0 ,0.04464223569433926896,-0.0641348827269945104,0.00000000000000000000,1.00000000000000000000,0.00422386429845867002,-0.0020307464338552073,0.99998901745934654083,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001585663285368,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -128 ,0 ,0.03652981871622868609,-0.0638373700350191725,0.00000000000000000000,1.00000000000000000000,0.00345609681049780913,-0.0020121547835158667,0.99999200328200799070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001268134874408,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -129 ,0 ,0.02841479012979600954,-0.0635993259005307454,0.00000000000000000000,1.00000000000000000000,0.00268820463310770431,-0.0019972798534845770,0.99999439219879482365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001014057579595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -130 ,0 ,0.02029772998072707640,-0.0634207729741501358,0.00000000000000000000,1.00000000000000000000,0.00192021545950710604,-0.0019861227167990999,0.99999618403729051419,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000823467780719,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -131 ,0 ,0.01217921854848033613,-0.0633017282484262810,0.00000000000000000000,1.00000000000000000000,0.00115215699457076829,-0.0019786841784071836,0.99999737866815507913,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000696392762620,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -132 ,0 ,0.00405983627950830868,-0.0632422030529157380,0.00000000000000000000,1.00000000000000000000,0.00038405695150127156,-0.0019749647750211350,0.99999797600514916950,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000632850697002,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -133 ,0 ,-0.0040598362795083086,-0.0632422030529157380,0.00000000000000000000,1.00000000000000000000,-0.0003840569515012715,-0.0019749647750211350,0.99999797600514916950,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000632850697002,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -134 ,0 ,-0.0121792185484803361,-0.0633017282484262810,0.00000000000000000000,1.00000000000000000000,-0.0011521569945707682,-0.0019786841784071836,0.99999737866815507913,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000696392762620,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -135 ,0 ,-0.0202977299807272880,-0.0634207729741501358,0.00000000000000000000,1.00000000000000000000,-0.0019202154595071069,-0.0019861227167990999,0.99999618403729051419,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000823467780719,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -136 ,0 ,-0.0284147901297960095,-0.0635993259005307454,0.00000000000000000000,1.00000000000000000000,-0.0026882046331077043,-0.0019972798534845770,0.99999439219879482365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001014057579595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -137 ,0 ,-0.0365298187162286860,-0.0638373700350191725,0.00000000000000000000,1.00000000000000000000,-0.0034560968104978091,-0.0020121547835158667,0.99999200328200799070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001268134874408,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -138 ,0 ,-0.0446422356943392620,-0.0641348827269945104,0.00000000000000000000,1.00000000000000000000,-0.0042238642984586708,-0.0020307464338552073,0.99998901745934654083,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001585663285368,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -139 ,0 ,-0.0527514613188407310,-0.0644918356701894984,0.00000000000000000000,1.00000000000000000000,-0.0049914794187527738,-0.0020530534635688408,0.99998543494627345484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001966597283171,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -140 ,0 ,0.05209691124125691297,-0.0896654957082337056,0.00000000000000000000,1.00000000000000000000,0.00496712842490950982,-0.0028356082596786517,0.99998364334673384146,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002549372311477,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -141 ,0 ,0.04408832466181168696,-0.0893120324209015215,0.00000000000000000000,1.00000000000000000000,0.00420325666383020851,-0.0028134649670758940,0.99998720844233623950,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002172180575144,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -142 ,0 ,0.03607657720436865250,-0.0890174283874452798,0.00000000000000000000,1.00000000000000000000,0.00343923400845241649,-0.0027950097941377410,0.99999017974662407493,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001857771603681,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -143 ,0 ,0.02806224308028339511,-0.0887817115818650137,0.00000000000000000000,1.00000000000000000000,0.00267508786948926144,-0.0027802440655442491,0.99999255704621436979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001606190289749,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -144 ,0 ,0.02004589679711427444,-0.0886049043871583869,0.00000000000000000000,1.00000000000000000000,0.00191084567241873743,-0.0027691688413242218,0.99999434017035526700,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001417472794855,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -145 ,0 ,0.01202811309282353358,-0.0884870235926896869,0.00000000000000000000,1.00000000000000000000,0.00114653485420645887,-0.0027617849166656051,0.99999552899095578428,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001291646149184,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -146 ,0 ,0.00400946686999355608,-0.0884280803968326978,0.00000000000000000000,1.00000000000000000000,0.00038218286002554671,-0.0027580928217731618,0.99999612342260968400,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001228728306159,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -147 ,0 ,-0.0040094668699935560,-0.0884280803968326978,0.00000000000000000000,1.00000000000000000000,-0.0003821828600255467,-0.0027580928217731618,0.99999612342260968400,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001228728306159,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -148 ,0 ,-0.0120281130928235335,-0.0884870235926896869,0.00000000000000000000,1.00000000000000000000,-0.0011465348542064588,-0.0027617849166656051,0.99999552899095578428,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001291646149184,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -149 ,0 ,-0.0200458967971140489,-0.0886049043871583869,0.00000000000000000000,1.00000000000000000000,-0.0019108456724187376,-0.0027691688413242218,0.99999434017035526700,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001417472794855,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -150 ,0 ,-0.0280622430802833951,-0.0887817115818650137,0.00000000000000000000,1.00000000000000000000,-0.0026750878694892614,-0.0027802440655442491,0.99999255704621436979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001606190289749,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -151 ,0 ,-0.0360765772043686525,-0.0890174283874452798,0.00000000000000000000,1.00000000000000000000,-0.0034392340084524164,-0.0027950097941377410,0.99999017974662407493,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001857771603681,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -152 ,0 ,-0.0440883246618116800,-0.0893120324209015215,0.00000000000000000000,1.00000000000000000000,-0.0042032566638302093,-0.0028134649670758940,0.99998720844233623950,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002172180575144,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -153 ,0 ,-0.0520969112412569129,-0.0896654957082337056,0.00000000000000000000,1.00000000000000000000,-0.0049671284249095098,-0.0028356082596786517,0.99998364334673384146,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002549372311477,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -154 ,0 ,0.05144617644995756050,-0.1147784928158046696,0.00000000000000000000,1.00000000000000000000,0.00494295212763757717,-0.0036143983131731618,0.99998125149879557582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003327062458993,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -155 ,0 ,0.04353764268059365921,-0.1144284857992403647,0.00000000000000000000,1.00000000000000000000,0.00418279688466424454,-0.0035924171790575648,0.99998479925898509090,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002953594903374,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -156 ,0 ,0.03562597814287216113,-0.1141367625958695924,0.00000000000000000000,1.00000000000000000000,0.00342249220312394264,-0.0035740971675718483,0.99998775611332169077,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002642290128278,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -157 ,0 ,0.02771175158070152480,-0.1139033508491536367,0.00000000000000000000,1.00000000000000000000,0.00266206522940607304,-0.0035594395873752029,0.99999012185048008483,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002393192771705,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -158 ,0 ,0.01979553202995823490,-0.1137282726785222020,0.00000000000000000000,1.00000000000000000000,0.00190154312445213382,-0.0035484454856754511,0.99999189630135543183,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002206338522228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -159 ,0 ,0.01187788875364920518,-0.1136115446782241245,0.00000000000000000000,1.00000000000000000000,0.00114095306052567138,-0.0035411156480422236,0.99999307933909231671,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002081754137179,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -160 ,0 ,0.00395939117707454994,-0.1135531779120055873,0.00000000000000000000,1.00000000000000000000,0.00038032221797944682,-0.0035374505982658710,0.99999367087910862039,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002019457460846,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -161 ,0 ,-0.0039593911770745499,-0.1135531779120055873,0.00000000000000000000,1.00000000000000000000,-0.0003803222179794468,-0.0035374505982658710,0.99999367087910862039,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002019457460846,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -162 ,0 ,-0.0118778887536492051,-0.1136115446782241245,0.00000000000000000000,1.00000000000000000000,-0.0011409530605256713,-0.0035411156480422236,0.99999307933909231671,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002081754137179,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -163 ,0 ,-0.0197955320299582349,-0.1137282726785222020,0.00000000000000000000,1.00000000000000000000,-0.0019015431244521344,-0.0035484454856754511,0.99999189630135543183,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002206338522228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -164 ,0 ,-0.0277117515807015248,-0.1139033508491536367,0.00000000000000000000,1.00000000000000000000,-0.0026620652294060730,-0.0035594395873752029,0.99999012185048008483,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002393192771705,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -165 ,0 ,-0.0356259781428721611,-0.1141367625958695924,0.00000000000000000000,1.00000000000000000000,-0.0034224922031239426,-0.0035740971675718483,0.99998775611332169077,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002642290128278,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -166 ,0 ,-0.0435376426805927779,-0.1144284857992403647,0.00000000000000000000,1.00000000000000000000,-0.0041827968846642436,-0.0035924171790575648,0.99998479925898509090,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002953594903374,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -167 ,0 ,-0.0514461764499575605,-0.1147784928158046696,0.00000000000000000000,1.00000000000000000000,-0.0049429521276375771,-0.0036143983131731618,0.99998125149879557582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003327062458993,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -168 ,0 ,0.05079921968308483137,-0.1398314223968078751,0.00000000000000000000,1.00000000000000000000,0.00491894887664269704,-0.0043894500586808419,0.99997826809892775834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004297799787309,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -169 ,0 ,0.04299015821080333366,-0.1394848386692041364,0.00000000000000000000,1.00000000000000000000,0.00416248356405538554,-0.0043676295232175565,0.99998179860581781763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003928038240701,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -170 ,0 ,0.03517799571917189227,-0.1391959688025851404,0.00000000000000000000,1.00000000000000000000,0.00340587025124703063,-0.0043494433728992563,0.99998474107867130200,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003619822618929,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -171 ,0 ,0.02736329555009804279,-0.1389648401143539768,0.00000000000000000000,1.00000000000000000000,0.00264913582343840681,-0.0043348929005951313,0.99998709530819884783,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003373197050677,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -172 ,0 ,0.01954662133329461426,-0.1387914744662544774,0.00000000000000000000,1.00000000000000000000,0.00189230718019316808,-0.0043239791408756040,0.99998886112692508820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003188196915289,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -173 ,0 ,0.01172853692241166562,-0.1386758882551722416,0.00000000000000000000,1.00000000000000000000,0.00113541123223419456,-0.0043167028698308188,0.99999003840921674157,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003064848770009,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -174 ,0 ,0.00390960633107761273,-0.1386180924157186244,0.00000000000000000000,1.00000000000000000000,0.00037847489825727754,-0.0043130646049294842,0.99999062707130648153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003003170277224,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -175 ,0 ,-0.0039096063310776127,-0.1386180924157186244,0.00000000000000000000,1.00000000000000000000,-0.0003784748982572775,-0.0043130646049294842,0.99999062707130648153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003003170277224,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -176 ,0 ,-0.0117285369224116656,-0.1386758882551722416,0.00000000000000000000,1.00000000000000000000,-0.0011354112322341945,-0.0043167028698308188,0.99999003840921674157,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003064848770009,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -177 ,0 ,-0.0195466213332948363,-0.1387914744662544774,0.00000000000000000000,1.00000000000000000000,-0.0018923071801931689,-0.0043239791408756040,0.99998886112692508820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003188196915289,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -178 ,0 ,-0.0273632955500980427,-0.1389648401143539768,0.00000000000000000000,1.00000000000000000000,-0.0026491358234384068,-0.0043348929005951313,0.99998709530819884783,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003373197050677,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -179 ,0 ,-0.0351779957191718922,-0.1391959688025851404,0.00000000000000000000,1.00000000000000000000,-0.0034058702512470306,-0.0043494433728992563,0.99998474107867130200,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003619822618929,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -180 ,0 ,-0.0429901582108033336,-0.1394848386692041364,0.00000000000000000000,1.00000000000000000000,-0.0041624835640553855,-0.0043676295232175565,0.99998179860581781763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003928038240701,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -181 ,0 ,-0.0507992196830848313,-0.1398314223968078751,0.00000000000000000000,1.00000000000000000000,-0.0049189488766426970,-0.0043894500586808419,0.99997826809892775834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004297799787309,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -182 ,0 ,0.05015600413678680119,-0.1648248738204280972,0.00000000000000000000,1.00000000000000000000,0.00489511704088030873,-0.0051607896909699763,0.99997470171945934680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005459743279061,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -183 ,0 ,0.04244584010028352311,-0.1644816807985412521,0.00000000000000000000,1.00000000000000000000,0.00414231532139470136,-0.0051391282128490202,0.99997821505520290141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005093669624329,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -184 ,0 ,0.03473260443801719915,-0.1641956371066242148,0.00000000000000000000,1.00000000000000000000,0.00338936702289542026,-0.0051210746388573261,0.99998114321507436397,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004788527985510,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -185 ,0 ,0.02701685515439635962,-0.1639667697429195436,0.00000000000000000000,1.00000000000000000000,0.00263629877254489613,-0.0051066302463008764,0.99998348599179831541,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004544362109299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -186 ,0 ,0.01929915053756843523,-0.1637951003112175785,0.00000000000000000000,1.00000000000000000000,0.00188313721164270119,-0.0050957960572947259,0.99998524321951087756,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004361207065812,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -187 ,0 ,0.01158004909643367552,-0.1636806450189282058,0.00000000000000000000,1.00000000000000000000,0.00112990899248756391,-0.0050885728385845676,0.99998641477378813480,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004239089139446,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -188 ,0 ,0.00386010949761462444,-0.1636234146710251469,0.00000000000000000000,1.00000000000000000000,0.00037664077523672087,-0.0050849611014082314,0.99998700057166911570,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004178025737928,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -189 ,0 ,-0.0038601094976146244,-0.1636234146710251469,0.00000000000000000000,1.00000000000000000000,-0.0003766407752367208,-0.0050849611014082314,0.99998700057166911570,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004178025737928,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -190 ,0 ,-0.0115800490964336755,-0.1636806450189282058,0.00000000000000000000,1.00000000000000000000,-0.0011299089924875639,-0.0050885728385845676,0.99998641477378813480,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004239089139446,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -191 ,0 ,-0.0192991505375684352,-0.1637951003112175785,0.00000000000000000000,1.00000000000000000000,-0.0018831372116427016,-0.0050957960572947259,0.99998524321951087756,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004361207065812,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -192 ,0 ,-0.0270168551543963596,-0.1639667697429195436,0.00000000000000000000,1.00000000000000000000,-0.0026362987725448961,-0.0051066302463008764,0.99998348599179831541,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004544362109299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -193 ,0 ,-0.0347326044380171991,-0.1641956371066242148,0.00000000000000000000,1.00000000000000000000,-0.0033893670228954202,-0.0051210746388573261,0.99998114321507436397,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004788527985510,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -194 ,0 ,-0.0424458401002835231,-0.1644816807985412521,0.00000000000000000000,1.00000000000000000000,-0.0041423153213947022,-0.0051391282128490202,0.99997821505520290141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005093669624329,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -195 ,0 ,-0.0501560041367868011,-0.1648248738204280972,0.00000000000000000000,1.00000000000000000000,-0.0048951170408803087,-0.0051607896909699763,0.99997470171945934680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005459743279061,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -196 ,0 ,0.05882048391403898318,0.16490226832961626945,0.00000000000000000000,1.00000000000000000000,0.00521878189192140958,0.00516383704542349407,0.99997304918809326590,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005814979012939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -197 ,0 ,0.04977814599792802774,0.16529220016889181743,0.00000000000000000000,1.00000000000000000000,0.00441622536327760176,0.00518769198446898671,0.99997679213340484594,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005399547171691,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -198 ,0 ,0.04073232505913049195,0.16561720121073586486,0.00000000000000000000,1.00000000000000000000,0.00361350236940675799,0.00520757384813131177,0.99997991168585087518,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005053263121226,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -199 ,0 ,0.03168365380360934485,0.16587723991093875075,0.00000000000000000000,1.00000000000000000000,0.00281064314820036282,0.00522348113795453872,0.99998240761020129596,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004776176374434,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/Ellipsoid_MB.rayui.csv b/Intern/RAY-Core/tests/output/Ellipsoid_MB.rayui.csv deleted file mode 100644 index a04d0684f..000000000 --- a/Intern/RAY-Core/tests/output/Ellipsoid_MB.rayui.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -20 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -21 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -22 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -23 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -24 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -25 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -26 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -27 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -28 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -29 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -30 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -31 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -32 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -33 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -34 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -35 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -36 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -37 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -38 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -39 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -40 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -41 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -42 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -43 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -44 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -45 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -46 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -47 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -48 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -49 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -50 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -51 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -52 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -53 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -54 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -55 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -56 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -57 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -58 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -59 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -60 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -61 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -62 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -63 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -64 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -65 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -66 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -67 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -68 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -69 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -70 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -71 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -72 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -73 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -74 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -75 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -76 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -77 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -78 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -79 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -80 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -81 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -82 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -83 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -84 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -85 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -86 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -87 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -88 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -89 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -90 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -91 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -92 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -93 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -94 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -95 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -96 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -97 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -98 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -99 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -100 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -101 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -102 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -103 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -104 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -105 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -106 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -107 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -108 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -109 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -110 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -111 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -112 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -113 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -114 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -115 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -116 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -117 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -118 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -119 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -120 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -121 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -122 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -123 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -124 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -125 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -126 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -127 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -128 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -129 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -130 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -131 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -132 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -133 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -134 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -135 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -136 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -137 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -138 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -139 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -140 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -141 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -142 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -143 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -144 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -145 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -146 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -147 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -148 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -149 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -150 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -151 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -152 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -153 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -154 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -155 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -156 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -157 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -158 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -159 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -160 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -161 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -162 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -163 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -164 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -165 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -166 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -167 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -168 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -169 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -170 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -171 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -172 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -173 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -174 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -175 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -176 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -177 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -178 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -179 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -180 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -181 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -182 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -183 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -184 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -185 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -186 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -187 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -188 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -189 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -190 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -191 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -192 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -193 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -194 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -195 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -196 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -197 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -198 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -199 ,0 ,0.00000000000000000000,-0.0000000000001650190,0.00000000000000000000,-1.0000000000000000000,0.00000000000000000000,-0.0000000000000001110,1.00000000000000000000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/Ellipsoid_MB.rayx.csv b/Intern/RAY-Core/tests/output/Ellipsoid_MB.rayx.csv deleted file mode 100644 index 2f39dc634..000000000 --- a/Intern/RAY-Core/tests/output/Ellipsoid_MB.rayx.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -20 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -23 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -24 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -27 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -28 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -29 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -32 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -33 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -34 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -35 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -38 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -39 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -40 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -42 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -43 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -47 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -48 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -49 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -50 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -51 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -53 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -54 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -55 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -56 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -57 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -58 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -59 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -60 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -61 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -63 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -64 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -65 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -66 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -68 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -69 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -70 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -71 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -72 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -73 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -74 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -75 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -76 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -77 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -78 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -79 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -80 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -81 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -82 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -83 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -84 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -85 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -86 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -87 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -88 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -89 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -90 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -92 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -93 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -94 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -95 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -96 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -97 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -98 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -99 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -100 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -101 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -102 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -103 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -104 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -105 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -106 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -107 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -108 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -109 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -110 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -111 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -112 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -113 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -114 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -115 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -116 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -117 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -118 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -119 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -120 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -121 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -122 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -123 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -124 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -125 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -126 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -127 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -128 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -129 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -130 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -131 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -132 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -133 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -134 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -135 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -136 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -137 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -138 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -139 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -140 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -141 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -142 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -143 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -144 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -145 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -146 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -147 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -148 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -149 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -150 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -151 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -152 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -153 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -154 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -155 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -156 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -157 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -158 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -159 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -160 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -161 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -162 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -163 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -164 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -165 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -166 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -167 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -168 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -169 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -170 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -171 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -172 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -173 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -174 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -175 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -176 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -177 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -178 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -179 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -180 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -181 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -182 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -183 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -184 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -185 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -186 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -187 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -188 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -189 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -190 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -191 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -192 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -193 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -194 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -195 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -196 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -197 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -198 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -199 ,0 ,0.00000000000000000000,-0.0000000000001096875,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000,-0.0000000000000001096,0.99999999999999977795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000000000000000,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/Ellipsoid_PM.rayui.csv b/Intern/RAY-Core/tests/output/Ellipsoid_PM.rayui.csv deleted file mode 100644 index dd6c35609..000000000 --- a/Intern/RAY-Core/tests/output/Ellipsoid_PM.rayui.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-5.5000004583333801377,-5.5000011458334601144,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,-0.0004999999791666379,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00275000045746764997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-4.6538464315164800311,-5.5000009505670703902,0.00000000000000000000,-1.0000000000000000000,-0.0004230768575709329,-0.0004999999791666649,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779537243985,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,-3.8076924597746999445,-5.5000007878453196497,0.00000000000000000000,-1.0000000000000000000,-0.0003461537959717820,-0.0004999999791666649,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392708084984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,-2.9615385330943699848,-5.5000006576677895608,0.00000000000000000000,-1.0000000000000000000,-0.0002692307323243830,-0.0004999999791666649,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884497587003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-2.1153846414618397986,-5.5000005600349197720,0.00000000000000000000,-1.0000000000000000000,-0.0001923076670839029,-0.0004999999791666649,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253700669997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-1.2692307748634499287,-5.5000004949457901304,0.00000000000000000000,-1.0000000000000000000,-0.0001153846007055080,-0.0004999999791666379,0.99999986834319798401,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500408281007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,-0.4230769232855409733,-5.5000004624015996768,0.00000000000000000000,-1.0000000000000000000,-0.0000384615336443635,-0.0004999999791666649,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623756402995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,0.42307692328554097338,-5.5000004624015996768,0.00000000000000000000,-1.0000000000000000000,0.00003846153364436359,-0.0004999999791666649,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623756402995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,1.26923077486344992870,-5.5000004949457901304,0.00000000000000000000,-1.0000000000000000000,0.00011538460070550800,-0.0004999999791666379,0.99999986834319798401,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500408281007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,2.11538464146183979863,-5.5000005600349197720,0.00000000000000000000,-1.0000000000000000000,0.00019230766708390299,-0.0004999999791666649,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253700669997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,2.96153853309436998486,-5.5000006576677895608,0.00000000000000000000,-1.0000000000000000000,0.00026923073232438301,-0.0004999999791666649,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884497587003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,3.80769245977469994457,-5.5000007878453196497,0.00000000000000000000,-1.0000000000000000000,0.00034615379597178200,-0.0004999999791666649,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392708084984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,4.65384643151648003112,-5.5000009505670703902,0.00000000000000000000,-1.0000000000000000000,0.00042307685757093298,-0.0004999999791666649,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779537243985,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,5.50000045833338013778,-5.5000011458334601144,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,-0.0004999999791666379,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00275000045746764997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,-5.5000004583333801377,-4.6538470132473097606,0.00000000000000000000,-1.0000000000000000000,-0.0004999999344181489,-0.0004230769104555390,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779616824989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,-4.6538464315164800311,-4.6538468480219297163,0.00000000000000000000,-1.0000000000000000000,-0.0004230768725914139,-0.0004230769104555390,0.99999982100592799127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00196893514669227009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-3.8076924597746999445,-4.6538467103343004183,0.00000000000000000000,-1.0000000000000000000,-0.0003461538082612659,-0.0004230769104555390,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128874618989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-2.9615385330943699848,-4.6538466001839697838,0.00000000000000000000,-1.0000000000000000000,-0.0002692307418828710,-0.0004230769104555390,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621653196995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,-2.1153846414618397986,-4.6538465175716403621,0.00000000000000000000,-1.0000000000000000000,-0.0001923076739113949,-0.0004230769104555669,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991492925001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,-1.2692307748634499287,-4.6538464624960802495,0.00000000000000000000,-1.0000000000000000000,-0.0001153846048020029,-0.0004230769104555109,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238791708999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -20 ,0 ,-0.4230769232855409733,-4.6538464349588100077,0.00000000000000000000,-1.0000000000000000000,-0.0000384615350098619,-0.0004230769104555390,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362549102908,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -21 ,0 ,0.42307692328554097338,-4.6538464349588100077,0.00000000000000000000,-1.0000000000000000000,0.00003846153500986199,-0.0004230769104555390,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362549102908,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -22 ,0 ,1.26923077486344992870,-4.6538464624960802495,0.00000000000000000000,-1.0000000000000000000,0.00011538460480200299,-0.0004230769104555109,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238791708999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -23 ,0 ,2.11538464146183979863,-4.6538465175716403621,0.00000000000000000000,-1.0000000000000000000,0.00019230767391139499,-0.0004230769104555669,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991492925001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -24 ,0 ,2.96153853309436998486,-4.6538466001839697838,0.00000000000000000000,-1.0000000000000000000,0.00026923074188287102,-0.0004230769104555390,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621653196995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -25 ,0 ,3.80769245977469994457,-4.6538467103343004183,0.00000000000000000000,-1.0000000000000000000,0.00034615380826126599,-0.0004230769104555390,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128874618989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -26 ,0 ,4.65384643151648003112,-4.6538468480219297163,0.00000000000000000000,-1.0000000000000000000,0.00042307687259141398,-0.0004230769104555390,0.99999982100592799127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00196893514669227009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -27 ,0 ,5.50000045833338013778,-4.6538470132473097606,0.00000000000000000000,-1.0000000000000000000,0.00049999993441814897,-0.0004230769104555390,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779616824989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -28 ,0 ,-5.5000004583333801377,-3.8076929357362399031,0.00000000000000000000,-1.0000000000000000000,-0.0004999999492110469,-0.0003461538392409980,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392799035018,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -29 ,0 ,-4.6538464315164800311,-3.8076928005517500785,0.00000000000000000000,-1.0000000000000000000,-0.0004230768851084819,-0.0003461538392409980,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128806406995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -30 ,0 ,-3.8076924597746999445,-3.8076926878981200985,0.00000000000000000000,-1.0000000000000000000,-0.0003461538185025039,-0.0003461538392409980,0.99999988017751995084,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00131804744194142001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -31 ,0 ,-2.9615385330943699848,-3.8076925977753801610,0.00000000000000000000,-1.0000000000000000000,-0.0002692307498482780,-0.0003461538392410259,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237575258990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -32 ,0 ,-2.1153846414618397986,-3.8076925301832198478,0.00000000000000000000,-1.0000000000000000000,-0.0001923076796009709,-0.0003461538392409980,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608301745295,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -33 ,0 ,-1.2692307748634499287,-3.8076924851217199829,0.00000000000000000000,-1.0000000000000000000,-0.0001153846082157489,-0.0003461538392409980,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855759690399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -34 ,0 ,-0.4230769232855409733,-3.8076924625910799626,0.00000000000000000000,-1.0000000000000000000,-0.0000384615361477773,-0.0003461538392409980,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979619402798,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -35 ,0 ,0.42307692328554097338,-3.8076924625910799626,0.00000000000000000000,-1.0000000000000000000,0.00003846153614777730,-0.0003461538392409980,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979619402798,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -36 ,0 ,1.26923077486344992870,-3.8076924851217199829,0.00000000000000000000,-1.0000000000000000000,0.00011538460821574899,-0.0003461538392409980,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855759690399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -37 ,0 ,2.11538464146183979863,-3.8076925301832198478,0.00000000000000000000,-1.0000000000000000000,0.00019230767960097099,-0.0003461538392409980,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608301745295,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -38 ,0 ,2.96153853309436998486,-3.8076925977753801610,0.00000000000000000000,-1.0000000000000000000,0.00026923074984827800,-0.0003461538392410259,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237575258990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -39 ,0 ,3.80769245977469994457,-3.8076926878981200985,0.00000000000000000000,-1.0000000000000000000,0.00034615381850250397,-0.0003461538392409980,0.99999988017751995084,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00131804744194142001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -40 ,0 ,4.65384643151648003112,-3.8076928005517500785,0.00000000000000000000,-1.0000000000000000000,0.00042307688510848199,-0.0003461538392409980,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128806406995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -41 ,0 ,5.50000045833338013778,-3.8076929357362399031,0.00000000000000000000,-1.0000000000000000000,0.00049999994921104699,-0.0003461538392409980,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392799035018,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -42 ,0 ,-5.5000004583333801377,-2.9615389032867298624,0.00000000000000000000,-1.0000000000000000000,-0.0004999999610453660,-0.0002692307659782339,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884429375009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -43 ,0 ,-4.6538464315164800311,-2.9615387981434397879,0.00000000000000000000,-1.0000000000000000000,-0.0004230768951221369,-0.0002692307659782339,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621528140997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -44 ,0 ,-3.8076924597746999445,-2.9615387105239201481,0.00000000000000000000,-1.0000000000000000000,-0.0003461538266954939,-0.0002692307659782339,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237688946001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -45 ,0 ,-2.9615385330943699848,-2.9615386404286199173,0.00000000000000000000,-1.0000000000000000000,-0.0002692307562206040,-0.0002692307659782339,0.99999992751479405139,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00079733731672604302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -46 ,0 ,-2.1153846414618397986,-2.9615385878566398147,0.00000000000000000000,-1.0000000000000000000,-0.0001923076841526319,-0.0002692307659782339,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102819731495,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -47 ,0 ,-1.2692307748634499287,-2.9615385528088800093,0.00000000000000000000,-1.0000000000000000000,-0.0001153846109467459,-0.0002692307659782339,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350573262301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -48 ,0 ,-0.4230769232855409733,-2.9615385352851100186,0.00000000000000000000,-1.0000000000000000000,-0.0000384615370581095,-0.0002692307659782339,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474489818201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -49 ,0 ,0.42307692328554097338,-2.9615385352851100186,0.00000000000000000000,-1.0000000000000000000,0.00003846153705810950,-0.0002692307659782339,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474489818201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -50 ,0 ,1.26923077486344992870,-2.9615385528088800093,0.00000000000000000000,-1.0000000000000000000,0.00011538461094674599,-0.0002692307659782339,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350573262301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -51 ,0 ,2.11538464146183979863,-2.9615385878566398147,0.00000000000000000000,-1.0000000000000000000,0.00019230768415263299,-0.0002692307659782339,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102819731495,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -52 ,0 ,2.96153853309436998486,-2.9615386404286199173,0.00000000000000000000,-1.0000000000000000000,0.00026923075622060400,-0.0002692307659782339,0.99999992751479405139,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00079733731672604302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -53 ,0 ,3.80769245977469994457,-2.9615387105239201481,0.00000000000000000000,-1.0000000000000000000,0.00034615382669549399,-0.0002692307659782339,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237688946001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -54 ,0 ,4.65384643151648003112,-2.9615387981434397879,0.00000000000000000000,-1.0000000000000000000,0.00042307689512213698,-0.0002692307659782339,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621528140997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -55 ,0 ,5.50000045833338013778,-2.9615389032867298624,0.00000000000000000000,-1.0000000000000000000,0.00049999996104536600,-0.0002692307659782339,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884429375009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -56 ,0 ,-5.5000004583333801377,-2.1153849058853100295,0.00000000000000000000,-1.0000000000000000000,-0.0004999999699211050,-0.0001923076911223839,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253712038009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -57 ,0 ,-4.6538464315164800311,-2.1153848307828702068,0.00000000000000000000,-1.0000000000000000000,-0.0004230769026323780,-0.0001923076911223839,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991743036001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -58 ,0 ,-3.8076924597746999445,-2.1153847681970598948,0.00000000000000000000,-1.0000000000000000000,-0.0003461538328402370,-0.0001923076911223290,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608279008003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -59 ,0 ,-2.9615385330943699848,-2.1153847181289400225,0.00000000000000000000,-1.0000000000000000000,-0.0002692307609998480,-0.0001923076911223560,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102751519403,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -60 ,0 ,-2.1153846414618397986,-2.1153846805779399353,0.00000000000000000000,-1.0000000000000000000,-0.0001923076875663780,-0.0001923076911223560,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474410237398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -61 ,0 ,-1.2692307748634499287,-2.1153846555434201448,0.00000000000000000000,-1.0000000000000000000,-0.0001153846129949930,-0.0001923076911223560,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722334298499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -62 ,0 ,-0.4230769232855399741,-2.1153846430264899858,0.00000000000000000000,-1.0000000000000000000,-0.0000384615377408587,-0.0001923076911223560,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846387278501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -63 ,0 ,0.42307692328553997418,-2.1153846430264899858,0.00000000000000000000,-1.0000000000000000000,0.00003846153774085870,-0.0001923076911223560,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846387278501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -64 ,0 ,1.26923077486344992870,-2.1153846555434201448,0.00000000000000000000,-1.0000000000000000000,0.00011538461299499300,-0.0001923076911223560,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722334298499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -65 ,0 ,2.11538464146183979863,-2.1153846805779399353,0.00000000000000000000,-1.0000000000000000000,0.00019230768756637800,-0.0001923076911223560,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474410237398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -66 ,0 ,2.96153853309436998486,-2.1153847181289400225,0.00000000000000000000,-1.0000000000000000000,0.00026923076099984801,-0.0001923076911223560,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102751519403,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -67 ,0 ,3.80769245977469994457,-2.1153847681970598948,0.00000000000000000000,-1.0000000000000000000,0.00034615383284023701,-0.0001923076911223290,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608279008003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -68 ,0 ,4.65384643151648003112,-2.1153848307828702068,0.00000000000000000000,-1.0000000000000000000,0.00042307690263237800,-0.0001923076911223839,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991743036001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -69 ,0 ,5.50000045833338013778,-2.1153849058853100295,0.00000000000000000000,-1.0000000000000000000,0.00049999996992110501,-0.0001923076911223839,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253712038009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -70 ,0 ,-5.5000004583333801377,-1.2692309335173299622,0.00000000000000000000,-1.0000000000000000000,-0.0004999999758382650,-0.0001153846151285830,0.99999986834319798401,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500510600007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -71 ,0 ,-4.6538464315164800311,-1.2692308884555500991,0.00000000000000000000,-1.0000000000000000000,-0.0004230769076392049,-0.0001153846151285550,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238780339990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -72 ,0 ,-3.8076924597746999445,-1.2692308509048300102,0.00000000000000000000,-1.0000000000000000000,-0.0003461538369367320,-0.0001153846151285830,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855827902501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -73 ,0 ,-2.9615385330943699848,-1.2692308208637399502,0.00000000000000000000,-1.0000000000000000000,-0.0002692307641860109,-0.0001153846151285830,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350505050199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -74 ,0 ,-2.1153846414618397986,-1.2692307983329600418,0.00000000000000000000,-1.0000000000000000000,-0.0001923076898422090,-0.0001153846151285550,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722345667101,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -75 ,0 ,-1.2692307748634499287,-1.2692307833125500149,0.00000000000000000000,-1.0000000000000000000,-0.0001153846143604919,-0.0001153846151285830,0.99999998668639000776,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014644970417521100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -76 ,0 ,-0.4230769232855409733,-1.2692307758020000552,0.00000000000000000000,-1.0000000000000000000,-0.0000384615381960247,-0.0001153846151285830,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094743349529,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -77 ,0 ,0.42307692328554097338,-1.2692307758020000552,0.00000000000000000000,-1.0000000000000000000,0.00003846153819602479,-0.0001153846151285830,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094743349529,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -78 ,0 ,1.26923077486344992870,-1.2692307833125500149,0.00000000000000000000,-1.0000000000000000000,0.00011538461436049199,-0.0001153846151285830,0.99999998668639000776,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014644970417521100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -79 ,0 ,2.11538464146183979863,-1.2692307983329600418,0.00000000000000000000,-1.0000000000000000000,0.00019230768984220900,-0.0001153846151285550,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722345667101,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -80 ,0 ,2.96153853309436998486,-1.2692308208637399502,0.00000000000000000000,-1.0000000000000000000,0.00026923076418601098,-0.0001153846151285830,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350505050199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -81 ,0 ,3.80769245977469994457,-1.2692308509048300102,0.00000000000000000000,-1.0000000000000000000,0.00034615383693673202,-0.0001153846151285830,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855827902501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -82 ,0 ,4.65384643151648003112,-1.2692308884555500991,0.00000000000000000000,-1.0000000000000000000,0.00042307690763920499,-0.0001153846151285550,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238780339990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -83 ,0 ,5.50000045833338013778,-1.2692309335173299622,0.00000000000000000000,-1.0000000000000000000,0.00049999997583826500,-0.0001153846151285830,0.99999986834319798401,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500510600007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -84 ,0 ,-5.5000004583333801377,-0.4230769761703330189,0.00000000000000000000,-1.0000000000000000000,-0.0004999999787968440,-0.0000384615384520503,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623961038999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -85 ,0 ,-4.6538464315164800311,-0.4230769611495709958,0.00000000000000000000,-1.0000000000000000000,-0.0004230769101426190,-0.0000384615384520226,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362549102908,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -86 ,0 ,-3.8076924597746999445,-0.4230769486326190209,0.00000000000000000000,-1.0000000000000000000,-0.0003461538389849799,-0.0000384615384520503,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979710352301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -87 ,0 ,-2.9615385330943699848,-0.4230769386189450198,0.00000000000000000000,-1.0000000000000000000,-0.0002692307657790929,-0.0000384615384520503,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474558030298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -88 ,0 ,-2.1153846414618397986,-0.4230769311085499917,0.00000000000000000000,-1.0000000000000000000,-0.0001923076909801239,-0.0000384615384520226,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846444121901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -89 ,0 ,-1.2692307748634499287,-0.4230769261017139903,0.00000000000000000000,-1.0000000000000000000,-0.0001153846150432410,-0.0000384615384520226,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094663768739,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -90 ,0 ,-0.4230769232855409733,-0.4230769235984350173,0.00000000000000000000,-1.0000000000000000000,-0.0000384615384236079,-0.0000384615384520503,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001627218807698229,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -91 ,0 ,0.42307692328554097338,-0.4230769235984350173,0.00000000000000000000,-1.0000000000000000000,0.00003846153842360790,-0.0000384615384520503,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001627218807698229,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -92 ,0 ,1.26923077486344992870,-0.4230769261017139903,0.00000000000000000000,-1.0000000000000000000,0.00011538461504324100,-0.0000384615384520226,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094663768739,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -93 ,0 ,2.11538464146183979863,-0.4230769311085499917,0.00000000000000000000,-1.0000000000000000000,0.00019230769098012398,-0.0000384615384520226,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846444121901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -94 ,0 ,2.96153853309436998486,-0.4230769386189450198,0.00000000000000000000,-1.0000000000000000000,0.00026923076577909299,-0.0000384615384520503,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474558030298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -95 ,0 ,3.80769245977469994457,-0.4230769486326190209,0.00000000000000000000,-1.0000000000000000000,0.00034615383898497999,-0.0000384615384520503,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979710352301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -96 ,0 ,4.65384643151648003112,-0.4230769611495709958,0.00000000000000000000,-1.0000000000000000000,0.00042307691014261902,-0.0000384615384520226,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362549102908,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -97 ,0 ,5.50000045833338013778,-0.4230769761703330189,0.00000000000000000000,-1.0000000000000000000,0.00049999997879684402,-0.0000384615384520503,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623961038999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -98 ,0 ,-5.5000004583333801377,0.42307697617002898438,0.00000000000000000000,-1.0000000000000000000,-0.0004999999787968440,0.00003846153845205039,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623972408008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -99 ,0 ,-4.6538464315164800311,0.42307696114969300937,0.00000000000000000000,-1.0000000000000000000,-0.0004230769101426190,0.00003846153845207810,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362458153394,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -100 ,0 ,-3.8076924597746999445,0.42307694863232198079,0.00000000000000000000,-1.0000000000000000000,-0.0003461538389849799,0.00003846153845205039,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979755827003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -101 ,0 ,-2.9615385330943699848,0.42307693861886802588,0.00000000000000000000,-1.0000000000000000000,-0.0002692307657790929,0.00003846153845202260,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474694454498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -102 ,0 ,-2.1153846414618397986,0.42307693110848998419,0.00000000000000000000,-1.0000000000000000000,-0.0001923076909801239,0.00003846153845205039,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846500965300,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -103 ,0 ,-1.2692307748634499287,0.42307692610180497316,0.00000000000000000000,-1.0000000000000000000,-0.0001153846150432410,0.00003846153845207810,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094766086900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -104 ,0 ,-0.4230769232855409733,0.42307692359853199537,0.00000000000000000000,-1.0000000000000000000,-0.0000384615384236079,0.00003846153845205039,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001627218796329539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -105 ,0 ,0.42307692328554097338,0.42307692359853199537,0.00000000000000000000,-1.0000000000000000000,0.00003846153842360790,0.00003846153845205039,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001627218796329539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -106 ,0 ,1.26923077486344992870,0.42307692610180497316,0.00000000000000000000,-1.0000000000000000000,0.00011538461504324100,0.00003846153845207810,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094766086900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -107 ,0 ,2.11538464146183979863,0.42307693110848998419,0.00000000000000000000,-1.0000000000000000000,0.00019230769098012398,0.00003846153845205039,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846500965300,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -108 ,0 ,2.96153853309436998486,0.42307693861886802588,0.00000000000000000000,-1.0000000000000000000,0.00026923076577909299,0.00003846153845202260,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474694454498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -109 ,0 ,3.80769245977469994457,0.42307694863232198079,0.00000000000000000000,-1.0000000000000000000,0.00034615383898497999,0.00003846153845205039,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979755827003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -110 ,0 ,4.65384643151648003112,0.42307696114969300937,0.00000000000000000000,-1.0000000000000000000,0.00042307691014261902,0.00003846153845207810,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362458153394,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -111 ,0 ,5.50000045833338013778,0.42307697617002898438,0.00000000000000000000,-1.0000000000000000000,0.00049999997879684402,0.00003846153845205039,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623972408008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -112 ,0 ,-5.5000004583333801377,1.26923093351733995426,0.00000000000000000000,-1.0000000000000000000,-0.0004999999758382650,0.00011538461512858300,0.99999986834319898321,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500396912996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -113 ,0 ,-4.6538464315164800311,1.26923088845578990735,0.00000000000000000000,-1.0000000000000000000,-0.0004230769076392049,0.00011538461512858300,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238825815007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -114 ,0 ,-3.8076924597746999445,1.26923085090444009992,0.00000000000000000000,-1.0000000000000000000,-0.0003461538369367320,0.00011538461512855500,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855827902501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -115 ,0 ,-2.9615385330943699848,1.26923082086359007014,0.00000000000000000000,-1.0000000000000000000,-0.0002692307641860109,0.00011538461512858300,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350550524999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -116 ,0 ,-2.1153846414618397986,1.26923079833292007378,0.00000000000000000000,-1.0000000000000000000,-0.0001923076898422090,0.00011538461512858300,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722425247899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -117 ,0 ,-1.2692307748634499287,1.26923078331246008687,0.00000000000000000000,-1.0000000000000000000,-0.0001153846143604919,0.00011538461512855500,0.99999998668639000776,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014644970508470600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -118 ,0 ,-0.4230769232855399741,1.26923077580226006944,0.00000000000000000000,-1.0000000000000000000,-0.0000384615381960247,0.00011538461512858300,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094731980850,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -119 ,0 ,0.42307692328553997418,1.26923077580226006944,0.00000000000000000000,-1.0000000000000000000,0.00003846153819602479,0.00011538461512858300,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008136094731980850,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -120 ,0 ,1.26923077486344992870,1.26923078331246008687,0.00000000000000000000,-1.0000000000000000000,0.00011538461436049199,0.00011538461512855500,0.99999998668639000776,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014644970508470600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -121 ,0 ,2.11538464146183979863,1.26923079833292007378,0.00000000000000000000,-1.0000000000000000000,0.00019230768984220900,0.00011538461512858300,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722425247899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -122 ,0 ,2.96153853309436998486,1.26923082086359007014,0.00000000000000000000,-1.0000000000000000000,0.00026923076418601098,0.00011538461512858300,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350550524999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -123 ,0 ,3.80769245977469994457,1.26923085090444009992,0.00000000000000000000,-1.0000000000000000000,0.00034615383693673202,0.00011538461512855500,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855827902501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -124 ,0 ,4.65384643151648003112,1.26923088845578990735,0.00000000000000000000,-1.0000000000000000000,0.00042307690763920499,0.00011538461512858300,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238825815007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -125 ,0 ,5.50000045833338013778,1.26923093351733995426,0.00000000000000000000,-1.0000000000000000000,0.00049999997583826500,0.00011538461512858300,0.99999986834319898321,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500396912996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -126 ,0 ,-5.5000004583333801377,2.11538490588455019292,0.00000000000000000000,-1.0000000000000000000,-0.0004999999699211050,0.00019230769112235600,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253746143995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -127 ,0 ,-4.6538464315164800311,2.11538483078214989419,0.00000000000000000000,-1.0000000000000000000,-0.0004230769026323780,0.00019230769112232900,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991617981000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -128 ,0 ,-3.8076924597746999445,2.11538476819697995878,0.00000000000000000000,-1.0000000000000000000,-0.0003461538328402370,0.00019230769112235600,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608404063503,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -129 ,0 ,-2.9615385330943699848,2.11538471812874018240,0.00000000000000000000,-1.0000000000000000000,-0.0002692307609998480,0.00019230769112235600,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102796994095,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -130 ,0 ,-2.1153846414618397986,2.11538468057764017515,0.00000000000000000000,-1.0000000000000000000,-0.0001923076875663780,0.00019230769112232900,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474319287901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -131 ,0 ,-1.2692307748634499287,2.11538465554356980291,0.00000000000000000000,-1.0000000000000000000,-0.0001153846129949930,0.00019230769112238399,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722402510602,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -132 ,0 ,-0.4230769232855399741,2.11538464302639983571,0.00000000000000000000,-1.0000000000000000000,-0.0000384615377408587,0.00019230769112238399,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846478227900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -133 ,0 ,0.42307692328553997418,2.11538464302639983571,0.00000000000000000000,-1.0000000000000000000,0.00003846153774085870,0.00019230769112238399,0.99999998076923102274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021153846478227900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -134 ,0 ,1.26923077486344992870,2.11538465554356980291,0.00000000000000000000,-1.0000000000000000000,0.00011538461299499300,0.00019230769112238399,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00027662722402510602,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -135 ,0 ,2.11538464146183979863,2.11538468057764017515,0.00000000000000000000,-1.0000000000000000000,0.00019230768756637800,0.00019230769112232900,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474319287901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -136 ,0 ,2.96153853309436998486,2.11538471812874018240,0.00000000000000000000,-1.0000000000000000000,0.00026923076099984801,0.00019230769112235600,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102796994095,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -137 ,0 ,3.80769245977469994457,2.11538476819697995878,0.00000000000000000000,-1.0000000000000000000,0.00034615383284023701,0.00019230769112235600,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608404063503,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -138 ,0 ,4.65384643151648003112,2.11538483078214989419,0.00000000000000000000,-1.0000000000000000000,0.00042307690263237800,0.00019230769112232900,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991617981000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -139 ,0 ,5.50000045833338013778,2.11538490588455019292,0.00000000000000000000,-1.0000000000000000000,0.00049999996992110501,0.00019230769112235600,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253746143995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -140 ,0 ,-5.5000004583333801377,2.96153890328674007648,0.00000000000000000000,-1.0000000000000000000,-0.0004999999610453660,0.00026923076597823398,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884406638010,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -141 ,0 ,-4.6538464315164800311,2.96153879814346021603,0.00000000000000000000,-1.0000000000000000000,-0.0004230768951221369,0.00026923076597823398,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621653196995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -142 ,0 ,-3.8076924597746999445,2.96153871052384021211,0.00000000000000000000,-1.0000000000000000000,-0.0003461538266954939,0.00026923076597823398,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237677577989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -143 ,0 ,-2.9615385330943699848,2.96153864042832992709,0.00000000000000000000,-1.0000000000000000000,-0.0002692307562206040,0.00026923076597823398,0.99999992751479405139,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00079733731774922500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -144 ,0 ,-2.1153846414618397986,2.96153858785647017271,0.00000000000000000000,-1.0000000000000000000,-0.0001923076841526319,0.00026923076597823398,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102694675995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -145 ,0 ,-1.2692307748634499287,2.96153855280868016919,0.00000000000000000000,-1.0000000000000000000,-0.0001153846109467459,0.00026923076597820699,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350630105802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -146 ,0 ,-0.4230769232855409733,2.96153853528482979839,0.00000000000000000000,-1.0000000000000000000,-0.0000384615370581095,0.00026923076597823398,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474512555498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -147 ,0 ,0.42307692328554097338,2.96153853528482979839,0.00000000000000000000,-1.0000000000000000000,0.00003846153705810950,0.00026923076597823398,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040680474512555498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -148 ,0 ,1.26923077486344992870,2.96153855280868016919,0.00000000000000000000,-1.0000000000000000000,0.00011538461094674599,0.00026923076597820699,0.99999995710059197406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00047189350630105802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -149 ,0 ,2.11538464146183979863,2.96153858785647017271,0.00000000000000000000,-1.0000000000000000000,0.00019230768415263299,0.00026923076597823398,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00060207102694675995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -150 ,0 ,2.96153853309436998486,2.96153864042832992709,0.00000000000000000000,-1.0000000000000000000,0.00026923075622060400,0.00026923076597823398,0.99999992751479405139,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00079733731774922500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -151 ,0 ,3.80769245977469994457,2.96153871052384021211,0.00000000000000000000,-1.0000000000000000000,0.00034615382669549399,0.00026923076597823398,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237677577989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -152 ,0 ,4.65384643151648003112,2.96153879814346021603,0.00000000000000000000,-1.0000000000000000000,0.00042307689512213698,0.00026923076597823398,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621653196995,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -153 ,0 ,5.50000045833338013778,2.96153890328674007648,0.00000000000000000000,-1.0000000000000000000,0.00049999996104536600,0.00026923076597823398,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884406638010,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -154 ,0 ,-5.5000004583333801377,3.80769293573588996082,0.00000000000000000000,-1.0000000000000000000,-0.0004999999492110469,0.00034615383924099801,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392548924018,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -155 ,0 ,-4.6538464315164800311,3.80769280055183978461,0.00000000000000000000,-1.0000000000000000000,-0.0004230768851084819,0.00034615383924099801,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128931461996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -156 ,0 ,-3.8076924597746999445,3.80769268789814008258,0.00000000000000000000,-1.0000000000000000000,-0.0003461538185025039,0.00034615383924099801,0.99999988017751995084,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00131804744148667006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -157 ,0 ,-2.9615385330943699848,3.80769259777498980668,0.00000000000000000000,-1.0000000000000000000,-0.0002692307498482780,0.00034615383924099801,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237666209002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -158 ,0 ,-2.1153846414618397986,3.80769253018311015779,0.00000000000000000000,-1.0000000000000000000,-0.0001923076796009709,0.00034615383924102598,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608358588800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -159 ,0 ,-1.2692307748634499287,3.80769248512150992880,0.00000000000000000000,-1.0000000000000000000,-0.0001153846082157489,0.00034615383924099801,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855646003604,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -160 ,0 ,-0.4230769232855409733,3.80769246259073002036,0.00000000000000000000,-1.0000000000000000000,-0.0000384615361477773,0.00034615383924099801,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979755827003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -161 ,0 ,0.42307692328554097338,3.80769246259073002036,0.00000000000000000000,-1.0000000000000000000,0.00003846153614777730,0.00034615383924099801,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00066715979755827003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -162 ,0 ,1.26923077486344992870,3.80769248512150992880,0.00000000000000000000,-1.0000000000000000000,0.00011538460821574899,0.00034615383924099801,0.99999993343195403561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00073224855646003604,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -163 ,0 ,2.11538464146183979863,3.80769253018311015779,0.00000000000000000000,-1.0000000000000000000,0.00019230767960097099,0.00034615383924102598,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00086242608358588800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -164 ,0 ,2.96153853309436998486,3.80769259777498980668,0.00000000000000000000,-1.0000000000000000000,0.00026923074984827800,0.00034615383924099801,0.99999990384615700111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769237666209002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -165 ,0 ,3.80769245977469994457,3.80769268789814008258,0.00000000000000000000,-1.0000000000000000000,0.00034615381850250397,0.00034615383924099801,0.99999988017751995084,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00131804744148667006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -166 ,0 ,4.65384643151648003112,3.80769280055183978461,0.00000000000000000000,-1.0000000000000000000,0.00042307688510848199,0.00034615383924099801,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128931461996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -167 ,0 ,5.50000045833338013778,3.80769293573588996082,0.00000000000000000000,-1.0000000000000000000,0.00049999994921104699,0.00034615383924099801,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392548924018,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -168 ,0 ,-5.5000004583333801377,4.65384701324730976068,0.00000000000000000000,-1.0000000000000000000,-0.0004999999344181489,0.00042307691045556698,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779559981006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -169 ,0 ,-4.6538464315164800311,4.65384684802194037445,0.00000000000000000000,-1.0000000000000000000,-0.0004230768725914139,0.00042307691045553901,0.99999982100592799127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00196893514441853984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -170 ,0 ,-3.8076924597746999445,4.65384671033404018203,0.00000000000000000000,-1.0000000000000000000,-0.0003461538082612659,0.00042307691045553901,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128965569002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -171 ,0 ,-2.9615385330943699848,4.65384660018406037806,0.00000000000000000000,-1.0000000000000000000,-0.0002692307418828710,0.00042307691045556698,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621505403998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -172 ,0 ,-2.1153846414618397986,4.65384651757102041358,0.00000000000000000000,-1.0000000000000000000,-0.0001923076739113949,0.00042307691045553901,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991629348990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -173 ,0 ,-1.2692307748634499287,4.65384646249660960393,0.00000000000000000000,-1.0000000000000000000,-0.0001153846048020029,0.00042307691045556698,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238928133009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -174 ,0 ,-0.4230769232855409733,4.65384643495869010365,0.00000000000000000000,-1.0000000000000000000,-0.0000384615350098619,0.00042307691045553901,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362378572608,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -175 ,0 ,0.42307692328554097338,4.65384643495869010365,0.00000000000000000000,-1.0000000000000000000,0.00003846153500986199,0.00042307691045553901,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00099260362378572608,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -176 ,0 ,1.26923077486344992870,4.65384646249660960393,0.00000000000000000000,-1.0000000000000000000,0.00011538460480200299,0.00042307691045556698,0.99999990384615600191,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00105769238928133009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -177 ,0 ,2.11538464146183979863,4.65384651757102041358,0.00000000000000000000,-1.0000000000000000000,0.00019230767391139499,0.00042307691045553901,0.99999989201183703269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00118786991629348990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -178 ,0 ,2.96153853309436998486,4.65384660018406037806,0.00000000000000000000,-1.0000000000000000000,0.00026923074188287102,0.00042307691045556698,0.99999987426035996662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313621505403998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -179 ,0 ,3.80769245977469994457,4.65384671033404018203,0.00000000000000000000,-1.0000000000000000000,0.00034615380826126599,0.00042307691045553901,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00164349128965569002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -180 ,0 ,4.65384643151648003112,4.65384684802194037445,0.00000000000000000000,-1.0000000000000000000,0.00042307687259141398,0.00042307691045553901,0.99999982100592799127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00196893514441853984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -181 ,0 ,5.50000045833338013778,4.65384701324730976068,0.00000000000000000000,-1.0000000000000000000,0.00049999993441814897,0.00042307691045556698,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779559981006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -182 ,0 ,-5.5000004583333801377,5.50000114583357024855,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,0.00049999997916669303,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00275000045849083021,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -183 ,0 ,-4.6538464315164800311,5.50000095056703042217,0.00000000000000000000,-1.0000000000000000000,-0.0004230768575709329,0.00049999997916666495,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779412187987,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -184 ,0 ,-3.8076924597746999445,5.50000078784527968167,0.00000000000000000000,-1.0000000000000000000,-0.0003461537959717820,0.00049999997916666495,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392685348007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -185 ,0 ,-2.9615385330943699848,5.50000065766760037888,0.00000000000000000000,-1.0000000000000000000,-0.0002692307323243830,0.00049999997916666495,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884508955990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -186 ,0 ,-2.1153846414618397986,5.50000056003445969565,0.00000000000000000000,-1.0000000000000000000,-0.0001923076670839029,0.00049999997916666495,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253791618990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -187 ,0 ,-1.2692307748634499287,5.50000049494587983645,0.00000000000000000000,-1.0000000000000000000,-0.0001153846007055080,0.00049999997916669303,0.99999986834319898321,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500442387991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -188 ,0 ,-0.4230769232855409733,5.50000046240131990060,0.00000000000000000000,-1.0000000000000000000,-0.0000384615336443635,0.00049999997916666495,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623824614989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -189 ,0 ,0.42307692328554097338,5.50000046240131990060,0.00000000000000000000,-1.0000000000000000000,0.00003846153364436359,0.00049999997916666495,0.99999987426035796822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00138313623824614989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -190 ,0 ,1.26923077486344992870,5.50000049494587983645,0.00000000000000000000,-1.0000000000000000000,0.00011538460070550800,0.00049999997916669303,0.99999986834319898321,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00144822500442387991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -191 ,0 ,2.11538464146183979863,5.50000056003445969565,0.00000000000000000000,-1.0000000000000000000,0.00019230766708390299,0.00049999997916666495,0.99999985650888101318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00157840253791618990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -192 ,0 ,2.96153853309436998486,5.50000065766760037888,0.00000000000000000000,-1.0000000000000000000,0.00026923073232438301,0.00049999997916666495,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884508955990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -193 ,0 ,3.80769245977469994457,5.50000078784527968167,0.00000000000000000000,-1.0000000000000000000,0.00034615379597178200,0.00049999997916666495,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392685348007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -194 ,0 ,4.65384643151648003112,5.50000095056703042217,0.00000000000000000000,-1.0000000000000000000,0.00042307685757093298,0.00049999997916666495,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779412187987,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -195 ,0 ,5.50000045833338013778,5.50000114583357024855,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,0.00049999997916669303,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00275000045849083021,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -196 ,0 ,-5.5000004583333801377,-5.5000011458334601144,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,-0.0004999999791666379,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00275000045746764997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -197 ,0 ,-4.6538464315164800311,-5.5000009505670703902,0.00000000000000000000,-1.0000000000000000000,-0.0004230768575709329,-0.0004999999791666649,0.99999978550297397017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00235946779537243985,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -198 ,0 ,-3.8076924597746999445,-5.5000007878453196497,0.00000000000000000000,-1.0000000000000000000,-0.0003461537959717820,-0.0004999999791666649,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00203402392708084984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -199 ,0 ,-2.9615385330943699848,-5.5000006576677895608,0.00000000000000000000,-1.0000000000000000000,-0.0002692307323243830,-0.0004999999791666649,0.99999983875740394712,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00177366884497587003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/Ellipsoid_PM.rayx.csv b/Intern/RAY-Core/tests/output/Ellipsoid_PM.rayx.csv deleted file mode 100644 index ac6f55abd..000000000 --- a/Intern/RAY-Core/tests/output/Ellipsoid_PM.rayx.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-5.5000004583333783614,-5.5000011458332416225,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,-0.0004999999791666126,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-4.6538464315164800311,-5.5000009505676263898,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,-0.0004999999791666171,0.99999978550297363710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,-3.8076924597747008327,-5.5000007878453027743,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,-0.0004999999791666261,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,-2.9615385330943735375,-5.5000006576681395031,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,-0.0004999999791666953,0.99999983875740372507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-2.1153846414618420190,-5.5000005600345565071,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,-0.0004999999791665995,0.99999985650888068011,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-1.2692307748634505948,-5.5000004949457483860,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,-0.0004999999791666341,0.99999986834319853912,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250026048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,-0.4230769232855405848,-5.5000004624020446541,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,-0.0004999999791666703,0.99999987426035752413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362375640,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,0.42307692328554058480,-5.5000004624020446541,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,-0.0004999999791666703,0.99999987426035752413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362375640,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,1.26923077486345059483,-5.5000004949457483860,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,-0.0004999999791666341,0.99999986834319853912,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250026048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,2.11538464146184246317,-5.5000005600345565071,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,-0.0004999999791665995,0.99999985650888068011,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,2.96153853309437353757,-5.5000006576681395031,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,-0.0004999999791666953,0.99999983875740372507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,3.80769245977470083275,-5.5000007878453027743,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,-0.0004999999791666261,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,4.65384643151648180747,-5.5000009505676263898,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,-0.0004999999791666171,0.99999978550297363710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,5.50000045833337836143,-5.5000011458332416225,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,-0.0004999999791666126,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,-5.5000004583333801377,-4.6538470132473550577,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,-0.0004230769104554765,0.99999978550297352608,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,-4.6538464315164818074,-4.6538468480224031154,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,-0.0004230769104555275,0.99999982100592754719,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351447595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-3.8076924597747003886,-4.6538467103345997344,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,-0.0004230769104555277,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-2.9615385330943735375,-4.6538466001840133046,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,-0.0004230769104555471,0.99999987426035952253,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362175551,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,-2.1153846414618424631,-4.6538465175714796018,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,-0.0004230769104555127,0.99999989201183714371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699187946,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,-1.2692307748634505948,-4.6538464624961592974,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,-0.0004230769104554946,0.99999990384615544680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -20 ,0 ,-0.4230769232855405848,-4.6538464349585462187,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,-0.0004230769104555338,0.99999990976331476488,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,0 ,0.42307692328554058480,-4.6538464349585462187,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,-0.0004230769104555338,0.99999990976331476488,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,0 ,1.26923077486345059483,-4.6538464624961592974,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,-0.0004230769104554946,0.99999990384615544680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -23 ,0 ,2.11538464146184290726,-4.6538465175714796018,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,-0.0004230769104555127,0.99999989201183714371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699187946,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -24 ,0 ,2.96153853309437353757,-4.6538466001840133046,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,-0.0004230769104555471,0.99999987426035952253,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362175551,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,0 ,3.80769245977470038866,-4.6538467103345997344,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,-0.0004230769104555277,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,0 ,4.65384643151648269565,-4.6538468480224031154,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,-0.0004230769104555275,0.99999982100592754719,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351447595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -27 ,0 ,5.50000045833338013778,-4.6538470132473550577,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,-0.0004230769104554765,0.99999978550297352608,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -28 ,0 ,-5.5000004583333792496,-3.8076929357360000949,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,-0.0003461538392409787,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239261713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -29 ,0 ,-4.6538464315164818074,-3.8076928005515742192,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,-0.0003461538392409654,0.99999985059172313839,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,0 ,-3.8076924597747012768,-3.8076926878984158619,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,-0.0003461538392409538,0.99999988017751939572,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,0 ,-2.9615385330943726494,-3.8076925977756510555,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,-0.0003461538392409790,0.99999990384615666805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -32 ,0 ,-2.1153846414618424631,-3.8076925301832238446,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,-0.0003461538392409855,0.99999992159763473331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -33 ,0 ,-1.2692307748634501507,-3.8076924851220619316,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,-0.0003461538392409908,0.99999993343195359152,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -34 ,0 ,-0.4230769232855405848,-3.8076924625911980903,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,-0.0003461538392409364,0.99999993934911279858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597966487,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -35 ,0 ,0.42307692328554058480,-3.8076924625911980903,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,-0.0003461538392409364,0.99999993934911279858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597966487,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,0 ,1.26923077486345015074,-3.8076924851220619316,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,-0.0003461538392409908,0.99999993343195359152,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,0 ,2.11538464146184290726,-3.8076925301832238446,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,-0.0003461538392409855,0.99999992159763473331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -38 ,0 ,2.96153853309437264940,-3.8076925977756510555,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,-0.0003461538392409790,0.99999990384615666805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -39 ,0 ,3.80769245977470127684,-3.8076926878984158619,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,-0.0003461538392409538,0.99999988017751939572,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -40 ,0 ,4.65384643151648269565,-3.8076928005515742192,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,-0.0003461538392409654,0.99999985059172313839,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,0 ,5.50000045833337924960,-3.8076929357360000949,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,-0.0003461538392409787,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239261713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -42 ,0 ,-5.5000004583333792496,-2.9615389032868635332,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,-0.0002692307659781633,0.99999983875740372507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -43 ,0 ,-4.6538464315164826956,-2.9615387981433798358,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,-0.0002692307659781733,0.99999987426035952253,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,0 ,-3.8076924597747008327,-2.9615387105236430365,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,-0.0002692307659782435,0.99999990384615677907,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923777989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,0 ,-2.9615385330943735375,-2.9615386404283912114,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,-0.0002692307659781985,0.99999992751479449548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007973373158165,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,0 ,-2.1153846414618420190,-2.9615385878564097765,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,-0.0002692307659781904,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -47 ,0 ,-1.2692307748634503727,-2.9615385528085842459,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,-0.0002692307659781956,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -48 ,0 ,-0.4230769232855405848,-2.9615385352844083577,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,-0.0002692307659781617,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -49 ,0 ,0.42307692328554058480,-2.9615385352844083577,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,-0.0002692307659781617,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -50 ,0 ,1.26923077486345037279,-2.9615385528085842459,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,-0.0002692307659781956,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -51 ,0 ,2.11538464146184290726,-2.9615385878564097765,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,-0.0002692307659781904,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,0 ,2.96153853309437353757,-2.9615386404283912114,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,-0.0002692307659781985,0.99999992751479449548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007973373158165,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -53 ,0 ,3.80769245977470083275,-2.9615387105236430365,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,-0.0002692307659782435,0.99999990384615677907,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923777989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -54 ,0 ,4.65384643151648269565,-2.9615387981433798358,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,-0.0002692307659781733,0.99999987426035952253,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -55 ,0 ,5.50000045833337924960,-2.9615389032868635332,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,-0.0002692307659781633,0.99999983875740372507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -56 ,0 ,-5.5000004583333801377,-2.1153849058847842279,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,-0.0001923076911223311,0.99999985650888056909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025399625,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -57 ,0 ,-4.6538464315164826956,-2.1153848307828981845,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,-0.0001923076911223294,0.99999989201183725473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -58 ,0 ,-3.8076924597747003886,-2.1153847681972930416,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,-0.0001923076911223090,0.99999992159763473331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -59 ,0 ,-2.9615385330943735375,-2.1153847181289671119,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,-0.0001923076911223604,0.99999994526627289381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -60 ,0 ,-2.1153846414618420190,-2.1153846805782099416,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,-0.0001923076911223171,0.99999996301775173623,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047419423,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -61 ,0 ,-1.2692307748634503727,-2.1153846555438398091,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,-0.0001923076911223632,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272245935,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,0 ,-0.4230769232855405292,-2.1153846430265814682,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,-0.0001923076911223118,0.99999998076923068968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -63 ,0 ,0.42307692328554052929,-2.1153846430265814682,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,-0.0001923076911223118,0.99999998076923068968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -64 ,0 ,1.26923077486345037279,-2.1153846555438398091,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,-0.0001923076911223632,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272245935,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -65 ,0 ,2.11538464146184290726,-2.1153846805782099416,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,-0.0001923076911223171,0.99999996301775173623,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047419423,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -66 ,0 ,2.96153853309437353757,-2.1153847181289671119,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,-0.0001923076911223604,0.99999994526627289381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,0 ,3.80769245977470038866,-2.1153847681972930416,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,-0.0001923076911223090,0.99999992159763473331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -68 ,0 ,4.65384643151648269565,-2.1153848307828981845,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,-0.0001923076911223294,0.99999989201183725473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -69 ,0 ,5.50000045833338013778,-2.1153849058847842279,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,-0.0001923076911223311,0.99999985650888056909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025399625,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -70 ,0 ,-5.5000004583333792496,-1.2692309335170413042,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,-0.0001153846151285639,0.99999986834319853912,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250062428,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -71 ,0 ,-4.6538464315164818074,-1.2692308884560012938,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,-0.0001153846151285651,0.99999990384615555782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -72 ,0 ,-3.8076924597747003886,-1.2692308509049472498,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,-0.0001153846151285300,0.99999993343195348050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -73 ,0 ,-2.9615385330943726494,-1.2692308208640217248,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,-0.0001153846151286018,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -74 ,0 ,-2.1153846414618424631,-1.2692307983334234489,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,-0.0001153846151285235,0.99999997485207092751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272227745,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -75 ,0 ,-1.2692307748634505948,-1.2692307833125162641,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,-0.0001153846151285696,0.99999998668639022980,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001464497036067,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -76 ,0 ,-0.4230769232855405848,-1.2692307758020089369,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,-0.0001153846151285387,0.99999999260355010299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609476608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -77 ,0 ,0.42307692328554058480,-1.2692307758020089369,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,-0.0001153846151285387,0.99999999260355010299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609476608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -78 ,0 ,1.26923077486345059483,-1.2692307833125162641,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,-0.0001153846151285696,0.99999998668639022980,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001464497036067,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -79 ,0 ,2.11538464146184290726,-1.2692307983334234489,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,-0.0001153846151285235,0.99999997485207092751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272227745,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -80 ,0 ,2.96153853309437264940,-1.2692308208640217248,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,-0.0001153846151286018,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -81 ,0 ,3.80769245977470038866,-1.2692308509049472498,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,-0.0001153846151285300,0.99999993343195348050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -82 ,0 ,4.65384643151648269565,-1.2692308884560012938,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,-0.0001153846151285651,0.99999990384615555782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -83 ,0 ,5.50000045833337924960,-1.2692309335170413042,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,-0.0001153846151285639,0.99999986834319853912,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250062428,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -84 ,0 ,-5.5000004583333792496,-0.4230769761707330878,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,-0.0000384615384519990,0.99999987426035752413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -85 ,0 ,-4.6538464315164818074,-0.4230769611497329774,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,-0.0000384615384520586,0.99999990976331487591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -86 ,0 ,-3.8076924597746999445,-0.4230769486331131812,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,-0.0000384615384520790,0.99999993934911279858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597948297,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -87 ,0 ,-2.9615385330943735375,-0.4230769386190170178,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,-0.0000384615384520223,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -88 ,0 ,-2.1153846414618420190,-0.4230769311089396800,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,-0.0000384615384520199,0.99999998076923068968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -89 ,0 ,-1.2692307748634503727,-0.4230769261018929583,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,-0.0000384615384519930,0.99999999260355010299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609476608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -90 ,0 ,-0.4230769232855404737,-0.4230769235988797727,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,-0.0000384615384520350,0.99999999852070975414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,0 ,0.42307692328554047378,-0.4230769235988797727,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,-0.0000384615384520350,0.99999999852070975414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -92 ,0 ,1.26923077486345037279,-0.4230769261018929583,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,-0.0000384615384519930,0.99999999260355010299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609476608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -93 ,0 ,2.11538464146184290726,-0.4230769311089396800,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,-0.0000384615384520199,0.99999998076923068968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -94 ,0 ,2.96153853309437353757,-0.4230769386190170178,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,-0.0000384615384520223,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -95 ,0 ,3.80769245977469994457,-0.4230769486331131812,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,-0.0000384615384520790,0.99999993934911279858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597948297,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -96 ,0 ,4.65384643151648269565,-0.4230769611497329774,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,-0.0000384615384520586,0.99999990976331487591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -97 ,0 ,5.50000045833337924960,-0.4230769761707330878,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,-0.0000384615384519990,0.99999987426035752413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -98 ,0 ,-5.5000004583333801377,0.42307697617006650991,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,0.00003846153845211523,0.99999987426035752413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -99 ,0 ,-4.6538464315164826956,0.42307696114936699238,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,0.00003846153845211116,0.99999990976331487591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -100 ,0 ,-3.8076924597747003886,0.42307694863232775395,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,0.00003846153845209075,0.99999993934911279858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597948297,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -101 ,0 ,-2.9615385330943735375,0.42307693861944162261,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,0.00003846153845209196,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047473992,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -102 ,0 ,-2.1153846414618424631,0.42307693110886901433,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,0.00003846153845209435,0.99999998076923057865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384650096,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -103 ,0 ,-1.2692307748634501507,0.42307692610154273848,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,0.00003846153845212127,0.99999999260355010299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609476608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -104 ,0 ,-0.4230769232855405848,0.42307692359833443118,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,0.00003846153845213473,0.99999999852070975414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -105 ,0 ,0.42307692328554058480,0.42307692359833443118,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,0.00003846153845213473,0.99999999852070975414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -106 ,0 ,1.26923077486345015074,0.42307692610154273848,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,0.00003846153845212127,0.99999999260355010299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609476608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -107 ,0 ,2.11538464146184290726,0.42307693110886901433,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,0.00003846153845209435,0.99999998076923057865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384650096,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -108 ,0 ,2.96153853309437353757,0.42307693861944162261,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,0.00003846153845209196,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047473992,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -109 ,0 ,3.80769245977470038866,0.42307694863232775395,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,0.00003846153845209075,0.99999993934911279858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597948297,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -110 ,0 ,4.65384643151648269565,0.42307696114936699238,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,0.00003846153845211116,0.99999990976331487591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036254910,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -111 ,0 ,5.50000045833338013778,0.42307697617006650991,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,0.00003846153845211523,0.99999987426035752413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -112 ,0 ,-5.5000004583333801377,1.26923093351743565548,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,0.00011538461512864165,0.99999986834319842810,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250044238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -113 ,0 ,-4.6538464315164826956,1.26923088845508447164,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,0.00011538461512860250,0.99999990384615555782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923887128,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -114 ,0 ,-3.8076924597747008327,1.26923085090431331245,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,0.00011538461512862007,0.99999993343195348050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -115 ,0 ,-2.9615385330943726494,1.26923082086366556531,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,0.00011538461512860373,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -116 ,0 ,-2.1153846414618424631,1.26923079833272201000,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,0.00011538461512858858,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272227745,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -117 ,0 ,-1.2692307748634503727,1.26923078331241612204,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,0.00011538461512859796,0.99999998668639034082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001464497054257,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -118 ,0 ,-0.4230769232855404737,1.26923077580181709045,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,0.00011538461512861142,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609440228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -119 ,0 ,0.42307692328554047378,1.26923077580181709045,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,0.00011538461512861142,0.99999999260354999197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000813609440228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -120 ,0 ,1.26923077486345037279,1.26923078331241612204,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,0.00011538461512859796,0.99999998668639034082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001464497054257,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -121 ,0 ,2.11538464146184335135,1.26923079833272201000,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,0.00011538461512858858,0.99999997485207103853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272227745,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -122 ,0 ,2.96153853309437264940,1.26923082086366556531,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,0.00011538461512860373,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -123 ,0 ,3.80769245977470083275,1.26923085090431331245,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,0.00011538461512862007,0.99999993343195348050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -124 ,0 ,4.65384643151648269565,1.26923088845508447164,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,0.00011538461512860250,0.99999990384615555782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923887128,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -125 ,0 ,5.50000045833338013778,1.26923093351743565548,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,0.00011538461512864165,0.99999986834319842810,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250044238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -126 ,0 ,-5.5000004583333783614,2.11538490588460970087,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,0.00019230769112236695,0.99999985650888056909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -127 ,0 ,-4.6538464315164818074,2.11538483078186390073,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,0.00019230769112240665,0.99999989201183714371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -128 ,0 ,-3.8076924597746999445,2.11538476819676013462,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,0.00019230769112235114,0.99999992159763484433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -129 ,0 ,-2.9615385330943726494,2.11538471812903727808,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,0.00019230769112239321,0.99999994526627289381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -130 ,0 ,-2.1153846414618420190,2.11538468057764994512,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,0.00019230769112239852,0.99999996301775184726,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -131 ,0 ,-1.2692307748634501507,2.11538465554311549965,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,0.00019230769112242831,0.99999997485207092751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272227745,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -132 ,0 ,-0.4230769232855405848,2.11538464302670048411,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,0.00019230769112238627,0.99999998076923068968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384650096,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -133 ,0 ,0.42307692328554058480,2.11538464302670048411,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,0.00019230769112238627,0.99999998076923068968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002115384650096,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -134 ,0 ,1.26923077486345015074,2.11538465554311549965,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,0.00019230769112242831,0.99999997485207092751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002766272227745,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -135 ,0 ,2.11538464146184290726,2.11538468057764994512,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,0.00019230769112239852,0.99999996301775184726,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -136 ,0 ,2.96153853309437264940,2.11538471812903727808,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,0.00019230769112239321,0.99999994526627289381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -137 ,0 ,3.80769245977469994457,2.11538476819676013462,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,0.00019230769112235114,0.99999992159763484433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -138 ,0 ,4.65384643151648269565,2.11538483078186390073,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,0.00019230769112240665,0.99999989201183714371,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -139 ,0 ,5.50000045833337836143,2.11538490588460970087,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,0.00019230769112236695,0.99999985650888056909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -140 ,0 ,-5.5000004583333792496,2.96153890328686753008,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,0.00026923076597822981,0.99999983875740361405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -141 ,0 ,-4.6538464315164818074,2.96153879814303078177,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,0.00026923076597823729,0.99999987426035963355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -142 ,0 ,-3.8076924597747003886,2.96153871052337480662,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,0.00026923076597829860,0.99999990384615666805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -143 ,0 ,-2.9615385330943730934,2.96153864042818826263,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,0.00026923076597825008,0.99999992751479449548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007973373176355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -144 ,0 ,-2.1153846414618424631,2.96153858785667356556,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,0.00026923076597820276,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -145 ,0 ,-1.2692307748634503727,2.96153855280847366771,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,0.00026923076597825301,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935033451,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -146 ,0 ,-0.4230769232855405848,2.96153853528438304465,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,0.00026923076597828689,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047437613,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -147 ,0 ,0.42307692328554058480,2.96153853528438304465,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,0.00026923076597828689,0.99999996301775140317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004068047437613,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -148 ,0 ,1.26923077486345037279,2.96153855280847366771,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,0.00026923076597825301,0.99999995710059186304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004718935033451,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -149 ,0 ,2.11538464146184290726,2.96153858785667356556,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,0.00026923076597820276,0.99999994526627300484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -150 ,0 ,2.96153853309437309349,2.96153864042818826263,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,0.00026923076597825008,0.99999992751479449548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007973373176355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -151 ,0 ,3.80769245977470038866,2.96153871052337480662,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,0.00026923076597829860,0.99999990384615666805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -152 ,0 ,4.65384643151648269565,2.96153879814303078177,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,0.00026923076597823729,0.99999987426035963355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -153 ,0 ,5.50000045833337924960,2.96153890328686753008,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,0.00026923076597822981,0.99999983875740361405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -154 ,0 ,-5.5000004583333792496,3.80769293573597256141,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,0.00034615383924101693,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -155 ,0 ,-4.6538464315164826956,3.80769280055154091257,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,0.00034615383924106821,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -156 ,0 ,-3.8076924597747003886,3.80769268789815695797,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,0.00034615383924104181,0.99999988017751950675,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -157 ,0 ,-2.9615385330943726494,3.80769259777499069485,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,0.00034615383924101661,0.99999990384615666805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -158 ,0 ,-2.1153846414618420190,3.80769253018297071378,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,0.00034615383924101015,0.99999992159763473331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260844953,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -159 ,0 ,-1.2692307748634503727,3.80769248512166180731,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,0.00034615383924104284,0.99999993343195348050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -160 ,0 ,-0.4230769232855405848,3.80769246259100713203,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,0.00034615383924105921,0.99999993934911290960,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597966487,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -161 ,0 ,0.42307692328554058480,3.80769246259100713203,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,0.00034615383924105921,0.99999993934911290960,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006671597966487,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -162 ,0 ,1.26923077486345037279,3.80769248512166180731,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,0.00034615383924104284,0.99999993343195348050,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -163 ,0 ,2.11538464146184290726,3.80769253018297071378,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,0.00034615383924101015,0.99999992159763473331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008624260844953,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -164 ,0 ,2.96153853309437264940,3.80769259777499069485,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,0.00034615383924101661,0.99999990384615666805,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -165 ,0 ,3.80769245977470038866,3.80769268789815695797,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,0.00034615383924104181,0.99999988017751950675,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -166 ,0 ,4.65384643151648269565,3.80769280055154091257,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,0.00034615383924106821,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912886325,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -167 ,0 ,5.50000045833337924960,3.80769293573597256141,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,0.00034615383924101693,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -168 ,0 ,-5.5000004583333783614,4.65384701324748473183,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,0.00042307691045562618,0.99999978550297352608,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677968503,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -169 ,0 ,-4.6538464315164818074,4.65384684802192705177,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,0.00042307691045559263,0.99999982100592765821,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351465785,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -170 ,0 ,-3.8076924597747003886,4.65384671033374619497,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,0.00042307691045557495,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -171 ,0 ,-2.9615385330943726494,4.65384660018385254431,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,0.00042307691045557306,0.99999987426035963355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -172 ,0 ,-2.1153846414618424631,4.65384651757084188972,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,0.00042307691045555197,0.99999989201183725473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -173 ,0 ,-1.2692307748634503727,4.65384646249572675458,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,0.00042307691045560797,0.99999990384615544680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -174 ,0 ,-0.4230769232855404737,4.65384643495783301148,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,0.00042307691045553083,0.99999990976331487591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -175 ,0 ,0.42307692328554047378,4.65384643495783301148,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,0.00042307691045553083,0.99999990976331487591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0009926036236720,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -176 ,0 ,1.26923077486345037279,4.65384646249572675458,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,0.00042307691045560797,0.99999990384615544680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -177 ,0 ,2.11538464146184290726,4.65384651757084188972,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,0.00042307691045555197,0.99999989201183725473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -178 ,0 ,2.96153853309437264940,4.65384660018385254431,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,0.00042307691045557306,0.99999987426035963355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -179 ,0 ,3.80769245977470038866,4.65384671033374619497,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,0.00042307691045557495,0.99999985059172302737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0016434912904514,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -180 ,0 ,4.65384643151648180747,4.65384684802192705177,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,0.00042307691045559263,0.99999982100592765821,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0019689351465785,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -181 ,0 ,5.50000045833337836143,4.65384701324748473183,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,0.00042307691045562618,0.99999978550297352608,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677968503,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -182 ,0 ,-5.5000004583333783614,5.50000114583286769942,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916669531,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -183 ,0 ,-4.6538464315164818074,5.50000095056690607719,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00049999997916669086,0.99999978550297363710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -184 ,0 ,-3.8076924597747008327,5.50000078784517221208,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00049999997916673737,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -185 ,0 ,-2.9615385330943730934,5.50000065766753287732,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00049999997916670615,0.99999983875740361405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -186 ,0 ,-2.1153846414618424631,5.50000056003459647513,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,0.00049999997916674637,0.99999985650888056909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -187 ,0 ,-1.2692307748634503727,5.50000049494621290335,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,0.00049999997916671179,0.99999986834319842810,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250062428,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -188 ,0 ,-0.4230769232855405292,5.50000046240107032247,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,0.00049999997916665508,0.99999987426035763515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -189 ,0 ,0.42307692328554052929,5.50000046240107032247,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,0.00049999997916665508,0.99999987426035763515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0013831362393830,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -190 ,0 ,1.26923077486345037279,5.50000049494621290335,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,0.00049999997916671179,0.99999986834319842810,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0014482250062428,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -191 ,0 ,2.11538464146184290726,5.50000056003459647513,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,0.00049999997916674637,0.99999985650888056909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -192 ,0 ,2.96153853309437309349,5.50000065766753287732,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,0.00049999997916670615,0.99999983875740361405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -193 ,0 ,3.80769245977470083275,5.50000078784517221208,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,0.00049999997916673737,0.99999981508876800706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -194 ,0 ,4.65384643151648269565,5.50000095056690607719,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,0.00049999997916669086,0.99999978550297363710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -195 ,0 ,5.50000045833337836143,5.50000114583286769942,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,0.00049999997916669531,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -196 ,0 ,-5.5000004583333783614,-5.5000011458332416225,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,-0.0004999999791666126,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -197 ,0 ,-4.6538464315164800311,-5.5000009505676263898,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,-0.0004999999791666171,0.99999978550297363710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -198 ,0 ,-3.8076924597747008327,-5.5000007878453027743,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,-0.0004999999791666261,0.99999981508876789604,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -199 ,0 ,-2.9615385330943735375,-5.5000006576681395031,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,-0.0004999999791666953,0.99999983875740372507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/MatrixSource_distr_seeded.rayx.csv b/Intern/RAY-Core/tests/output/MatrixSource_distr_seeded.rayx.csv deleted file mode 100644 index 5feb3edcd..000000000 --- a/Intern/RAY-Core/tests/output/MatrixSource_distr_seeded.rayx.csv +++ /dev/null @@ -1,401 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.5325000416666707536,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,159.308596877220224996,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -0 ,1 ,-0.5325000416666707536,0.48000010416668248414,1000.00000000000000000,0.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,159.308596877220224996,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -1 ,0 ,-0.4505769483196802038,0.48000008641519859020,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,36.6869575429444623182,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -1 ,1 ,-0.4505769483196802038,0.48000008641519859020,1000.00000000000000000,0.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,36.6869575429444623182,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -2 ,0 ,-0.3686538599795182169,0.48000007162229607615,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,155.938199524753315472,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -2 ,1 ,-0.3686538599795182169,0.48000007162229607615,1000.00000000000000000,0.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,155.938199524753315472,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -3 ,0 ,-0.2867307757358520947,0.48000005978797466443,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,119.370032315927105059,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -3 ,1 ,-0.2867307757358520947,0.48000005978797466443,1000.00000000000000000,0.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,119.370032315927105059,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -4 ,0 ,-0.2048076946783493057,0.48000005091223385544,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,0.00049999997916666690,0.99999985650888079113,89.1665515231822070063,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -4 ,1 ,-0.2048076946783493057,0.48000005091223385544,1000.00000000000000000,0.00000000000000000000,-0.0001923076670839029,0.00049999997916666690,0.99999985650888079113,89.1665515231822070063,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -5 ,0 ,-0.1228846158966773044,0.48000004499507348265,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,0.00049999997916666690,0.99999986834319865014,19.9949841061595314783,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -5 ,1 ,-0.1228846158966773044,0.48000004499507348265,1000.00000000000000000,0.00000000000000000000,-0.0001153846007055078,0.00049999997916666690,0.99999986834319865014,19.9949841061595314783,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -6 ,0 ,-0.0409615384805036911,0.48000004203649332401,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,0.00049999997916666690,0.99999987426035774618,91.8497775895171173488,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -6 ,1 ,-0.0409615384805036911,0.48000004203649332401,1000.00000000000000000,0.00000000000000000000,-0.0000384615336443635,0.00049999997916666690,0.99999987426035774618,91.8497775895171173488,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -7 ,0 ,0.04096153848050369111,0.48000004203649332401,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,0.00049999997916666690,0.99999987426035774618,66.7417222789352990730,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -7 ,1 ,0.04096153848050369111,0.48000004203649332401,1000.00000000000000000,0.00000000000000000000,0.00003846153364436359,0.00049999997916666690,0.99999987426035774618,66.7417222789352990730,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -8 ,0 ,0.12288461589667730444,0.48000004499507348265,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,0.00049999997916666690,0.99999986834319865014,28.5733628618934574205,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -8 ,1 ,0.12288461589667730444,0.48000004499507348265,1000.00000000000000000,0.00000000000000000000,0.00011538460070550785,0.00049999997916666690,0.99999986834319865014,28.5733628618934574205,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -9 ,0 ,0.20480769467834933350,0.48000005091223385544,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,0.00049999997916666690,0.99999985650888079113,130.177694682538913184,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -9 ,1 ,0.20480769467834933350,0.48000005091223385544,1000.00000000000000000,0.00000000000000000000,0.00019230766708390299,0.00049999997916666690,0.99999985650888079113,130.177694682538913184,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -10 ,0 ,0.28673077573585209476,0.48000005978797466443,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,0.00049999997916666690,0.99999983875740383609,11.2823152940911963781,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -10 ,1 ,0.28673077573585209476,0.48000005978797466443,1000.00000000000000000,0.00000000000000000000,0.00026923073232438285,0.00049999997916666690,0.99999983875740383609,11.2823152940911963781,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -11 ,0 ,0.36865385997951821694,0.48000007162229607615,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,0.00049999997916666690,0.99999981508876811808,144.399754317570426564,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -11 ,1 ,0.36865385997951821694,0.48000007162229607615,1000.00000000000000000,0.00000000000000000000,0.00034615379597178157,0.00049999997916666690,0.99999981508876811808,144.399754317570426564,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -12 ,0 ,0.45057694831968025939,0.48000008641519859020,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,0.00049999997916666690,0.99999978550297374813,187.710542880862618630,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -12 ,1 ,0.45057694831968025939,0.48000008641519859020,1000.00000000000000000,0.00000000000000000000,0.00042307685757093292,0.00049999997916666690,0.99999978550297374813,187.710542880862618630,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -13 ,0 ,0.53250004166667075367,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,0.00049999997916666690,0.99999975000002094827,0.15575294386496604803,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -13 ,1 ,0.53250004166667075367,0.48000010416668248414,1000.00000000000000000,0.00000000000000000000,0.00049999991666667084,0.00049999997916666690,0.99999975000002094827,0.15575294386496604803,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -14 ,0 ,-0.5325000416666708646,0.40615392428122731871,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,0.00042307691045554557,0.99999978550297374813,198.442312888438408435,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -14 ,1 ,-0.5325000416666708646,0.40615392428122731871,1000.00000000000000000,0.00000000000000000000,-0.0004999999344181487,0.00042307691045554557,0.99999978550297374813,198.442312888438408435,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -15 ,0 ,-0.4505769483196802593,0.40615390926074129707,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,0.00042307691045554557,0.99999982100592776923,123.496301500940774076,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -15 ,1 ,-0.4505769483196802593,0.40615390926074129707,1000.00000000000000000,0.00000000000000000000,-0.0004230768725914143,0.00042307691045554557,0.99999982100592776923,123.496301500940774076,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -16 ,0 ,-0.3686538599795182169,0.40615389674367025074,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,0.00042307691045554557,0.99999985059172324941,122.330632508343711606,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -16 ,1 ,-0.3686538599795182169,0.40615389674367025074,1000.00000000000000000,0.00000000000000000000,-0.0003461538082612664,0.00042307691045554557,0.99999985059172324941,122.330632508343711606,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -17 ,0 ,-0.2867307757358520392,0.40615388673001384667,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,0.00042307691045554557,0.99999987426035974458,1.41326170447591259460,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -17 ,1 ,-0.2867307757358520392,0.40615388673001384667,1000.00000000000000000,0.00000000000000000000,-0.0002692307418828711,0.00042307691045554557,0.99999987426035974458,1.41326170447591259460,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -18 ,0 ,-0.2048076946783493057,0.40615387921977180729,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,0.00042307691045554557,0.99999989201183736575,4.61248569297894928098,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -18 ,1 ,-0.2048076946783493057,0.40615387921977180729,1000.00000000000000000,0.00000000000000000000,-0.0001923076739113946,0.00042307691045554557,0.99999989201183736575,4.61248569297894928098,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -19 ,0 ,-0.1228846158966773183,0.40615387421294396608,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,0.00042307691045554557,0.99999990384615566885,104.954932375102046648,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -19 ,1 ,-0.1228846158966773183,0.40615387421294396608,1000.00000000000000000,0.00000000000000000000,-0.0001153846048020029,0.00042307691045554557,0.99999990384615566885,104.954932375102046648,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -20 ,0 ,-0.0409615384805036841,0.40615387170952998996,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,0.00042307691045554557,0.99999990976331498693,79.9721955507928896622,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -20 ,1 ,-0.0409615384805036841,0.40615387170952998996,1000.00000000000000000,0.00000000000000000000,-0.0000384615350098619,0.00042307691045554557,0.99999990976331498693,79.9721955507928896622,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -21 ,0 ,0.04096153848050368417,0.40615387170952998996,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,0.00042307691045554557,0.99999990976331498693,9.33313365311667553214,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -21 ,1 ,0.04096153848050368417,0.40615387170952998996,1000.00000000000000000,0.00000000000000000000,0.00003846153500986195,0.00042307691045554557,0.99999990976331498693,9.33313365311667553214,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -22 ,0 ,0.12288461589667731832,0.40615387421294396608,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,0.00042307691045554557,0.99999990384615566885,194.751104524999647082,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -22 ,1 ,0.12288461589667731832,0.40615387421294396608,1000.00000000000000000,0.00000000000000000000,0.00011538460480200291,0.00042307691045554557,0.99999990384615566885,194.751104524999647082,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -23 ,0 ,0.20480769467834933350,0.40615387921977180729,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,0.00042307691045554557,0.99999989201183736575,46.5542680692286907628,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -23 ,1 ,0.20480769467834933350,0.40615387921977180729,1000.00000000000000000,0.00000000000000000000,0.00019230767391139474,0.00042307691045554557,0.99999989201183736575,46.5542680692286907628,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -24 ,0 ,0.28673077573585203925,0.40615388673001384667,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,0.00042307691045554557,0.99999987426035974458,18.1212870911977468324,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -24 ,1 ,0.28673077573585203925,0.40615388673001384667,1000.00000000000000000,0.00000000000000000000,0.00026923074188287118,0.00042307691045554557,0.99999987426035974458,18.1212870911977468324,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -25 ,0 ,0.36865385997951821694,0.40615389674367025074,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,0.00042307691045554557,0.99999985059172324941,123.677202948293924578,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -25 ,1 ,0.36865385997951821694,0.40615389674367025074,1000.00000000000000000,0.00000000000000000000,0.00034615380826126648,0.00042307691045554557,0.99999985059172324941,123.677202948293924578,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -26 ,0 ,0.45057694831968025939,0.40615390926074129707,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,0.00042307691045554557,0.99999982100592776923,76.4923980172007418332,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -26 ,1 ,0.45057694831968025939,0.40615390926074129707,1000.00000000000000000,0.00000000000000000000,0.00042307687259141442,0.00042307691045554557,0.99999982100592776923,76.4923980172007418332,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -27 ,0 ,0.53250004166667086469,0.40615392428122731871,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,0.00042307691045554557,0.99999978550297374813,196.646177209132872576,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -27 ,1 ,0.53250004166667086469,0.40615392428122731871,1000.00000000000000000,0.00000000000000000000,0.00049999993441814875,0.00042307691045554557,0.99999978550297374813,196.646177209132872576,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -28 ,0 ,-0.5325000416666708646,0.33230774940260132677,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,0.00034615383924101053,0.99999981508876811808,93.3525797197019073792,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -28 ,1 ,-0.5325000416666708646,0.33230774940260132677,1000.00000000000000000,0.00000000000000000000,-0.0004999999492110472,0.00034615383924101053,0.99999981508876811808,93.3525797197019073792,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -29 ,0 ,-0.4505769483196802038,0.33230773711311301088,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,0.00034615383924101053,0.99999985059172324941,171.988080668260380434,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -29 ,1 ,-0.4505769483196802038,0.33230773711311301088,1000.00000000000000000,0.00000000000000000000,-0.0004230768851084824,0.00034615383924101053,0.99999985059172324941,171.988080668260380434,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -30 ,0 ,-0.3686538599795182169,0.33230772687187326575,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,0.00034615383924101053,0.99999988017751961777,136.061507774531264658,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -30 ,1 ,-0.3686538599795182169,0.33230772687187326575,1000.00000000000000000,0.00000000000000000000,-0.0003461538185025041,0.00034615383924101053,0.99999988017751961777,136.061507774531264658,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -31 ,0 ,-0.2867307757358520392,0.33230771867888186932,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,0.00034615383924101053,0.99999990384615689009,90.0998506904812188622,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -31 ,1 ,-0.2867307757358520392,0.33230771867888186932,1000.00000000000000000,0.00000000000000000000,-0.0002692307498482782,0.00034615383924101053,0.99999990384615689009,90.0998506904812188622,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -32 ,0 ,-0.2048076946783492779,0.33230771253413848853,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,0.00034615383924101053,0.99999992159763495536,2.65299161026556795661,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -32 ,1 ,-0.2048076946783492779,0.33230771253413848853,1000.00000000000000000,0.00000000000000000000,-0.0001923076796009712,0.00034615383924101053,0.99999992159763495536,2.65299161026556795661,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -33 ,0 ,-0.1228846158966773044,0.33230770843764306787,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,0.00034615383924101053,0.99999993343195370254,188.440350859528479077,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -33 ,1 ,-0.1228846158966773044,0.33230770843764306787,1000.00000000000000000,0.00000000000000000000,-0.0001153846082157488,0.00034615383924101053,0.99999993343195370254,188.440350859528479077,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -34 ,0 ,-0.0409615384805036841,0.33230770638939532979,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,0.00034615383924101053,0.99999993934911302062,112.657642996091780673,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -34 ,1 ,-0.0409615384805036841,0.33230770638939532979,1000.00000000000000000,0.00000000000000000000,-0.0000384615361477772,0.00034615383924101053,0.99999993934911302062,112.657642996091780673,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -35 ,0 ,0.04096153848050368417,0.33230770638939532979,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,0.00034615383924101053,0.99999993934911302062,77.0833012361739093876,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -35 ,1 ,0.04096153848050368417,0.33230770638939532979,1000.00000000000000000,0.00000000000000000000,0.00003846153614777726,0.00034615383924101053,0.99999993934911302062,77.0833012361739093876,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -36 ,0 ,0.12288461589667730444,0.33230770843764306787,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,0.00034615383924101053,0.99999993343195370254,3.19325146339676591011,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -36 ,1 ,0.12288461589667730444,0.33230770843764306787,1000.00000000000000000,0.00000000000000000000,0.00011538460821574884,0.00034615383924101053,0.99999993343195370254,3.19325146339676591011,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -37 ,0 ,0.20480769467834933350,0.33230771253413848853,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,0.00034615383924101053,0.99999992159763495536,46.1787641621611015807,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -37 ,1 ,0.20480769467834933350,0.33230771253413848853,1000.00000000000000000,0.00000000000000000000,0.00019230767960097126,0.00034615383924101053,0.99999992159763495536,46.1787641621611015807,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -38 ,0 ,0.28673077573585203925,0.33230771867888186932,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,0.00034615383924101053,0.99999990384615689009,48.2050938178331307426,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -38 ,1 ,0.28673077573585203925,0.33230771867888186932,1000.00000000000000000,0.00000000000000000000,0.00026923074984827827,0.00034615383924101053,0.99999990384615689009,48.2050938178331307426,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -39 ,0 ,0.36865385997951821694,0.33230772687187326575,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,0.00034615383924101053,0.99999988017751961777,136.652704872342923181,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -39 ,1 ,0.36865385997951821694,0.33230772687187326575,1000.00000000000000000,0.00000000000000000000,0.00034615381850250414,0.00034615383924101053,0.99999988017751961777,136.652704872342923181,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -40 ,0 ,0.45057694831968025939,0.33230773711311301088,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,0.00034615383924101053,0.99999985059172324941,121.999331359285719145,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -40 ,1 ,0.45057694831968025939,0.33230773711311301088,1000.00000000000000000,0.00000000000000000000,0.00042307688510848247,0.00034615383924101053,0.99999985059172324941,121.999331359285719145,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -41 ,0 ,0.53250004166667086469,0.33230774940260132677,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,0.00034615383924101053,0.99999981508876811808,166.638982660751537423,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -41 ,1 ,0.53250004166667086469,0.33230774940260132677,1000.00000000000000000,0.00000000000000000000,0.00049999994921104721,0.00034615383924101053,0.99999981508876811808,166.638982660751537423,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -42 ,0 ,-0.5325000416666708646,0.25846157862047175468,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,0.00026923076597822786,0.99999983875740383609,34.6729294477666059037,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -42 ,1 ,-0.5325000416666708646,0.25846157862047175468,1000.00000000000000000,0.00000000000000000000,-0.0004999999610453660,0.00026923076597822786,0.99999983875740383609,34.6729294477666059037,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -43 ,0 ,-0.4505769483196802038,0.25846156906198097802,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,0.00026923076597822786,0.99999987426035974458,78.2121218923041823245,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -43 ,1 ,-0.4505769483196802038,0.25846156906198097802,1000.00000000000000000,0.00000000000000000000,-0.0004230768951221369,0.00026923076597822786,0.99999987426035974458,78.2121218923041823245,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -44 ,0 ,-0.3686538599795182169,0.25846156109657242305,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,0.00026923076597822786,0.99999990384615689009,36.4472173704875643807,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -44 ,1 ,-0.3686538599795182169,0.25846156109657242305,1000.00000000000000000,0.00000000000000000000,-0.0003461538266954942,0.00026923076597822786,0.99999990384615689009,36.4472173704875643807,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -45 ,0 ,-0.2867307757358520947,0.25846155472424586774,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,0.00026923076597822786,0.99999992751479460650,151.072281773917438840,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -45 ,1 ,-0.2867307757358520947,0.25846155472424586774,1000.00000000000000000,0.00000000000000000000,-0.0002692307562206040,0.00026923076597822786,0.99999992751479460650,151.072281773917438840,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -46 ,0 ,-0.2048076946783492779,0.25846154994500109003,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,0.00026923076597822786,0.99999994526627311586,85.0311754935028005775,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -46 ,1 ,-0.2048076946783492779,0.25846154994500109003,1000.00000000000000000,0.00000000000000000000,-0.0001923076841526324,0.00026923076597822786,0.99999994526627311586,85.0311754935028005775,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -47 ,0 ,-0.1228846158966773183,0.25846154675883803442,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,0.00026923076597822786,0.99999995710059208509,41.5883327465477208306,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -47 ,1 ,-0.1228846158966773183,0.25846154675883803442,1000.00000000000000000,0.00000000000000000000,-0.0001153846109467456,0.00026923076597822786,0.99999995710059208509,41.5883327465477208306,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -48 ,0 ,-0.0409615384805036841,0.25846154516575653437,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,0.00026923076597822786,0.99999996301775162521,113.540065454677701950,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -48 ,1 ,-0.0409615384805036841,0.25846154516575653437,1000.00000000000000000,0.00000000000000000000,-0.0000384615370581095,0.00026923076597822786,0.99999996301775162521,113.540065454677701950,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -49 ,0 ,0.04096153848050368417,0.25846154516575653437,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,0.00026923076597822786,0.99999996301775162521,6.26265835162779804790,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -49 ,1 ,0.04096153848050368417,0.25846154516575653437,1000.00000000000000000,0.00000000000000000000,0.00003846153705810951,0.00026923076597822786,0.99999996301775162521,6.26265835162779804790,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -50 ,0 ,0.12288461589667731832,0.25846154675883803442,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,0.00026923076597822786,0.99999995710059208509,168.456954594807911007,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -50 ,1 ,0.12288461589667731832,0.25846154675883803442,1000.00000000000000000,0.00000000000000000000,0.00011538461094674560,0.00026923076597822786,0.99999995710059208509,168.456954594807911007,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -51 ,0 ,0.20480769467834933350,0.25846154994500109003,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,0.00026923076597822786,0.99999994526627311586,89.9508258071613653328,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -51 ,1 ,0.20480769467834933350,0.25846154994500109003,1000.00000000000000000,0.00000000000000000000,0.00019230768415263250,0.00026923076597822786,0.99999994526627311586,89.9508258071613653328,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -52 ,0 ,0.28673077573585209476,0.25846155472424586774,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,0.00026923076597822786,0.99999992751479460650,79.0300463044620187247,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -52 ,1 ,0.28673077573585209476,0.25846155472424586774,1000.00000000000000000,0.00000000000000000000,0.00026923075622060400,0.00026923076597822786,0.99999992751479460650,79.0300463044620187247,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -53 ,0 ,0.36865385997951821694,0.25846156109657242305,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,0.00026923076597822786,0.99999990384615689009,185.331772450667756402,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -53 ,1 ,0.36865385997951821694,0.25846156109657242305,1000.00000000000000000,0.00000000000000000000,0.00034615382669549426,0.00026923076597822786,0.99999990384615689009,185.331772450667756402,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -54 ,0 ,0.45057694831968025939,0.25846156906198097802,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,0.00026923076597822786,0.99999987426035974458,145.454399228434624546,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -54 ,1 ,0.45057694831968025939,0.25846156906198097802,1000.00000000000000000,0.00000000000000000000,0.00042307689512213698,0.00026923076597822786,0.99999987426035974458,145.454399228434624546,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -55 ,0 ,0.53250004166667086469,0.25846157862047175468,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,0.00026923076597822786,0.99999983875740383609,65.3081542964345231894,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -55 ,1 ,0.53250004166667086469,0.25846157862047175468,1000.00000000000000000,0.00000000000000000000,0.00049999996104536600,0.00026923076597822786,0.99999983875740383609,65.3081542964345231894,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -56 ,0 ,-0.5325000416666708646,0.18461541102450593210,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,0.00019230769112236383,0.99999985650888079113,114.088795220965707244,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -56 ,1 ,-0.5325000416666708646,0.18461541102450593210,1000.00000000000000000,0.00000000000000000000,-0.0004999999699211052,0.00019230769112236383,0.99999985650888079113,114.088795220965707244,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -57 ,0 ,-0.4505769483196802038,0.18461540419701261139,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,0.00019230769112236383,0.99999989201183736575,104.166853219309558653,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -57 ,1 ,-0.4505769483196802038,0.18461540419701261139,1000.00000000000000000,0.00000000000000000000,-0.0004230769026323778,0.00019230769112236383,0.99999989201183736575,104.166853219309558653,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -58 ,0 ,-0.3686538599795182169,0.18461539850743510782,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,0.00019230769112236383,0.99999992159763495536,192.234405780265660723,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -58 ,1 ,-0.3686538599795182169,0.18461539850743510782,1000.00000000000000000,0.00000000000000000000,-0.0003461538328402369,0.00019230769112236383,0.99999992159763495536,192.234405780265660723,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -59 ,0 ,-0.2867307757358520947,0.18461539395577333810,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,0.00019230769112236383,0.99999994526627311586,168.906770127105232859,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -59 ,1 ,-0.2867307757358520947,0.18461539395577333810,1000.00000000000000000,0.00000000000000000000,-0.0002692307609998483,0.00019230769112236383,0.99999994526627311586,168.906770127105232859,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -60 ,0 ,-0.2048076946783493057,0.18461539054202713572,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,0.00019230769112236383,0.99999996301775195828,149.464022216727954628,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -60 ,1 ,-0.2048076946783493057,0.18461539054202713572,1000.00000000000000000,0.00000000000000000000,-0.0001923076875663784,0.00019230769112236383,0.99999996301775195828,149.464022216727954628,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -61 ,0 ,-0.1228846158966773044,0.18461538826619638964,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,0.00019230769112236383,0.99999997485207114955,107.938425919958007170,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -61 ,1 ,-0.1228846158966773044,0.18461538826619638964,1000.00000000000000000,0.00000000000000000000,-0.0001153846129949931,0.00019230769112236383,0.99999997485207114955,107.938425919958007170,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -62 ,0 ,-0.0409615384805036841,0.18461538712828104435,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,0.00019230769112236383,0.99999998076923080070,117.350233699509459484,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -62 ,1 ,-0.0409615384805036841,0.18461538712828104435,1000.00000000000000000,0.00000000000000000000,-0.0000384615377408587,0.00019230769112236383,0.99999998076923080070,117.350233699509459484,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -63 ,0 ,0.04096153848050368417,0.18461538712828104435,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,0.00019230769112236383,0.99999998076923080070,193.051062196737859721,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -63 ,1 ,0.04096153848050368417,0.18461538712828104435,1000.00000000000000000,0.00000000000000000000,0.00003846153774085871,0.00019230769112236383,0.99999998076923080070,193.051062196737859721,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -64 ,0 ,0.12288461589667730444,0.18461538826619638964,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,0.00019230769112236383,0.99999997485207114955,121.406850014209481969,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -64 ,1 ,0.12288461589667730444,0.18461538826619638964,1000.00000000000000000,0.00000000000000000000,0.00011538461299499319,0.00019230769112236383,0.99999997485207114955,121.406850014209481969,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -65 ,0 ,0.20480769467834936126,0.18461539054202713572,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,0.00019230769112236383,0.99999996301775195828,55.1998367661609847800,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -65 ,1 ,0.20480769467834936126,0.18461539054202713572,1000.00000000000000000,0.00000000000000000000,0.00019230768756637849,0.00019230769112236383,0.99999996301775195828,55.1998367661609847800,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -66 ,0 ,0.28673077573585209476,0.18461539395577333810,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,0.00019230769112236383,0.99999994526627311586,59.2547012630977434355,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -66 ,1 ,0.28673077573585209476,0.18461539395577333810,1000.00000000000000000,0.00000000000000000000,0.00026923076099984833,0.00019230769112236383,0.99999994526627311586,59.2547012630977434355,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -67 ,0 ,0.36865385997951821694,0.18461539850743510782,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,0.00019230769112236383,0.99999992159763495536,33.0533882680007735643,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -67 ,1 ,0.36865385997951821694,0.18461539850743510782,1000.00000000000000000,0.00000000000000000000,0.00034615383284023691,0.00019230769112236383,0.99999992159763495536,33.0533882680007735643,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -68 ,0 ,0.45057694831968025939,0.18461540419701261139,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,0.00019230769112236383,0.99999989201183736575,3.12728099597787467800,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -68 ,1 ,0.45057694831968025939,0.18461540419701261139,1000.00000000000000000,0.00000000000000000000,0.00042307690263237795,0.00019230769112236383,0.99999989201183736575,3.12728099597787467800,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -69 ,0 ,0.53250004166667086469,0.18461541102450593210,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,0.00019230769112236383,0.99999985650888079113,84.6802953827847488810,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -69 ,1 ,0.53250004166667086469,0.18461541102450593210,1000.00000000000000000,0.00000000000000000000,0.00049999996992110523,0.00019230769112236383,0.99999985650888079113,84.6802953827847488810,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -70 ,0 ,-0.5325000416666708646,0.11076924570437117478,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,0.00011538461512858444,0.99999986834319865014,78.9763033573926236385,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -70 ,1 ,-0.5325000416666708646,0.11076924570437117478,1000.00000000000000000,0.00000000000000000000,-0.0004999999758382646,0.00011538461512858444,0.99999986834319865014,78.9763033573926236385,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -71 ,0 ,-0.4505769483196802038,0.11076924160787522677,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,0.00011538461512858444,0.99999990384615566885,58.6976352750085439424,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -71 ,1 ,-0.4505769483196802038,0.11076924160787522677,1000.00000000000000000,0.00000000000000000000,-0.0004230769076392051,0.00011538461512858444,0.99999990384615566885,58.6976352750085439424,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -72 ,0 ,-0.3686538599795182169,0.11076923819412874683,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,0.00011538461512858444,0.99999993343195370254,2.81596472552417909085,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -72 ,1 ,-0.3686538599795182169,0.11076923819412874683,1000.00000000000000000,0.00000000000000000000,-0.0003461538369367320,0.00011538461512858444,0.99999993343195370254,2.81596472552417909085,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -73 ,0 ,-0.2867307757358520947,0.11076923546313170720,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,0.00011538461512858444,0.99999995710059208509,39.7684806119111584621,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -73 ,1 ,-0.2867307757358520947,0.11076923546313170720,1000.00000000000000000,0.00000000000000000000,-0.0002692307641860112,0.00011538461512858444,0.99999995710059208509,39.7684806119111584621,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -74 ,0 ,-0.2048076946783493057,0.11076923341488398300,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,0.00011538461512858444,0.99999997485207114955,142.268389822512006048,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -74 ,1 ,-0.2048076946783493057,0.11076923341488398300,1000.00000000000000000,0.00000000000000000000,-0.0001923076898422090,0.00011538461512858444,0.99999997485207114955,142.268389822512006048,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -75 ,0 ,-0.1228846158966773183,0.11076923204938556033,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,0.00011538461512858444,0.99999998668639045185,158.035107086886426941,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -75 ,1 ,-0.1228846158966773183,0.11076923204938556033,1000.00000000000000000,0.00000000000000000000,-0.0001153846143604915,0.00011538461512858444,0.99999998668639045185,158.035107086886426941,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -76 ,0 ,-0.0409615384805036841,0.11076923136663634206,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,0.00011538461512858444,0.99999999260355021402,121.191996084803705002,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -76 ,1 ,-0.0409615384805036841,0.11076923136663634206,1000.00000000000000000,0.00000000000000000000,-0.0000384615381960248,0.00011538461512858444,0.99999999260355021402,121.191996084803705002,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -77 ,0 ,0.04096153848050368417,0.11076923136663634206,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,0.00011538461512858444,0.99999999260355021402,185.260175630743674446,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -77 ,1 ,0.04096153848050368417,0.11076923136663634206,1000.00000000000000000,0.00000000000000000000,0.00003846153819602484,0.00011538461512858444,0.99999999260355021402,185.260175630743674446,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -78 ,0 ,0.12288461589667731832,0.11076923204938556033,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,0.00011538461512858444,0.99999998668639045185,130.215406122201898142,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -78 ,1 ,0.12288461589667731832,0.11076923204938556033,1000.00000000000000000,0.00000000000000000000,0.00011538461436049158,0.00011538461512858444,0.99999998668639045185,130.215406122201898142,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -79 ,0 ,0.20480769467834936126,0.11076923341488398300,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,0.00011538461512858444,0.99999997485207114955,182.991935122523443624,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -79 ,1 ,0.20480769467834936126,0.11076923341488398300,1000.00000000000000000,0.00000000000000000000,0.00019230768984220914,0.00011538461512858444,0.99999997485207114955,182.991935122523443624,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -80 ,0 ,0.28673077573585209476,0.11076923546313170720,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,0.00011538461512858444,0.99999995710059208509,170.007715041285308643,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -80 ,1 ,0.28673077573585209476,0.11076923546313170720,1000.00000000000000000,0.00000000000000000000,0.00026923076418601120,0.00011538461512858444,0.99999995710059208509,170.007715041285308643,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -81 ,0 ,0.36865385997951821694,0.11076923819412874683,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,0.00011538461512858444,0.99999993343195370254,89.8901348677208034132,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -81 ,1 ,0.36865385997951821694,0.11076923819412874683,1000.00000000000000000,0.00000000000000000000,0.00034615383693673202,0.00011538461512858444,0.99999993343195370254,89.8901348677208034132,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -82 ,0 ,0.45057694831968025939,0.11076924160787522677,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,0.00011538461512858444,0.99999990384615566885,19.0820232078158333877,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -82 ,1 ,0.45057694831968025939,0.11076924160787522677,1000.00000000000000000,0.00000000000000000000,0.00042307690763920520,0.00011538461512858444,0.99999990384615566885,19.0820232078158333877,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -83 ,0 ,0.53250004166667086469,0.11076924570437117478,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,0.00011538461512858444,0.99999986834319865014,74.1636510179759085303,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -83 ,1 ,0.53250004166667086469,0.11076924570437117478,1000.00000000000000000,0.00000000000000000000,0.00049999997583826468,0.00011538461512858444,0.99999986834319865014,74.1636510179759085303,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -84 ,0 ,-0.5325000416666708646,0.03692308174973495116,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,0.00003846153845205580,0.99999987426035774618,133.768251429723648016,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -84 ,1 ,-0.5325000416666708646,0.03692308174973495116,1000.00000000000000000,0.00000000000000000000,-0.0004999999787968444,0.00003846153845205580,0.99999987426035774618,133.768251429723648016,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -85 ,0 ,-0.4505769483196802038,0.03692308038423630645,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,0.00003846153845205580,0.99999990976331498693,133.184470453575357851,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -85 ,1 ,-0.4505769483196802038,0.03692308038423630645,1000.00000000000000000,0.00000000000000000000,-0.0004230769101426188,0.00003846153845205580,0.99999990976331498693,133.184470453575357851,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -86 ,0 ,-0.3686538599795182169,0.03692307924632082238,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,0.00003846153845205580,0.99999993934911302062,118.259557131272629248,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -86 ,1 ,-0.3686538599795182169,0.03692307924632082238,1000.00000000000000000,0.00000000000000000000,-0.0003461538389849795,0.00003846153845205580,0.99999993934911302062,118.259557131272629248,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -87 ,0 ,-0.2867307757358520947,0.03692307833598847816,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,0.00003846153845205580,0.99999996301775162521,54.9443582666442651429,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -87 ,1 ,-0.2867307757358520947,0.03692307833598847816,1000.00000000000000000,0.00000000000000000000,-0.0002692307657790926,0.00003846153845205580,0.99999996301775162521,54.9443582666442651429,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -88 ,0 ,-0.2048076946783492779,0.03692307765323924600,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,0.00003846153845205580,0.99999998076923080070,112.248684585152361137,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -88 ,1 ,-0.2048076946783492779,0.03692307765323924600,1000.00000000000000000,0.00000000000000000000,-0.0001923076909801243,0.00003846153845205580,0.99999998076923080070,112.248684585152361137,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -89 ,0 ,-0.1228846158966773044,0.03692307719807309818,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,0.00003846153845205580,0.99999999260355021402,76.5853748835123582239,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -89 ,1 ,-0.1228846158966773044,0.03692307719807309818,1000.00000000000000000,0.00000000000000000000,-0.0001153846150432407,0.00003846153845205580,0.99999999260355021402,76.5853748835123582239,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -90 ,0 ,-0.0409615384805036911,0.03692307697049003467,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,0.00003846153845205580,0.99999999852070997619,194.342418712177874340,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -90 ,1 ,-0.0409615384805036911,0.03692307697049003467,1000.00000000000000000,0.00000000000000000000,-0.0000384615384236079,0.00003846153845205580,0.99999999852070997619,194.342418712177874340,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -91 ,0 ,0.04096153848050369111,0.03692307697049003467,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,0.00003846153845205580,0.99999999852070997619,169.782763852221592060,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -91 ,1 ,0.04096153848050369111,0.03692307697049003467,1000.00000000000000000,0.00000000000000000000,0.00003846153842360791,0.00003846153845205580,0.99999999852070997619,169.782763852221592060,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -92 ,0 ,0.12288461589667730444,0.03692307719807309818,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,0.00003846153845205580,0.99999999260355021402,144.345903616479120046,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -92 ,1 ,0.12288461589667730444,0.03692307719807309818,1000.00000000000000000,0.00000000000000000000,0.00011538461504324078,0.00003846153845205580,0.99999999260355021402,144.345903616479120046,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -93 ,0 ,0.20480769467834933350,0.03692307765323924600,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,0.00003846153845205580,0.99999998076923080070,47.1969838364042786338,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -93 ,1 ,0.20480769467834933350,0.03692307765323924600,1000.00000000000000000,0.00000000000000000000,0.00019230769098012445,0.00003846153845205580,0.99999998076923080070,47.1969838364042786338,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -94 ,0 ,0.28673077573585209476,0.03692307833598847816,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,0.00003846153845205580,0.99999996301775162521,51.2136644337358077905,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -94 ,1 ,0.28673077573585209476,0.03692307833598847816,1000.00000000000000000,0.00000000000000000000,0.00026923076577909266,0.00003846153845205580,0.99999996301775162521,51.2136644337358077905,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -95 ,0 ,0.36865385997951821694,0.03692307924632082238,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,0.00003846153845205580,0.99999993934911302062,8.08671834135584433056,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -95 ,1 ,0.36865385997951821694,0.03692307924632082238,1000.00000000000000000,0.00000000000000000000,0.00034615383898497955,0.00003846153845205580,0.99999993934911302062,8.08671834135584433056,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -96 ,0 ,0.45057694831968025939,0.03692308038423630645,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,0.00003846153845205580,0.99999990976331498693,142.132577985090335914,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -96 ,1 ,0.45057694831968025939,0.03692308038423630645,1000.00000000000000000,0.00000000000000000000,0.00042307691014261891,0.00003846153845205580,0.99999990976331498693,142.132577985090335914,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -97 ,0 ,0.53250004166667086469,0.03692308174973495116,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,0.00003846153845205580,0.99999987426035774618,22.1781652938058044810,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -97 ,1 ,0.53250004166667086469,0.03692308174973495116,1000.00000000000000000,0.00000000000000000000,0.00049999997879684445,0.00003846153845205580,0.99999987426035774618,22.1781652938058044810,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -98 ,0 ,-0.5325000416666708646,-0.0369230817497349581,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,-0.0000384615384520558,0.99999987426035774618,87.8673014901269482379,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -98 ,1 ,-0.5325000416666708646,-0.0369230817497349581,1000.00000000000000000,0.00000000000000000000,-0.0004999999787968444,-0.0000384615384520558,0.99999987426035774618,87.8673014901269482379,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -99 ,0 ,-0.4505769483196802038,-0.0369230803842363064,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,-0.0000384615384520558,0.99999990976331498693,40.3438412678297240177,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -99 ,1 ,-0.4505769483196802038,-0.0369230803842363064,1000.00000000000000000,0.00000000000000000000,-0.0004230769101426188,-0.0000384615384520558,0.99999990976331498693,40.3438412678297240177,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -100 ,0 ,-0.3686538599795182169,-0.0369230792463208223,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,-0.0000384615384520558,0.99999993934911302062,179.152719671640710430,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -100 ,1 ,-0.3686538599795182169,-0.0369230792463208223,1000.00000000000000000,0.00000000000000000000,-0.0003461538389849795,-0.0000384615384520558,0.99999993934911302062,179.152719671640710430,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -101 ,0 ,-0.2867307757358520947,-0.0369230783359884850,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,-0.0000384615384520558,0.99999996301775162521,95.0740449351896614871,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -101 ,1 ,-0.2867307757358520947,-0.0369230783359884850,1000.00000000000000000,0.00000000000000000000,-0.0002692307657790926,-0.0000384615384520558,0.99999996301775162521,95.0740449351896614871,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -102 ,0 ,-0.2048076946783492779,-0.0369230776532392460,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,-0.0000384615384520558,0.99999998076923080070,112.655114967528518832,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -102 ,1 ,-0.2048076946783492779,-0.0369230776532392460,1000.00000000000000000,0.00000000000000000000,-0.0001923076909801243,-0.0000384615384520558,0.99999998076923080070,112.655114967528518832,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -103 ,0 ,-0.1228846158966773044,-0.0369230771980731051,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,-0.0000384615384520558,0.99999999260355021402,139.103216104931959762,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -103 ,1 ,-0.1228846158966773044,-0.0369230771980731051,1000.00000000000000000,0.00000000000000000000,-0.0001153846150432407,-0.0000384615384520558,0.99999999260355021402,139.103216104931959762,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -104 ,0 ,-0.0409615384805036911,-0.0369230769704900346,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,-0.0000384615384520558,0.99999999852070997619,27.8662907024534156619,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -104 ,1 ,-0.0409615384805036911,-0.0369230769704900346,1000.00000000000000000,0.00000000000000000000,-0.0000384615384236079,-0.0000384615384520558,0.99999999852070997619,27.8662907024534156619,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -105 ,0 ,0.04096153848050369111,-0.0369230769704900346,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,-0.0000384615384520558,0.99999999852070997619,120.883475551587409313,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -105 ,1 ,0.04096153848050369111,-0.0369230769704900346,1000.00000000000000000,0.00000000000000000000,0.00003846153842360791,-0.0000384615384520558,0.99999999852070997619,120.883475551587409313,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000147928994920,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -106 ,0 ,0.12288461589667730444,-0.0369230771980731051,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,-0.0000384615384520558,0.99999999260355021402,107.968217811539830108,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -106 ,1 ,0.12288461589667730444,-0.0369230771980731051,1000.00000000000000000,0.00000000000000000000,0.00011538461504324078,-0.0000384615384520558,0.99999999260355021402,107.968217811539830108,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -107 ,0 ,0.20480769467834933350,-0.0369230776532392460,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,-0.0000384615384520558,0.99999998076923080070,40.6122459193254456977,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -107 ,1 ,0.20480769467834933350,-0.0369230776532392460,1000.00000000000000000,0.00000000000000000000,0.00019230769098012445,-0.0000384615384520558,0.99999998076923080070,40.6122459193254456977,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -108 ,0 ,0.28673077573585209476,-0.0369230783359884850,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,-0.0000384615384520558,0.99999996301775162521,188.570714599585784299,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -108 ,1 ,0.28673077573585209476,-0.0369230783359884850,1000.00000000000000000,0.00000000000000000000,0.00026923076577909266,-0.0000384615384520558,0.99999996301775162521,188.570714599585784299,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -109 ,0 ,0.36865385997951821694,-0.0369230792463208223,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,-0.0000384615384520558,0.99999993934911302062,119.773093173227522356,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -109 ,1 ,0.36865385997951821694,-0.0369230792463208223,1000.00000000000000000,0.00000000000000000000,0.00034615383898497955,-0.0000384615384520558,0.99999993934911302062,119.773093173227522356,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -110 ,0 ,0.45057694831968025939,-0.0369230803842363064,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,-0.0000384615384520558,0.99999990976331498693,138.956987238246256310,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -110 ,1 ,0.45057694831968025939,-0.0369230803842363064,1000.00000000000000000,0.00000000000000000000,0.00042307691014261891,-0.0000384615384520558,0.99999990976331498693,138.956987238246256310,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -111 ,0 ,0.53250004166667086469,-0.0369230817497349581,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,-0.0000384615384520558,0.99999987426035774618,176.093567715979560261,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -111 ,1 ,0.53250004166667086469,-0.0369230817497349581,1000.00000000000000000,0.00000000000000000000,0.00049999997879684445,-0.0000384615384520558,0.99999987426035774618,176.093567715979560261,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -112 ,0 ,-0.5325000416666708646,-0.1107692457043711747,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,-0.0001153846151285844,0.99999986834319865014,124.870808870734364859,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -112 ,1 ,-0.5325000416666708646,-0.1107692457043711747,1000.00000000000000000,0.00000000000000000000,-0.0004999999758382646,-0.0001153846151285844,0.99999986834319865014,124.870808870734364859,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -113 ,0 ,-0.4505769483196802038,-0.1107692416078752267,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,-0.0001153846151285844,0.99999990384615566885,59.1267375878819194667,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -113 ,1 ,-0.4505769483196802038,-0.1107692416078752267,1000.00000000000000000,0.00000000000000000000,-0.0004230769076392051,-0.0001153846151285844,0.99999990384615566885,59.1267375878819194667,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -114 ,0 ,-0.3686538599795182169,-0.1107692381941287468,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,-0.0001153846151285844,0.99999993343195370254,21.0988516037116866641,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -114 ,1 ,-0.3686538599795182169,-0.1107692381941287468,1000.00000000000000000,0.00000000000000000000,-0.0003461538369367320,-0.0001153846151285844,0.99999993343195370254,21.0988516037116866641,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -115 ,0 ,-0.2867307757358520947,-0.1107692354631317072,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,-0.0001153846151285844,0.99999995710059208509,91.3069141775618646761,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -115 ,1 ,-0.2867307757358520947,-0.1107692354631317072,1000.00000000000000000,0.00000000000000000000,-0.0002692307641860112,-0.0001153846151285844,0.99999995710059208509,91.3069141775618646761,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -116 ,0 ,-0.2048076946783493057,-0.1107692334148839830,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,-0.0001153846151285844,0.99999997485207114955,43.6880876877550221593,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -116 ,1 ,-0.2048076946783493057,-0.1107692334148839830,1000.00000000000000000,0.00000000000000000000,-0.0001923076898422090,-0.0001153846151285844,0.99999997485207114955,43.6880876877550221593,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -117 ,0 ,-0.1228846158966773183,-0.1107692320493855603,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,-0.0001153846151285844,0.99999998668639045185,83.3019891482084062772,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -117 ,1 ,-0.1228846158966773183,-0.1107692320493855603,1000.00000000000000000,0.00000000000000000000,-0.0001153846143604915,-0.0001153846151285844,0.99999998668639045185,83.3019891482084062772,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -118 ,0 ,-0.0409615384805036841,-0.1107692313666363420,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,-0.0001153846151285844,0.99999999260355021402,176.656052371639759712,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -118 ,1 ,-0.0409615384805036841,-0.1107692313666363420,1000.00000000000000000,0.00000000000000000000,-0.0000384615381960248,-0.0001153846151285844,0.99999999260355021402,176.656052371639759712,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -119 ,0 ,0.04096153848050368417,-0.1107692313666363420,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,-0.0001153846151285844,0.99999999260355021402,64.8690044565286996203,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -119 ,1 ,0.04096153848050368417,-0.1107692313666363420,1000.00000000000000000,0.00000000000000000000,0.00003846153819602484,-0.0001153846151285844,0.99999999260355021402,64.8690044565286996203,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00000739644985969,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -120 ,0 ,0.12288461589667731832,-0.1107692320493855603,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,-0.0001153846151285844,0.99999998668639045185,24.4175906349945783802,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -120 ,1 ,0.12288461589667731832,-0.1107692320493855603,1000.00000000000000000,0.00000000000000000000,0.00011538461436049158,-0.0001153846151285844,0.99999998668639045185,24.4175906349945783802,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001331360965650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -121 ,0 ,0.20480769467834936126,-0.1107692334148839830,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,-0.0001153846151285844,0.99999997485207114955,71.2595682757113877414,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -121 ,1 ,0.20480769467834936126,-0.1107692334148839830,1000.00000000000000000,0.00000000000000000000,0.00019230768984220914,-0.0001153846151285844,0.99999997485207114955,71.2595682757113877414,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -122 ,0 ,0.28673077573585209476,-0.1107692354631317072,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,-0.0001153846151285844,0.99999995710059208509,181.365689537805906184,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -122 ,1 ,0.28673077573585209476,-0.1107692354631317072,1000.00000000000000000,0.00000000000000000000,0.00026923076418601120,-0.0001153846151285844,0.99999995710059208509,181.365689537805906184,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -123 ,0 ,0.36865385997951821694,-0.1107692381941287468,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,-0.0001153846151285844,0.99999993343195370254,54.4264495499493605734,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -123 ,1 ,0.36865385997951821694,-0.1107692381941287468,1000.00000000000000000,0.00000000000000000000,0.00034615383693673202,-0.0001153846151285844,0.99999993343195370254,54.4264495499493605734,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -124 ,0 ,0.45057694831968025939,-0.1107692416078752267,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,-0.0001153846151285844,0.99999990384615566885,129.538024712712058317,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -124 ,1 ,0.45057694831968025939,-0.1107692416078752267,1000.00000000000000000,0.00000000000000000000,0.00042307690763920520,-0.0001153846151285844,0.99999990384615566885,129.538024712712058317,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -125 ,0 ,0.53250004166667086469,-0.1107692457043711747,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,-0.0001153846151285844,0.99999986834319865014,0.10407529773751164614,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -125 ,1 ,0.53250004166667086469,-0.1107692457043711747,1000.00000000000000000,0.00000000000000000000,0.00049999997583826468,-0.0001153846151285844,0.99999986834319865014,0.10407529773751164614,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -126 ,0 ,-0.5325000416666708646,-0.1846154110245059876,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,-0.0001923076911223638,0.99999985650888079113,70.5137705594566170930,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -126 ,1 ,-0.5325000416666708646,-0.1846154110245059876,1000.00000000000000000,0.00000000000000000000,-0.0004999999699211052,-0.0001923076911223638,0.99999985650888079113,70.5137705594566170930,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -127 ,0 ,-0.4505769483196802038,-0.1846154041970126669,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,-0.0001923076911223638,0.99999989201183736575,60.9562517285710754322,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -127 ,1 ,-0.4505769483196802038,-0.1846154041970126669,1000.00000000000000000,0.00000000000000000000,-0.0004230769026323778,-0.0001923076911223638,0.99999989201183736575,60.9562517285710754322,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -128 ,0 ,-0.3686538599795182169,-0.1846153985074351633,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,-0.0001923076911223638,0.99999992159763495536,32.9311701080135890151,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -128 ,1 ,-0.3686538599795182169,-0.1846153985074351633,1000.00000000000000000,0.00000000000000000000,-0.0003461538328402369,-0.0001923076911223638,0.99999992159763495536,32.9311701080135890151,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -129 ,0 ,-0.2867307757358520947,-0.1846153939557733936,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,-0.0001923076911223638,0.99999994526627311586,106.817884488687369071,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -129 ,1 ,-0.2867307757358520947,-0.1846153939557733936,1000.00000000000000000,0.00000000000000000000,-0.0002692307609998483,-0.0001923076911223638,0.99999994526627311586,106.817884488687369071,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -130 ,0 ,-0.2048076946783493057,-0.1846153905420271912,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,-0.0001923076911223638,0.99999996301775195828,96.9659953138246208936,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -130 ,1 ,-0.2048076946783493057,-0.1846153905420271912,1000.00000000000000000,0.00000000000000000000,-0.0001923076875663784,-0.0001923076911223638,0.99999996301775195828,96.9659953138246208936,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -131 ,0 ,-0.1228846158966773044,-0.1846153882661964451,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,-0.0001923076911223638,0.99999997485207114955,138.487206431684853669,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -131 ,1 ,-0.1228846158966773044,-0.1846153882661964451,1000.00000000000000000,0.00000000000000000000,-0.0001153846129949931,-0.0001923076911223638,0.99999997485207114955,138.487206431684853669,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -132 ,0 ,-0.0409615384805036841,-0.1846153871282810998,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,-0.0001923076911223638,0.99999998076923080070,53.8824666882591429839,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -132 ,1 ,-0.0409615384805036841,-0.1846153871282810998,1000.00000000000000000,0.00000000000000000000,-0.0000384615377408587,-0.0001923076911223638,0.99999998076923080070,53.8824666882591429839,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -133 ,0 ,0.04096153848050368417,-0.1846153871282810998,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,-0.0001923076911223638,0.99999998076923080070,48.8251041268988288379,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -133 ,1 ,0.04096153848050368417,-0.1846153871282810998,1000.00000000000000000,0.00000000000000000000,0.00003846153774085871,-0.0001923076911223638,0.99999998076923080070,48.8251041268988288379,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00001923076945331,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -134 ,0 ,0.12288461589667730444,-0.1846153882661964451,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,-0.0001923076911223638,0.99999997485207114955,33.6582091715322349045,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -134 ,1 ,0.12288461589667730444,-0.1846153882661964451,1000.00000000000000000,0.00000000000000000000,0.00011538461299499319,-0.0001923076911223638,0.99999997485207114955,33.6582091715322349045,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00002514792947749,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -135 ,0 ,0.20480769467834936126,-0.1846153905420271912,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,-0.0001923076911223638,0.99999996301775195828,43.7528445952927782514,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -135 ,1 ,0.20480769467834936126,-0.1846153905420271912,1000.00000000000000000,0.00000000000000000000,0.00019230768756637849,-0.0001923076911223638,0.99999996301775195828,43.7528445952927782514,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224929848,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -136 ,0 ,0.28673077573585209476,-0.1846153939557733936,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,-0.0001923076911223638,0.99999994526627311586,111.620400452897982290,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -136 ,1 ,0.28673077573585209476,-0.1846153939557733936,1000.00000000000000000,0.00000000000000000000,0.00026923076099984833,-0.0001923076911223638,0.99999994526627311586,111.620400452897982290,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -137 ,0 ,0.36865385997951821694,-0.1846153985074351633,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,-0.0001923076911223638,0.99999992159763495536,80.7672345733193850492,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -137 ,1 ,0.36865385997951821694,-0.1846153985074351633,1000.00000000000000000,0.00000000000000000000,0.00034615383284023691,-0.0001923076911223638,0.99999992159763495536,80.7672345733193850492,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -138 ,0 ,0.45057694831968025939,-0.1846154041970126669,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,-0.0001923076911223638,0.99999989201183736575,12.9784493271676932835,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -138 ,1 ,0.45057694831968025939,-0.1846154041970126669,1000.00000000000000000,0.00000000000000000000,0.00042307690263237795,-0.0001923076911223638,0.99999989201183736575,12.9784493271676932835,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -139 ,0 ,0.53250004166667086469,-0.1846154110245059876,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,-0.0001923076911223638,0.99999985650888079113,50.7830825286877924895,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -139 ,1 ,0.53250004166667086469,-0.1846154110245059876,1000.00000000000000000,0.00000000000000000000,0.00049999996992110523,-0.0001923076911223638,0.99999985650888079113,50.7830825286877924895,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -140 ,0 ,-0.5325000416666708646,-0.2584615786204717546,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,-0.0002692307659782278,0.99999983875740383609,49.3752127162588791975,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -140 ,1 ,-0.5325000416666708646,-0.2584615786204717546,1000.00000000000000000,0.00000000000000000000,-0.0004999999610453660,-0.0002692307659782278,0.99999983875740383609,49.3752127162588791975,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -141 ,0 ,-0.4505769483196802038,-0.2584615690619809780,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,-0.0002692307659782278,0.99999987426035974458,139.260854138820633352,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -141 ,1 ,-0.4505769483196802038,-0.2584615690619809780,1000.00000000000000000,0.00000000000000000000,-0.0004230768951221369,-0.0002692307659782278,0.99999987426035974458,139.260854138820633352,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -142 ,0 ,-0.3686538599795182169,-0.2584615610965724230,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,-0.0002692307659782278,0.99999990384615689009,142.454117662844737424,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -142 ,1 ,-0.3686538599795182169,-0.2584615610965724230,1000.00000000000000000,0.00000000000000000000,-0.0003461538266954942,-0.0002692307659782278,0.99999990384615689009,142.454117662844737424,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -143 ,0 ,-0.2867307757358520947,-0.2584615547242458677,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,-0.0002692307659782278,0.99999992751479460650,29.6173857593949385602,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -143 ,1 ,-0.2867307757358520947,-0.2584615547242458677,1000.00000000000000000,0.00000000000000000000,-0.0002692307562206040,-0.0002692307659782278,0.99999992751479460650,29.6173857593949385602,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -144 ,0 ,-0.2048076946783492779,-0.2584615499450010900,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,-0.0002692307659782278,0.99999994526627311586,199.548098072304412653,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -144 ,1 ,-0.2048076946783492779,-0.2584615499450010900,1000.00000000000000000,0.00000000000000000000,-0.0001923076841526324,-0.0002692307659782278,0.99999994526627311586,199.548098072304412653,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -145 ,0 ,-0.1228846158966773183,-0.2584615467588380344,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,-0.0002692307659782278,0.99999995710059208509,53.3562031698776948474,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -145 ,1 ,-0.1228846158966773183,-0.2584615467588380344,1000.00000000000000000,0.00000000000000000000,-0.0001153846109467456,-0.0002692307659782278,0.99999995710059208509,53.3562031698776948474,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -146 ,0 ,-0.0409615384805036841,-0.2584615451657565343,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,-0.0002692307659782278,0.99999996301775162521,195.322990509523776836,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -146 ,1 ,-0.0409615384805036841,-0.2584615451657565343,1000.00000000000000000,0.00000000000000000000,-0.0000384615370581095,-0.0002692307659782278,0.99999996301775162521,195.322990509523776836,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -147 ,0 ,0.04096153848050368417,-0.2584615451657565343,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,-0.0002692307659782278,0.99999996301775162521,82.2074038633628276784,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -147 ,1 ,0.04096153848050368417,-0.2584615451657565343,1000.00000000000000000,0.00000000000000000000,0.00003846153705810951,-0.0002692307659782278,0.99999996301775162521,82.2074038633628276784,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00003698224952586,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -148 ,0 ,0.12288461589667731832,-0.2584615467588380344,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,-0.0002692307659782278,0.99999995710059208509,6.61014719088798141655,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -148 ,1 ,0.12288461589667731832,-0.2584615467588380344,1000.00000000000000000,0.00000000000000000000,0.00011538461094674560,-0.0002692307659782278,0.99999995710059208509,6.61014719088798141655,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00004289940955004,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -149 ,0 ,0.20480769467834933350,-0.2584615499450010900,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,-0.0002692307659782278,0.99999994526627311586,69.0142497115336084334,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -149 ,1 ,0.20480769467834933350,-0.2584615499450010900,1000.00000000000000000,0.00000000000000000000,0.00019230768415263250,-0.0002692307659782278,0.99999994526627311586,69.0142497115336084334,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00005473372982578,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -150 ,0 ,0.28673077573585209476,-0.2584615547242458677,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,-0.0002692307659782278,0.99999992751479460650,126.870268612837008959,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -150 ,1 ,0.28673077573585209476,-0.2584615547242458677,1000.00000000000000000,0.00000000000000000000,0.00026923075622060400,-0.0002692307659782278,0.99999992751479460650,126.870268612837008959,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007248521058045,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -151 ,0 ,0.36865385997951821694,-0.2584615610965724230,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,-0.0002692307659782278,0.99999990384615689009,136.141091477158738598,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -151 ,1 ,0.36865385997951821694,-0.2584615610965724230,1000.00000000000000000,0.00000000000000000000,0.00034615382669549426,-0.0002692307659782278,0.99999990384615689009,136.141091477158738598,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -152 ,0 ,0.45057694831968025939,-0.2584615690619809780,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,-0.0002692307659782278,0.99999987426035974458,106.186916890131996638,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -152 ,1 ,0.45057694831968025939,-0.2584615690619809780,1000.00000000000000000,0.00000000000000000000,0.00042307689512213698,-0.0002692307659782278,0.99999987426035974458,106.186916890131996638,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -153 ,0 ,0.53250004166667086469,-0.2584615786204717546,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,-0.0002692307659782278,0.99999983875740383609,89.5566326308894531393,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -153 ,1 ,0.53250004166667086469,-0.2584615786204717546,1000.00000000000000000,0.00000000000000000000,0.00049999996104536600,-0.0002692307659782278,0.99999983875740383609,89.5566326308894531393,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -154 ,0 ,-0.5325000416666708646,-0.3323077494026013822,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,-0.0003461538392410105,0.99999981508876811808,110.578617712151867635,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -154 ,1 ,-0.5325000416666708646,-0.3323077494026013822,1000.00000000000000000,0.00000000000000000000,-0.0004999999492110472,-0.0003461538392410105,0.99999981508876811808,110.578617712151867635,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -155 ,0 ,-0.4505769483196802038,-0.3323077371131130108,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,-0.0003461538392410105,0.99999985059172324941,118.539344826373110208,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -155 ,1 ,-0.4505769483196802038,-0.3323077371131130108,1000.00000000000000000,0.00000000000000000000,-0.0004230768851084824,-0.0003461538392410105,0.99999985059172324941,118.539344826373110208,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -156 ,0 ,-0.3686538599795182169,-0.3323077268718732657,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,-0.0003461538392410105,0.99999988017751961777,16.1706651598612474174,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -156 ,1 ,-0.3686538599795182169,-0.3323077268718732657,1000.00000000000000000,0.00000000000000000000,-0.0003461538185025041,-0.0003461538392410105,0.99999988017751961777,16.1706651598612474174,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -157 ,0 ,-0.2867307757358520392,-0.3323077186788818693,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,-0.0003461538392410105,0.99999990384615689009,73.9308919464077121119,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -157 ,1 ,-0.2867307757358520392,-0.3323077186788818693,1000.00000000000000000,0.00000000000000000000,-0.0002692307498482782,-0.0003461538392410105,0.99999990384615689009,73.9308919464077121119,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -158 ,0 ,-0.2048076946783492779,-0.3323077125341384885,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,-0.0003461538392410105,0.99999992159763495536,48.4319873266927913846,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -158 ,1 ,-0.2048076946783492779,-0.3323077125341384885,1000.00000000000000000,0.00000000000000000000,-0.0001923076796009712,-0.0003461538392410105,0.99999992159763495536,48.4319873266927913846,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -159 ,0 ,-0.1228846158966773044,-0.3323077084376430678,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,-0.0003461538392410105,0.99999993343195370254,160.627950998169353624,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -159 ,1 ,-0.1228846158966773044,-0.3323077084376430678,1000.00000000000000000,0.00000000000000000000,-0.0001153846082157488,-0.0003461538392410105,0.99999993343195370254,160.627950998169353624,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -160 ,0 ,-0.0409615384805036841,-0.3323077063893953297,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,-0.0003461538392410105,0.99999993934911302062,94.0601261551631893098,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -160 ,1 ,-0.0409615384805036841,-0.3323077063893953297,1000.00000000000000000,0.00000000000000000000,-0.0000384615361477772,-0.0003461538392410105,0.99999993934911302062,94.0601261551631893098,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -161 ,0 ,0.04096153848050368417,-0.3323077063893953297,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,-0.0003461538392410105,0.99999993934911302062,196.684627327296112753,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -161 ,1 ,0.04096153848050368417,-0.3323077063893953297,1000.00000000000000000,0.00000000000000000000,0.00003846153614777726,-0.0003461538392410105,0.99999993934911302062,196.684627327296112753,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006065089053208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -162 ,0 ,0.12288461589667730444,-0.3323077084376430678,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,-0.0003461538392410105,0.99999993343195370254,79.7648886870045430441,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -162 ,1 ,0.12288461589667730444,-0.3323077084376430678,1000.00000000000000000,0.00000000000000000000,0.00011538460821574884,-0.0003461538392410105,0.99999993343195370254,79.7648886870045430441,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00006656805089733,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -163 ,0 ,0.20480769467834933350,-0.3323077125341384885,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,-0.0003461538392410105,0.99999992159763495536,163.286375944336498378,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -163 ,1 ,0.20480769467834933350,-0.3323077125341384885,1000.00000000000000000,0.00000000000000000000,0.00019230767960097126,-0.0003461538392410105,0.99999992159763495536,163.286375944336498378,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00007840237128675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -164 ,0 ,0.28673077573585203925,-0.3323077186788818693,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,-0.0003461538392410105,0.99999990384615689009,159.669024487880307106,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -164 ,1 ,0.28673077573585203925,-0.3323077186788818693,1000.00000000000000000,0.00000000000000000000,0.00026923074984827827,-0.0003461538392410105,0.99999990384615689009,159.669024487880307106,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385238248,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -165 ,0 ,0.36865385997951821694,-0.3323077268718732657,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,-0.0003461538392410105,0.99999988017751961777,30.1435086946337236213,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -165 ,1 ,0.36865385997951821694,-0.3323077268718732657,1000.00000000000000000,0.00000000000000000000,0.00034615381850250414,-0.0003461538392410105,0.99999988017751961777,30.1435086946337236213,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00011982249486663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -166 ,0 ,0.45057694831968025939,-0.3323077371131130108,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,-0.0003461538392410105,0.99999985059172324941,101.639756304593703362,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -166 ,1 ,0.45057694831968025939,-0.3323077371131130108,1000.00000000000000000,0.00000000000000000000,0.00042307688510848247,-0.0003461538392410105,0.99999985059172324941,101.639756304593703362,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -167 ,0 ,0.53250004166667086469,-0.3323077494026013822,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,-0.0003461538392410105,0.99999981508876811808,139.162562028309935158,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -167 ,1 ,0.53250004166667086469,-0.3323077494026013822,1000.00000000000000000,0.00000000000000000000,0.00049999994921104721,-0.0003461538392410105,0.99999981508876811808,139.162562028309935158,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -168 ,0 ,-0.5325000416666708646,-0.4061539242812273742,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,-0.0004230769104555456,0.99999978550297374813,171.671760215347575240,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -168 ,1 ,-0.5325000416666708646,-0.4061539242812273742,1000.00000000000000000,0.00000000000000000000,-0.0004999999344181487,-0.0004230769104555456,0.99999978550297374813,171.671760215347575240,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -169 ,0 ,-0.4505769483196802593,-0.4061539092607413525,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,-0.0004230769104555456,0.99999982100592776923,65.1917813031915045485,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -169 ,1 ,-0.4505769483196802593,-0.4061539092607413525,1000.00000000000000000,0.00000000000000000000,-0.0004230768725914143,-0.0004230769104555456,0.99999982100592776923,65.1917813031915045485,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -170 ,0 ,-0.3686538599795182169,-0.4061538967436703062,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,-0.0004230769104555456,0.99999985059172324941,44.0482096383460373090,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -170 ,1 ,-0.3686538599795182169,-0.4061538967436703062,1000.00000000000000000,0.00000000000000000000,-0.0003461538082612664,-0.0004230769104555456,0.99999985059172324941,44.0482096383460373090,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -171 ,0 ,-0.2867307757358520392,-0.4061538867300139021,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,-0.0004230769104555456,0.99999987426035974458,142.229906921794167828,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -171 ,1 ,-0.2867307757358520392,-0.4061538867300139021,1000.00000000000000000,0.00000000000000000000,-0.0002692307418828711,-0.0004230769104555456,0.99999987426035974458,142.229906921794167828,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -172 ,0 ,-0.2048076946783493057,-0.4061538792197718628,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,-0.0004230769104555456,0.99999989201183736575,161.900210325117285492,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -172 ,1 ,-0.2048076946783493057,-0.4061538792197718628,1000.00000000000000000,0.00000000000000000000,-0.0001923076739113946,-0.0004230769104555456,0.99999989201183736575,161.900210325117285492,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -173 ,0 ,-0.1228846158966773183,-0.4061538742129440215,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,-0.0004230769104555456,0.99999990384615566885,69.7331973979559762710,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -173 ,1 ,-0.1228846158966773183,-0.4061538742129440215,1000.00000000000000000,0.00000000000000000000,-0.0001153846048020029,-0.0004230769104555456,0.99999990384615566885,69.7331973979559762710,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -174 ,0 ,-0.0409615384805036841,-0.4061538717095300454,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,-0.0004230769104555456,0.99999990976331498693,19.2353102423332877890,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -174 ,1 ,-0.0409615384805036841,-0.4061538717095300454,1000.00000000000000000,0.00000000000000000000,-0.0000384615350098619,-0.0004230769104555456,0.99999990976331498693,19.2353102423332877890,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -175 ,0 ,0.04096153848050368417,-0.4061538717095300454,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,-0.0004230769104555456,0.99999990976331498693,188.104652284668901529,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -175 ,1 ,0.04096153848050368417,-0.4061538717095300454,1000.00000000000000000,0.00000000000000000000,0.00003846153500986195,-0.0004230769104555456,0.99999990976331498693,188.104652284668901529,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009023669326779,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -176 ,0 ,0.12288461589667731832,-0.4061538742129440215,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,-0.0004230769104555456,0.99999990384615566885,79.5144039857001985183,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -176 ,1 ,0.12288461589667731832,-0.4061538742129440215,1000.00000000000000000,0.00000000000000000000,0.00011538460480200291,-0.0004230769104555456,0.99999990384615566885,79.5144039857001985183,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00009615385340566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -177 ,0 ,0.20480769467834933350,-0.4061538792197718628,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,-0.0004230769104555456,0.99999989201183736575,103.550269013166015952,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -177 ,1 ,0.20480769467834933350,-0.4061538792197718628,1000.00000000000000000,0.00000000000000000000,0.00019230767391139474,-0.0004230769104555456,0.99999989201183736575,103.550269013166015952,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00010798817436352,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -178 ,0 ,0.28673077573585203925,-0.4061538867300139021,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,-0.0004230769104555456,0.99999987426035974458,167.542021341515237509,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -178 ,1 ,0.28673077573585203925,-0.4061538867300139021,1000.00000000000000000,0.00000000000000000000,0.00026923074188287118,-0.0004230769104555456,0.99999987426035974458,167.542021341515237509,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965602769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -179 ,0 ,0.36865385997951821694,-0.4061538967436703062,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,-0.0004230769104555456,0.99999985059172324941,135.138023396753254701,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -179 ,1 ,0.36865385997951821694,-0.4061538967436703062,1000.00000000000000000,0.00000000000000000000,0.00034615380826126648,-0.0004230769104555456,0.99999985059172324941,135.138023396753254701,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014940829908027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -180 ,0 ,0.45057694831968025939,-0.4061539092607413525,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,-0.0004230769104555456,0.99999982100592776923,147.043224830888959786,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -180 ,1 ,0.45057694831968025939,-0.4061539092607413525,1000.00000000000000000,0.00000000000000000000,0.00042307687259141442,-0.0004230769104555456,0.99999982100592776923,147.043224830888959786,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00017899410420341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -181 ,0 ,0.53250004166667086469,-0.4061539242812273742,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,-0.0004230769104555456,0.99999978550297374813,41.8143235710017222572,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -181 ,1 ,0.53250004166667086469,-0.4061539242812273742,1000.00000000000000000,0.00000000000000000000,0.00049999993441814875,-0.0004230769104555456,0.99999978550297374813,41.8143235710017222572,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -182 ,0 ,-0.5325000416666707536,-0.4800001041666824841,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,-0.0004999999791666669,0.99999975000002094827,108.289594880372661123,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -182 ,1 ,-0.5325000416666707536,-0.4800001041666824841,1000.00000000000000000,0.00000000000000000000,-0.0004999999166666708,-0.0004999999791666669,0.99999975000002094827,108.289594880372661123,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -183 ,0 ,-0.4505769483196802038,-0.4800000864151985902,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,-0.0004999999791666669,0.99999978550297374813,139.156879936148612841,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -183 ,1 ,-0.4505769483196802038,-0.4800000864151985902,1000.00000000000000000,0.00000000000000000000,-0.0004230768575709328,-0.0004999999791666669,0.99999978550297374813,139.156879936148612841,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -184 ,0 ,-0.3686538599795182169,-0.4800000716222960761,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,-0.0004999999791666669,0.99999981508876811808,45.7100036660465463000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -184 ,1 ,-0.3686538599795182169,-0.4800000716222960761,1000.00000000000000000,0.00000000000000000000,-0.0003461537959717815,-0.0004999999791666669,0.99999981508876811808,45.7100036660465463000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -185 ,0 ,-0.2867307757358520947,-0.4800000597879746644,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,-0.0004999999791666669,0.99999983875740383609,34.9909849080701746970,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -185 ,1 ,-0.2867307757358520947,-0.4800000597879746644,1000.00000000000000000,0.00000000000000000000,-0.0002692307323243828,-0.0004999999791666669,0.99999983875740383609,34.9909849080701746970,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -186 ,0 ,-0.2048076946783493057,-0.4800000509122338554,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,-0.0004999999791666669,0.99999985650888079113,196.433668582801146840,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -186 ,1 ,-0.2048076946783493057,-0.4800000509122338554,1000.00000000000000000,0.00000000000000000000,-0.0001923076670839029,-0.0004999999791666669,0.99999985650888079113,196.433668582801146840,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -187 ,0 ,-0.1228846158966773044,-0.4800000449950734826,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,-0.0004999999791666669,0.99999986834319865014,103.327178373776177977,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -187 ,1 ,-0.1228846158966773044,-0.4800000449950734826,1000.00000000000000000,0.00000000000000000000,-0.0001153846007055078,-0.0004999999791666669,0.99999986834319865014,103.327178373776177977,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -188 ,0 ,-0.0409615384805036911,-0.4800000420364933240,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,-0.0004999999791666669,0.99999987426035774618,52.1658353628976811933,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -188 ,1 ,-0.0409615384805036911,-0.4800000420364933240,1000.00000000000000000,0.00000000000000000000,-0.0000384615336443635,-0.0004999999791666669,0.99999987426035774618,52.1658353628976811933,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -189 ,0 ,0.04096153848050369111,-0.4800000420364933240,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,-0.0004999999791666669,0.99999987426035774618,199.250739859242628426,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -189 ,1 ,0.04096153848050369111,-0.4800000420364933240,1000.00000000000000000,0.00000000000000000000,0.00003846153364436359,-0.0004999999791666669,0.99999987426035774618,199.250739859242628426,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00012573965796036,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -190 ,0 ,0.12288461589667730444,-0.4800000449950734826,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,-0.0004999999791666669,0.99999986834319865014,193.083870316176643200,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -190 ,1 ,0.12288461589667730444,-0.4800000449950734826,1000.00000000000000000,0.00000000000000000000,0.00011538460070550785,-0.0004999999791666669,0.99999986834319865014,193.083870316176643200,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00013165681866667,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -191 ,0 ,0.20480769467834933350,-0.4800000509122338554,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,-0.0004999999791666669,0.99999985650888079113,111.658689591954157549,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -191 ,1 ,0.20480769467834933350,-0.4800000509122338554,1000.00000000000000000,0.00000000000000000000,0.00019230766708390299,-0.0004999999791666669,0.99999985650888079113,111.658689591954157549,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00014349113996559,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -192 ,0 ,0.28673077573585209476,-0.4800000597879746644,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,-0.0004999999791666669,0.99999983875740383609,176.527269179124232323,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -192 ,1 ,0.28673077573585209476,-0.4800000597879746644,1000.00000000000000000,0.00000000000000000000,0.00026923073232438285,-0.0004999999791666669,0.99999983875740383609,176.527269179124232323,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -193 ,0 ,0.36865385997951821694,-0.4800000716222960761,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,-0.0004999999791666669,0.99999981508876811808,37.7414221963243150526,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -193 ,1 ,0.36865385997951821694,-0.4800000716222960761,1000.00000000000000000,0.00000000000000000000,0.00034615379597178157,-0.0004999999791666669,0.99999981508876811808,37.7414221963243150526,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -194 ,0 ,0.45057694831968025939,-0.4800000864151985902,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,-0.0004999999791666669,0.99999978550297374813,55.7742703835885649255,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -194 ,1 ,0.45057694831968025939,-0.4800000864151985902,1000.00000000000000000,0.00000000000000000000,0.00042307685757093292,-0.0004999999791666669,0.99999978550297374813,55.7742703835885649255,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -195 ,0 ,0.53250004166667075367,-0.4800001041666824841,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,-0.0004999999791666669,0.99999975000002094827,140.071565783599282895,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -195 ,1 ,0.53250004166667075367,-0.4800001041666824841,1000.00000000000000000,0.00000000000000000000,0.00049999991666667084,-0.0004999999791666669,0.99999975000002094827,140.071565783599282895,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -196 ,0 ,-0.5325000416666707536,0.48000010416668248414,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,145.191135244721323260,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -196 ,1 ,-0.5325000416666707536,0.48000010416668248414,1000.00000000000000000,0.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,145.191135244721323260,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00025000004177400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -197 ,0 ,-0.4505769483196802038,0.48000008641519859020,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,169.332227848780405565,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -197 ,1 ,-0.4505769483196802038,0.48000008641519859020,1000.00000000000000000,0.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,169.332227848780405565,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00021449707219289,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -198 ,0 ,-0.3686538599795182169,0.48000007162229607615,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,179.422050849400022798,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -198 ,1 ,-0.3686538599795182169,0.48000007162229607615,1000.00000000000000000,0.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,179.422050849400022798,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00018491126616027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -199 ,0 ,-0.2867307757358520947,0.48000005978797466443,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,171.264857978388874926,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -199 ,1 ,-0.2867307757358520947,0.48000005978797466443,1000.00000000000000000,0.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,171.264857978388874926,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00016124262231187,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 diff --git a/Intern/RAY-Core/tests/output/MatrixSource_seeded.rayx.csv b/Intern/RAY-Core/tests/output/MatrixSource_seeded.rayx.csv deleted file mode 100644 index 23105003a..000000000 --- a/Intern/RAY-Core/tests/output/MatrixSource_seeded.rayx.csv +++ /dev/null @@ -1,401 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.5387730364695781926,0.48627309975371429962,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1012.54624169685496326,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -0 ,1 ,-0.5387730364695781926,0.48627309975371429962,1000.00000000000000000,0.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1012.54624169685496326,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -1 ,0 ,-0.4315082647603292742,0.45746436693115022364,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,954.928773650999005440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -1 ,1 ,-0.4315082647603292742,0.45746436693115022364,1000.00000000000000000,0.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,954.928773650999005440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -2 ,0 ,-0.3606233002491213701,0.46840037303565268400,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,976.800786771337698155,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -2 ,1 ,-0.3606233002491213701,0.46840037303565268400,1000.00000000000000000,0.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,976.800786771337698155,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -3 ,0 ,-0.2840745856529754420,0.47506713487767548986,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.134311010946930764,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -3 ,1 ,-0.2840745856529754420,0.47506713487767548986,1000.00000000000000000,0.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.134311010946930764,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -4 ,0 ,-0.2114227209415486807,0.49719912073581812306,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,0.00049999997916666690,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1034.39828457156431795,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -4 ,1 ,-0.2114227209415486807,0.49719912073581812306,1000.00000000000000000,0.00000000000000000000,-0.0001923076670839029,0.00049999997916666690,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1034.39828457156431795,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -5 ,0 ,-0.1268539098702317069,0.49720032035199851483,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,0.00049999997916666690,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1034.40068380402499315,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -5 ,1 ,-0.1268539098702317069,0.49720032035199851483,1000.00000000000000000,0.00000000000000000000,-0.0001153846007055078,0.00049999997916666690,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1034.40068380402499315,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -6 ,0 ,-0.0426612169002327165,0.50209586333973688088,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,0.00049999997916666690,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1044.19177018746358953,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -6 ,1 ,-0.0426612169002327165,0.50209586333973688088,1000.00000000000000000,0.00000000000000000000,-0.0000384615336443635,0.00049999997916666690,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1044.19177018746358953,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -7 ,0 ,0.03955316867655773310,0.46169123305494774722,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,0.00049999997916666690,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,963.382506250832761907,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -7 ,1 ,0.03955316867655773310,0.46169123305494774722,1000.00000000000000000,0.00000000000000000000,0.00003846153364436359,0.00049999997916666690,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,963.382506250832761907,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -8 ,0 ,0.12171790422014708288,0.47494429396424486800,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,0.00049999997916666690,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,989.888629173848698883,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -8 ,1 ,0.12171790422014708288,0.47494429396424486800,1000.00000000000000000,0.00000000000000000000,0.00011538460070550785,0.00049999997916666690,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,989.888629173848698883,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -9 ,0 ,0.20080629888928180903,0.46959642092956416226,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,0.00049999997916666690,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,979.192882658831308617,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -9 ,1 ,0.20080629888928180903,0.46959642092956416226,1000.00000000000000000,0.00000000000000000000,0.00019230766708390299,0.00049999997916666690,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,979.192882658831308617,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -10 ,0 ,0.29963811646545357447,0.50397083771581574485,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,0.00049999997916666690,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1047.94171909586930269,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -10 ,1 ,0.29963811646545357447,0.50397083771581574485,1000.00000000000000000,0.00000000000000000000,0.00026923073232438285,0.00049999997916666690,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1047.94171909586930269,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -11 ,0 ,0.35238774923302068620,0.45650457589462684060,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,0.00049999997916666690,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.009191497969482043,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -11 ,1 ,0.35238774923302068620,0.45650457589462684060,1000.00000000000000000,0.00000000000000000000,0.00034615379597178157,0.00049999997916666690,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.009191497969482043,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -12 ,0 ,0.43651206670285430666,0.46337795171425821827,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,0.00049999997916666690,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,966.755943710013639247,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -12 ,1 ,0.43651206670285430666,0.46337795171425821827,1000.00000000000000000,0.00000000000000000000,0.00042307685757093292,0.00049999997916666690,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,966.755943710013639247,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -13 ,0 ,0.54688308727095458205,0.49438315156884715673,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1028.76634600295824384,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -13 ,1 ,0.54688308727095458205,0.49438315156884715673,1000.00000000000000000,0.00000000000000000000,0.00049999991666667084,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1028.76634600295824384,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -14 ,0 ,-0.5484087946386686507,0.41961517816004179071,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,0.00042307691045554557,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.81772461437026322,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -14 ,1 ,-0.5484087946386686507,0.41961517816004179071,1000.00000000000000000,0.00000000000000000000,-0.0004999999344181487,0.00042307691045554557,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.81772461437026322,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -15 ,0 ,-0.4639713736978018365,0.41954833583762440873,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,0.00042307691045554557,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.65973366576145053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -15 ,1 ,-0.4639713736978018365,0.41954833583762440873,1000.00000000000000000,0.00000000000000000000,-0.0004230768725914143,0.00042307691045554557,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.65973366576145053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -16 ,0 ,-0.3754300903682085133,0.41443595676716782350,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,0.00042307691045554557,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1019.57592822964829792,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -16 ,1 ,-0.3754300903682085133,0.41443595676716782350,1000.00000000000000000,0.00000000000000000000,-0.0003461538082612664,0.00042307691045554557,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1019.57592822964829792,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -17 ,0 ,-0.2860642562730613125,0.40510649892762584656,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,0.00042307691045554557,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.524481769248268392,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -17 ,1 ,-0.2860642562730613125,0.40510649892762584656,1000.00000000000000000,0.00000000000000000000,-0.0002692307418828711,0.00042307691045554557,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.524481769248268392,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -18 ,0 ,-0.2061164442880983049,0.40903312855075596443,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,0.00042307691045554557,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1006.80560660988828658,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -18 ,1 ,-0.2061164442880983049,0.40903312855075596443,1000.00000000000000000,0.00000000000000000000,-0.0001923076739113946,0.00042307691045554557,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1006.80560660988828658,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -19 ,0 ,-0.1252935104448915648,0.41498648810299038069,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,0.00042307691045554557,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1020.87718415313941022,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -19 ,1 ,-0.1252935104448915648,0.41498648810299038069,1000.00000000000000000,0.00000000000000000000,-0.0001153846048020029,0.00042307691045554557,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1020.87718415313941022,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -20 ,0 ,-0.0405313350266790980,0.40142163343394526853,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,0.00042307691045554557,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,988.814799433445728027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -20 ,1 ,-0.0405313350266790980,0.40142163343394526853,1000.00000000000000000,0.00000000000000000000,-0.0000384615350098619,0.00042307691045554557,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,988.814799433445728027,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -21 ,0 ,0.04234810054875543655,0.42140605537407654912,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,0.00042307691045554557,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1036.05070724655024605,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -21 ,1 ,0.04234810054875543655,0.42140605537407654912,1000.00000000000000000,0.00000000000000000000,0.00003846153500986195,0.00042307691045554557,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1036.05070724655024605,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -22 ,0 ,0.12528294689615207535,0.41494775508854869761,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,0.00042307691045554557,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1020.78563338900050894,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -22 ,1 ,0.12528294689615207535,0.41494775508854869761,1000.00000000000000000,0.00000000000000000000,0.00011538460480200291,0.00042307691045554557,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1020.78563338900050894,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -23 ,0 ,0.20737765922662326767,0.41180780159816310348,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,0.00042307691045554557,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1013.36392491759136191,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -23 ,1 ,0.20737765922662326767,0.41180780159816310348,1000.00000000000000000,0.00000000000000000000,0.00019230767391139474,0.00042307691045554557,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1013.36392491759136191,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -24 ,0 ,0.28791350679211469287,0.40801246423748555036,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,0.00042307691045554557,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1004.39312725200625209,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -24 ,1 ,0.28791350679211469287,0.40801246423748555036,1000.00000000000000000,0.00000000000000000000,0.00026923074188287118,0.00042307691045554557,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1004.39312725200625209,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -25 ,0 ,0.35878238403888523810,0.39408875852208802292,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,0.00042307691045554557,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,971.482549124721458611,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -25 ,1 ,0.35878238403888523810,0.39408875852208802292,1000.00000000000000000,0.00000000000000000000,0.00034615380826126648,0.00042307691045554557,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,971.482549124721458611,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -26 ,0 ,0.46328305823544557728,0.41886002031366587061,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,0.00042307691045554557,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1030.03280601514256886,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -26 ,1 ,0.46328305823544557728,0.41886002031366587061,1000.00000000000000000,0.00000000000000000000,0.00042307687259141442,0.00042307691045554557,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1030.03280601514256886,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -27 ,0 ,0.53178831979086194081,0.40555169801759538561,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,0.00042307691045554557,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.576770558750354211,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -27 ,1 ,0.53178831979086194081,0.40555169801759538561,1000.00000000000000000,0.00000000000000000000,0.00049999993441814875,0.00042307691045554557,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.576770558750354211,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -28 ,0 ,-0.5278793126446066352,0.32910878289549727604,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,0.00034615383924101053,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.758725928409489824,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -28 ,1 ,-0.5278793126446066352,0.32910878289549727604,1000.00000000000000000,0.00000000000000000000,-0.0004999999492110472,0.00034615383924101053,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.758725928409489824,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -29 ,0 ,-0.4697655861003966482,0.34800753275639650929,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,0.00034615383924101053,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1045.35511550576438821,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -29 ,1 ,-0.4697655861003966482,0.34800753275639650929,1000.00000000000000000,0.00000000000000000000,-0.0004230768851084824,0.00034615383924101053,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1045.35511550576438821,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -30 ,0 ,-0.3649311534443439586,0.32858502011366702566,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,0.00034615383924101053,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,989.245633417349722549,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -30 ,1 ,-0.3649311534443439586,0.32858502011366702566,1000.00000000000000000,0.00000000000000000000,-0.0003461538185025041,0.00034615383924101053,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,989.245633417349722549,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -31 ,0 ,-0.2956012802763715585,0.34371265368142528418,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,0.00034615383924101053,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1032.94768681917707908,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -31 ,1 ,-0.2956012802763715585,0.34371265368142528418,1000.00000000000000000,0.00000000000000000000,-0.0002692307498482782,0.00034615383924101053,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1032.94768681917707908,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -32 ,0 ,-0.2131720871987956844,0.34736361976508761673,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,0.00034615383924101053,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1043.49492238261223064,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -32 ,1 ,-0.2131720871987956844,0.34736361976508761673,1000.00000000000000000,0.00000000000000000000,-0.0001923076796009712,0.00034615383924101053,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1043.49492238261223064,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -33 ,0 ,-0.1177051674373130601,0.31676936240445729975,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,0.00034615383924101053,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,955.111510464626803695,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -33 ,1 ,-0.1177051674373130601,0.31676936240445729975,1000.00000000000000000,0.00000000000000000000,-0.0001153846082157488,0.00034615383924101053,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,955.111510464626803695,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -34 ,0 ,-0.0391706460358167973,0.31618967373947187704,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,0.00034615383924101053,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.436854287891833337,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -34 ,1 ,-0.0391706460358167973,0.31618967373947187704,1000.00000000000000000,0.00000000000000000000,-0.0000384615361477772,0.00034615383924101053,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.436854287891833337,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -35 ,0 ,0.03977539482841409290,0.32163241309157691860,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,0.00034615383924101053,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.160323841310741954,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -35 ,1 ,0.03977539482841409290,0.32163241309157691860,1000.00000000000000000,0.00000000000000000000,0.00003846153614777726,0.00034615383924101053,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.160323841310741954,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -36 ,0 ,0.12513907239528249126,0.33907107821860071883,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,0.00034615383924101053,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1019.53869076990076791,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -36 ,1 ,0.12513907239528249126,0.33907107821860071883,1000.00000000000000000,0.00000000000000000000,0.00011538460821574884,0.00034615383924101053,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1019.53869076990076791,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -37 ,0 ,0.21254476944746894528,0.34623444776063944106,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,0.00034615383924101053,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.23286986017274102,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -37 ,1 ,0.21254476944746894528,0.34623444776063944106,1000.00000000000000000,0.00000000000000000000,0.00019230767960097126,0.00034615383924101053,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.23286986017274102,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -38 ,0 ,0.28177065559640579461,0.32593042102497882250,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,0.00034615383924101053,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,981.576791452433894846,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -38 ,1 ,0.28177065559640579461,0.32593042102497882250,1000.00000000000000000,0.00000000000000000000,0.00026923074984827827,0.00034615383924101053,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,981.576791452433894846,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -39 ,0 ,0.37072550456957292785,0.33437937158604280618,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,0.00034615383924101053,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1005.98487133850233021,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -39 ,1 ,0.37072550456957292785,0.33437937158604280618,1000.00000000000000000,0.00000000000000000000,0.00034615381850250414,0.00034615383924101053,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1005.98487133850233021,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -40 ,0 ,0.46656763946999524339,0.34539103078532457091,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,0.00034615383924101053,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1037.79633188282673472,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -40 ,1 ,0.46656763946999524339,0.34539103078532457091,1000.00000000000000000,0.00000000000000000000,0.00042307688510848247,0.00034615383924101053,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1037.79633188282673472,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -41 ,0 ,0.53274119615986537112,0.33247470252689909075,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,0.00034615383924101053,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.48249394664708233,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -41 ,1 ,0.53274119615986537112,0.33247470252689909075,1000.00000000000000000,0.00000000000000000000,0.00049999994921104721,0.00034615383924101053,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.48249394664708233,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -42 ,0 ,-0.5557806174521595643,0.27099727409940127520,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,0.00026923076597822786,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1046.56131644114520895,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -42 ,1 ,-0.5557806174521595643,0.27099727409940127520,1000.00000000000000000,0.00000000000000000000,-0.0004999999610453660,0.00026923076597822786,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1046.56131644114520895,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -43 ,0 ,-0.4332595456462874361,0.24744140312934367886,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,0.00026923076597822786,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.068080352508445685,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -43 ,1 ,-0.4332595456462874361,0.24744140312934367886,1000.00000000000000000,0.00000000000000000000,-0.0004230768951221369,0.00026923076597822786,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.068080352508445685,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -44 ,0 ,-0.3770037840476019863,0.26495594676947098466,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,0.00026923076597822786,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1024.12210037317618116,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -44 ,1 ,-0.3770037840476019863,0.26495594676947098466,1000.00000000000000000,0.00000000000000000000,-0.0003461538266954942,0.00026923076597822786,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1024.12210037317618116,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -45 ,0 ,-0.2823551757702407738,0.25408595460005140020,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,0.00026923076597822786,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,983.747843256147234569,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -45 ,1 ,-0.2823551757702407738,0.25408595460005140020,1000.00000000000000000,0.00000000000000000000,-0.0002692307562206040,0.00026923076597822786,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,983.747843256147234569,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -46 ,0 ,-0.2084286356224638592,0.26353086742049081081,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,0.00026923076597822786,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.82894844158943215,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -46 ,1 ,-0.2084286356224638592,0.26353086742049081081,1000.00000000000000000,0.00000000000000000000,-0.0001923076841526324,0.00026923076597822786,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.82894844158943215,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -47 ,0 ,-0.1226530618081831808,0.25792125387143177706,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,0.00026923076597822786,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.993240721942470372,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -47 ,1 ,-0.1226530618081831808,0.25792125387143177706,1000.00000000000000000,0.00000000000000000000,-0.0001153846109467456,0.00026923076597822786,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.993240721942470372,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -48 ,0 ,-0.0407818835675829854,0.25720396074461615576,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,0.00026923076597822786,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,995.329009075869635125,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -48 ,1 ,-0.0407818835675829854,0.25720396074461615576,1000.00000000000000000,0.00000000000000000000,-0.0000384615370581095,0.00026923076597822786,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,995.329009075869635125,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -49 ,0 ,0.04217363671100633759,0.26694623298637176755,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,0.00026923076597822786,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.51459212525787734,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -49 ,1 ,0.04217363671100633759,0.26694623298637176755,1000.00000000000000000,0.00000000000000000000,0.00003846153705810951,0.00026923076597822786,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.51459212525787734,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -50 ,0 ,0.11746633169532724738,0.24581888328883261252,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,0.00026923076597822786,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.041578014947731389,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -50 ,1 ,0.11746633169532724738,0.24581888328883261252,1000.00000000000000000,0.00000000000000000000,0.00011538461094674560,0.00026923076597822786,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.041578014947731389,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -51 ,0 ,0.19951667872828968142,0.25105412739028420965,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,0.00026923076597822786,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.486770626682641704,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -51 ,1 ,0.19951667872828968142,0.25105412739028420965,1000.00000000000000000,0.00000000000000000000,0.00019230768415263250,0.00026923076597822786,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.486770626682641704,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -52 ,0 ,0.27489811170571726295,0.24662889026526449431,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,0.00026923076597822786,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,956.050175392326764267,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -52 ,1 ,0.27489811170571726295,0.24662889026526449431,1000.00000000000000000,0.00000000000000000000,0.00026923075622060400,0.00026923076597822786,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,956.050175392326764267,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -53 ,0 ,0.35498675883996821944,0.24783159307446572805,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,0.00026923076597822786,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.517357309041813095,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -53 ,1 ,0.35498675883996821944,0.24783159307446572805,1000.00000000000000000,0.00000000000000000000,0.00034615382669549426,0.00026923076597822786,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.517357309041813095,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -54 ,0 ,0.44643502598738665776,0.25582580016275097145,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,0.00026923076597822786,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.210126852815619713,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -54 ,1 ,0.44643502598738665776,0.25582580016275097145,1000.00000000000000000,0.00000000000000000000,0.00042307689512213698,0.00026923076597822786,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.210126852815619713,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -55 ,0 ,0.51140632809399633185,0.24710342441057331352,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,0.00026923076597822786,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,957.812730810481525622,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -55 ,1 ,0.51140632809399633185,0.24710342441057331352,1000.00000000000000000,0.00000000000000000000,0.00049999996104536600,0.00026923076597822786,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,957.812730810481525622,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -56 ,0 ,-0.5530754184086755786,0.19252901789102647156,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,0.00019230769112236383,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1041.15089945068802990,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -56 ,1 ,-0.5530754184086755786,0.19252901789102647156,1000.00000000000000000,0.00000000000000000000,-0.0004999999699211052,0.00019230769112236383,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1041.15089945068802990,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -57 ,0 ,-0.4634392125456729960,0.19046188818258660835,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,0.00019230769112236383,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1030.40182490054644404,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -57 ,1 ,-0.4634392125456729960,0.19046188818258660835,1000.00000000000000000,0.00000000000000000000,-0.0004230769026323778,0.00019230769112236383,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1030.40182490054644404,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -58 ,0 ,-0.3843959929693127608,0.19336102822867473616,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,0.00019230769112236383,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1045.47735323312576838,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -58 ,1 ,-0.3843959929693127608,0.19336102822867473616,1000.00000000000000000,0.00000000000000000000,-0.0003461538328402369,0.00019230769112236383,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1045.47735323312576838,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -59 ,0 ,-0.2914334209139534115,0.18797442630783395278,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,0.00019230769112236383,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.46702307210637172,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -59 ,1 ,-0.2914334209139534115,0.18797442630783395278,1000.00000000000000000,0.00000000000000000000,-0.0002692307609998483,0.00019230769112236383,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.46702307210637172,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -60 ,0 ,-0.2069485160950387814,0.18675621199830280683,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,0.00019230769112236383,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1011.13230862349905692,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -60 ,1 ,-0.2069485160950387814,0.18675621199830280683,1000.00000000000000000,0.00000000000000000000,-0.0001923076875663784,0.00019230769112236383,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1011.13230862349905692,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -61 ,0 ,-0.1255228963109913109,0.18901252235401533319,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,0.00019230769112236383,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1022.86512254552178546,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -61 ,1 ,-0.1255228963109913109,0.18901252235401533319,1000.00000000000000000,0.00000000000000000000,-0.0001153846129949931,0.00019230769112236383,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1022.86512254552178546,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -62 ,0 ,-0.0396971634428422981,0.17829351186048306154,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,0.00019230769112236383,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,967.126267635595922911,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -62 ,1 ,-0.0396971634428422981,0.17829351186048306154,1000.00000000000000000,0.00000000000000000000,-0.0000384615377408587,0.00019230769112236383,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,967.126267635595922911,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -63 ,0 ,0.04151248722921494632,0.18737013090647539059,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,0.00019230769112236383,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1014.32468696567332244,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -63 ,1 ,0.04151248722921494632,0.18737013090647539059,1000.00000000000000000,0.00000000000000000000,0.00003846153774085871,0.00019230769112236383,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1014.32468696567332244,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -64 ,0 ,0.12541229462116643134,0.18882818620162578060,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,0.00019230769112236383,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1021.90657454718791541,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -64 ,1 ,0.12541229462116643134,0.18882818620162578060,1000.00000000000000000,0.00000000000000000000,0.00011538461299499319,0.00019230769112236383,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1021.90657454718791541,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -65 ,0 ,0.20398661606217607933,0.18379431191067119311,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,0.00019230769112236383,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,995.730428072882091328,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -65 ,1 ,0.20398661606217607933,0.18379431191067119311,1000.00000000000000000,0.00000000000000000000,0.00019230768756637849,0.00019230769112236383,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,995.730428072882091328,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -66 ,0 ,0.29639820069005046176,0.19152069766303311815,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,0.00019230769112236383,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1035.90763423280441202,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -66 ,1 ,0.29639820069005046176,0.19152069766303311815,1000.00000000000000000,0.00000000000000000000,0.00026923076099984833,0.00019230769112236383,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1035.90763423280441202,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -67 ,0 ,0.35819319476662597745,0.17880391764590788938,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,0.00019230769112236383,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.780377736164268753,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -67 ,1 ,0.35819319476662597745,0.17880391764590788938,1000.00000000000000000,0.00000000000000000000,0.00034615383284023691,0.00019230769112236383,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.780377736164268753,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -68 ,0 ,0.46857672985752824024,0.19279712342279195502,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,0.00019230769112236383,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1042.54504822446142497,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -68 ,1 ,0.46857672985752824024,0.19279712342279195502,1000.00000000000000000,0.00000000000000000000,0.00042307690263237795,0.00019230769112236383,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1042.54504822446142497,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -69 ,0 ,0.50815569288434048189,0.17525219944882086675,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,0.00019230769112236383,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,951.311442997474614458,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -69 ,1 ,0.50815569288434048189,0.17525219944882086675,1000.00000000000000000,0.00000000000000000000,0.00049999996992110523,0.00019230769112236383,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,951.311442997474614458,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -70 ,0 ,-0.5188878019378441175,0.10762795946827592719,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,0.00011538461512858444,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.775650883583807626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -70 ,1 ,-0.5188878019378441175,0.10762795946827592719,1000.00000000000000000,0.00000000000000000000,-0.0004999999758382646,0.00011538461512858444,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.775650883583807626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -71 ,0 ,-0.4633235933051890742,0.11424559945033135877,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,0.00011538461512858444,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1030.12853085532628938,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -71 ,1 ,-0.4633235933051890742,0.11424559945033135877,1000.00000000000000000,0.00000000000000000000,-0.0004230769076392051,0.00011538461512858444,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1030.12853085532628938,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -72 ,0 ,-0.3857704025809525205,0.11647475253386865845,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,0.00011538461512858444,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1049.44785762218475611,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -72 ,1 ,-0.3857704025809525205,0.11647475253386865845,1000.00000000000000000,0.00000000000000000000,-0.0003461538369367320,0.00011538461512858444,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1049.44785762218475611,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -73 ,0 ,-0.2782375831981779290,0.10712929574400130439,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,0.00011538461512858444,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,968.453898596947396981,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -73 ,1 ,-0.2782375831981779290,0.10712929574400130439,1000.00000000000000000,0.00000000000000000000,-0.0002692307641860112,0.00011538461512858444,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,968.453898596947396981,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -74 ,0 ,-0.2008296688132033269,0.10838241787049239517,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,0.00011538461512858444,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,979.314290383968568676,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -74 ,1 ,-0.2008296688132033269,0.10838241787049239517,1000.00000000000000000,0.00000000000000000000,-0.0001923076898422090,0.00011538461512858444,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,979.314290383968568676,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -75 ,0 ,-0.1202422255450762839,0.10812684168019466579,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,0.00011538461512858444,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,977.099296729806496841,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -75 ,1 ,-0.1202422255450762839,0.10812684168019466579,1000.00000000000000000,0.00000000000000000000,-0.0001153846143604915,0.00011538461512858444,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,977.099296729806496841,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -76 ,0 ,-0.0399181910094093400,0.10763918893869088566,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,0.00011538461512858444,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.872972960729157421,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -76 ,1 ,-0.0399181910094093400,0.10763918893869088566,1000.00000000000000000,0.00000000000000000000,-0.0000384615381960248,0.00011538461512858444,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.872972960729157421,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -77 ,0 ,0.04259982830523008356,0.11568410086383884571,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,0.00011538461512858444,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1042.59554313338821884,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -77 ,1 ,0.04259982830523008356,0.11568410086383884571,1000.00000000000000000,0.00000000000000000000,0.00003846153819602484,0.00011538461512858444,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1042.59554313338821884,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -78 ,0 ,0.12451770369038070440,0.11240231985396009761,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,0.00011538461512858444,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1014.15344098466118794,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -78 ,1 ,0.12451770369038070440,0.11240231985396009761,1000.00000000000000000,0.00000000000000000000,0.00011538461436049158,0.00011538461512858444,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1014.15344098466118794,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -79 ,0 ,0.21219482833484112904,0.11520151365576820901,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,0.00011538461512858444,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.41312065416195764,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -79 ,1 ,0.21219482833484112904,0.11520151365576820901,1000.00000000000000000,0.00000000000000000000,0.00019230768984220914,0.00011538461512858444,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.41312065416195764,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -80 ,0 ,0.27695491416125883610,0.10657958043338393305,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,0.00011538461512858444,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,963.689699227692017302,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -80 ,1 ,0.27695491416125883610,0.10657958043338393305,1000.00000000000000000,0.00000000000000000000,0.00026923076418601120,0.00011538461512858444,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,963.689699227692017302,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -81 ,0 ,0.36438584778103316752,0.10934656742657544725,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,0.00011538461512858444,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,987.670253221896473405,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -81 ,1 ,0.36438584778103316752,0.10934656742657544725,1000.00000000000000000,0.00000000000000000000,0.00034615383693673202,0.00011538461512858444,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,987.670253221896473405,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -82 ,0 ,0.45773126309666223310,0.11272041843210119094,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,0.00011538461512858444,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1016.91029533466780776,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -82 ,1 ,0.45773126309666223310,0.11272041843210119094,1000.00000000000000000,0.00000000000000000000,0.00042307690763920520,0.00011538461512858444,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1016.91029533466780776,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -83 ,0 ,0.55432212593365448594,0.11580511153662058354,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,0.00011538461512858444,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1043.64430229982349374,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -83 ,1 ,0.55432212593365448594,0.11580511153662058354,1000.00000000000000000,0.00000000000000000000,0.00049999997583826468,0.00011538461512858444,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1043.64430229982349374,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -84 ,0 ,-0.5419509263578902169,0.03765007291047852561,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,0.00003846153845205580,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.90189592365106818,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -84 ,1 ,-0.5419509263578902169,0.03765007291047852561,1000.00000000000000000,0.00000000000000000000,-0.0004999999787968444,0.00003846153845205580,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.90189592365106818,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -85 ,0 ,-0.4579730389630555786,0.03759545228129676508,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,0.00003846153845205580,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.48175956457521351,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -85 ,1 ,-0.4579730389630555786,0.03759545228129676508,1000.00000000000000000,0.00000000000000000000,-0.0004230769101426188,0.00003846153845205580,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.48175956457521351,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -86 ,0 ,-0.3607059536193307214,0.03603997852156198139,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,0.00003846153845205580,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,977.039441801499947359,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -86 ,1 ,-0.3607059536193307214,0.03603997852156198139,1000.00000000000000000,0.00000000000000000000,-0.0003461538389849795,0.00003846153845205580,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,977.039441801499947359,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -87 ,0 ,-0.2830273052709604275,0.03639401112006577371,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,0.00003846153845205580,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.244289364867881886,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -87 ,1 ,-0.2830273052709604275,0.03639401112006577371,1000.00000000000000000,0.00000000000000000000,-0.0002692307657790926,0.00003846153845205580,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.244289364867881886,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -88 ,0 ,-0.1973612956508832005,0.03543379783783218162,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,0.00003846153845205580,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,961.278744020639123846,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -88 ,1 ,-0.1973612956508832005,0.03543379783783218162,1000.00000000000000000,0.00000000000000000000,-0.0001923076909801243,0.00003846153845205580,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,961.278744020639123846,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -89 ,0 ,-0.1232052129471131324,0.03702994288184153354,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,0.00003846153845205580,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1002.77851517511396650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -89 ,1 ,-0.1232052129471131324,0.03702994288184153354,1000.00000000000000000,0.00000000000000000000,-0.0001153846150432407,0.00003846153845205580,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1002.77851517511396650,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -90 ,0 ,-0.0424246375594649477,0.03838617605053346731,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,0.00003846153845205580,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.04057756979796067,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -90 ,1 ,-0.0424246375594649477,0.03838617605053346731,1000.00000000000000000,0.00000000000000000000,-0.0000384615384236079,0.00003846153845205580,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.04057756979796067,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -91 ,0 ,0.04014136623359557815,0.03610290472297528197,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,0.00003846153845205580,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,978.675523038649089357,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -91 ,1 ,0.04014136623359557815,0.03610290472297528197,1000.00000000000000000,0.00000000000000000000,0.00003846153842360791,0.00003846153845205580,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,978.675523038649089357,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -92 ,0 ,0.11987555769005356354,0.03592005779314496466,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,0.00003846153845205580,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,973.921502861888598090,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -92 ,1 ,0.11987555769005356354,0.03592005779314496466,1000.00000000000000000,0.00000000000000000000,0.00011538461504324078,0.00003846153845205580,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,973.921502861888598090,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -93 ,0 ,0.20362928693761644938,0.03668739610352378388,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,0.00003846153845205580,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,993.872298936656648038,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -93 ,1 ,0.20362928693761644938,0.03668739610352378388,1000.00000000000000000,0.00000000000000000000,0.00019230769098012445,0.00003846153845205580,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,993.872298936656648038,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -94 ,0 ,0.27943550518851689723,0.03588089681612195713,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,0.00003846153845205580,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.903317459039271852,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -94 ,1 ,0.27943550518851689723,0.03588089681612195713,1000.00000000000000000,0.00000000000000000000,0.00026923076577909266,0.00003846153845205580,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,972.903317459039271852,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -95 ,0 ,0.36886862776434303778,0.03694694233401190491,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,0.00003846153845205580,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.62050093101174752,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -95 ,1 ,0.36886862776434303778,0.03694694233401190491,1000.00000000000000000,0.00000000000000000000,0.00034615383898497955,0.00003846153845205580,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.62050093101174752,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -96 ,0 ,0.44961517485157914686,0.03683564642993927829,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,0.00003846153845205580,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.726807424410026214,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -96 ,1 ,0.44961517485157914686,0.03683564642993927829,1000.00000000000000000,0.00000000000000000000,0.00042307691014261891,0.00003846153845205580,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.726807424410026214,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -97 ,0 ,0.53612299092400717004,0.03720177016589487628,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,0.00003846153845205580,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1007.24602456160255314,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -97 ,1 ,0.53612299092400717004,0.03720177016589487628,1000.00000000000000000,0.00000000000000000000,0.00049999997879684445,0.00003846153845205580,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1007.24602456160255314,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -98 ,0 ,-0.5562290873654824885,-0.0387483930342905416,0.00000000000000000000,1.00000000000000000000,-0.0004999999787968444,-0.0000384615384520558,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1047.45821914980410838,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -98 ,1 ,-0.5562290873654824885,-0.0387483930342905416,1000.00000000000000000,0.00000000000000000000,-0.0004999999787968444,-0.0000384615384520558,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1047.45821914980410838,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -99 ,0 ,-0.4671661581117620976,-0.0384311904110687663,0.00000000000000000000,1.00000000000000000000,-0.0004230769101426188,-0.0000384615384520558,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1039.21095094400448033,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -99 ,1 ,-0.4671661581117620976,-0.0384311904110687663,1000.00000000000000000,0.00000000000000000000,-0.0004230769101426188,-0.0000384615384520558,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1039.21095094400448033,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -100 ,0 ,-0.3848736195733292175,-0.0387252747936235180,0.00000000000000000000,1.00000000000000000000,-0.0003461538389849795,-0.0000384615384520558,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1046.85714489231327206,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -100 ,1 ,-0.3848736195733292175,-0.0387252747936235180,1000.00000000000000000,0.00000000000000000000,-0.0003461538389849795,-0.0000384615384520558,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1046.85714489231327206,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -101 ,0 ,-0.2830581877053079398,-0.0363984228964566100,0.00000000000000000000,1.00000000000000000000,-0.0002692307657790926,-0.0000384615384520558,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.358995551057773809,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -101 ,1 ,-0.2830581877053079398,-0.0363984228964566100,1000.00000000000000000,0.00000000000000000000,-0.0002692307657790926,-0.0000384615384520558,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.358995551057773809,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -102 ,0 ,-0.2083777720035789038,-0.0376370931230382288,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,-0.0000384615384520558,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.56442145012010769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -102 ,1 ,-0.2083777720035789038,-0.0376370931230382288,1000.00000000000000000,0.00000000000000000000,-0.0001923076909801243,-0.0000384615384520558,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.56442145012010769,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -103 ,0 ,-0.1227857232810207616,-0.0368901129927648591,0.00000000000000000000,1.00000000000000000000,-0.0001153846150432407,-0.0000384615384520558,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.142938058224103770,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -103 ,1 ,-0.1227857232810207616,-0.0368901129927648591,1000.00000000000000000,0.00000000000000000000,-0.0001153846150432407,-0.0000384615384520558,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.142938058224103770,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -104 ,0 ,-0.0393939750956869144,-0.0353555135845138174,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,-0.0000384615384520558,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.243353433859965662,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -104 ,1 ,-0.0393939750956869144,-0.0353555135845138174,1000.00000000000000000,0.00000000000000000000,-0.0000384615384236079,-0.0000384615384520558,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.243353433859965662,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -105 ,0 ,0.04192579913549479564,-0.0378873376261943534,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,-0.0000384615384520558,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1025.07077853378359577,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -105 ,1 ,0.04192579913549479564,-0.0378873376261943534,1000.00000000000000000,0.00000000000000000000,0.00003846153842360791,-0.0000384615384520558,0.99999999852070997619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1025.07077853378359577,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -106 ,0 ,0.12391865911007758638,-0.0372677582701413170,0.00000000000000000000,1.00000000000000000000,0.00011538461504324078,-0.0000384615384520558,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1008.96171527243291166,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -106 ,1 ,0.12391865911007758638,-0.0372677582701413170,1000.00000000000000000,0.00000000000000000000,0.00011538461504324078,-0.0000384615384520558,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1008.96171527243291166,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -107 ,0 ,0.19989324962672178065,-0.0359401886363708358,0.00000000000000000000,1.00000000000000000000,0.00019230769098012445,-0.0000384615384520558,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,974.444904785890457787,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -107 ,1 ,0.19989324962672178065,-0.0359401886363708358,1000.00000000000000000,0.00000000000000000000,0.00019230769098012445,-0.0000384615384520558,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,974.444904785890457787,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -108 ,0 ,0.29403236393330939302,-0.0379661623773123665,0.00000000000000000000,1.00000000000000000000,0.00026923076577909266,-0.0000384615384520558,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.12022206335723240,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -108 ,1 ,0.29403236393330939302,-0.0379661623773123665,1000.00000000000000000,0.00000000000000000000,0.00026923076577909266,-0.0000384615384520558,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.12022206335723240,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -109 ,0 ,0.38329686358966752468,-0.0385500796807426646,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,-0.0000384615384520558,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1042.30207195628804583,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -109 ,1 ,0.38329686358966752468,-0.0385500796807426646,1000.00000000000000000,0.00000000000000000000,0.00034615383898497955,-0.0000384615384520558,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1042.30207195628804583,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -110 ,0 ,0.45947207964870923069,-0.0377317287113979257,0.00000000000000000000,1.00000000000000000000,0.00042307691014261891,-0.0000384615384520558,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1021.02494674807871888,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -110 ,1 ,0.45947207964870923069,-0.0377317287113979257,1000.00000000000000000,0.00000000000000000000,0.00042307691014261891,-0.0000384615384520558,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1021.02494674807871888,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -111 ,0 ,0.54943897879719960641,-0.0382260769685557472,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,-0.0000384615384520558,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1033.87800143735125857,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -111 ,1 ,0.54943897879719960641,-0.0382260769685557472,1000.00000000000000000,0.00000000000000000000,0.00049999997879684445,-0.0000384615384520558,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1033.87800143735125857,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -112 ,0 ,-0.5110151574692605169,-0.1058111952763801794,0.00000000000000000000,1.00000000000000000000,-0.0004999999758382646,-0.0001153846151285844,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,957.030361185549509173,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -112 ,1 ,-0.5110151574692605169,-0.1058111952763801794,1000.00000000000000000,0.00000000000000000000,-0.0004999999758382646,-0.0001153846151285844,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,957.030361185549509173,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -113 ,0 ,-0.4375410852965806451,-0.1072140061161002827,0.00000000000000000000,1.00000000000000000000,-0.0004230769076392051,-0.0001153846151285844,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.188055156767632070,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -113 ,1 ,-0.4375410852965806451,-0.1072140061161002827,1000.00000000000000000,0.00000000000000000000,-0.0004230769076392051,-0.0001153846151285844,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.188055156767632070,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -114 ,0 ,-0.3640360372830070967,-0.1092299639243873299,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,-0.0001153846151285844,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.659689534023755186,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -114 ,1 ,-0.3640360372830070967,-0.1092299639243873299,1000.00000000000000000,0.00000000000000000000,-0.0003461538369367320,-0.0001153846151285844,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.659689534023755186,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -115 ,0 ,-0.2767299135054704928,-0.1064831515793103478,0.00000000000000000000,1.00000000000000000000,-0.0002692307641860112,-0.0001153846151285844,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,962.853982490533098825,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -115 ,1 ,-0.2767299135054704928,-0.1064831515793103478,1000.00000000000000000,0.00000000000000000000,-0.0002692307641860112,-0.0001153846151285844,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,962.853982490533098825,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -116 ,0 ,-0.1989678468804907396,-0.1072653246990218772,0.00000000000000000000,1.00000000000000000000,-0.0001923076898422090,-0.0001153846151285844,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.632816209741804414,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -116 ,1 ,-0.1989678468804907396,-0.1072653246990218772,1000.00000000000000000,0.00000000000000000000,-0.0001923076898422090,-0.0001153846151285844,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.632816209741804414,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -117 ,0 ,-0.1265011152390264348,-0.1143857314158090165,0.00000000000000000000,1.00000000000000000000,-0.0001153846143604915,-0.0001153846151285844,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.34300789216081284,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -117 ,1 ,-0.1265011152390264348,-0.1143857314158090165,1000.00000000000000000,0.00000000000000000000,-0.0001153846143604915,-0.0001153846151285844,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.34300789216081284,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -118 ,0 ,-0.0394516961764171461,-0.1062397044331585271,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,-0.0001153846151285844,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.744107219202419400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -118 ,1 ,-0.0394516961764171461,-0.1062397044331585271,1000.00000000000000000,0.00000000000000000000,-0.0000384615381960248,-0.0001153846151285844,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.744107219202419400,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -119 ,0 ,0.04081022216522532664,-0.1103152824186747898,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,-0.0001153846151285844,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,996.065783172053102134,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -119 ,1 ,0.04081022216522532664,-0.1103152824186747898,1000.00000000000000000,0.00000000000000000000,0.00003846153819602484,-0.0001153846151285844,0.99999999260355021402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,996.065783172053102134,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -120 ,0 ,0.11933722941635908909,-0.1072218455454530816,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,-0.0001153846151285844,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.255996877975690040,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -120 ,1 ,0.11933722941635908909,-0.1072218455454530816,1000.00000000000000000,0.00000000000000000000,0.00011538461436049158,-0.0001153846151285844,0.99999998668639045185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,969.255996877975690040,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -121 ,0 ,0.19719055412745098432,-0.1061989490358927479,0.00000000000000000000,1.00000000000000000000,0.00019230768984220914,-0.0001153846151285844,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.390893775448489577,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -121 ,1 ,0.19719055412745098432,-0.1061989490358927479,1000.00000000000000000,0.00000000000000000000,0.00019230768984220914,-0.0001153846151285844,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.390893775448489577,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -122 ,0 ,0.29163068243960604819,-0.1128691955137149649,0.00000000000000000000,1.00000000000000000000,0.00026923076418601120,-0.0001153846151285844,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.19969671151511647,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -122 ,1 ,0.29163068243960604819,-0.1128691955137149649,1000.00000000000000000,0.00000000000000000000,0.00026923076418601120,-0.0001153846151285844,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1018.19969671151511647,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -123 ,0 ,0.38215206320044836640,-0.1152686393775947809,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,-0.0001153846151285844,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.99487691128365440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -123 ,1 ,0.38215206320044836640,-0.1152686393775947809,1000.00000000000000000,0.00000000000000000000,0.00034615383693673202,-0.0001153846151285844,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.99487691128365440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -124 ,0 ,0.46208738440286961646,-0.1139084515563264510,0.00000000000000000000,1.00000000000000000000,0.00042307690763920520,-0.0001153846151285844,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.20658243413367927,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -124 ,1 ,0.46208738440286961646,-0.1139084515563264510,1000.00000000000000000,0.00000000000000000000,0.00042307690763920520,-0.0001153846151285844,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.20658243413367927,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -125 ,0 ,0.53614465219669282802,-0.1116103097116146469,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,-0.0001153846151285844,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1007.28935306910284452,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -125 ,1 ,0.53614465219669282802,-0.1116103097116146469,1000.00000000000000000,0.00000000000000000000,0.00049999997583826468,-0.0001153846151285844,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1007.28935306910284452,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -126 ,0 ,-0.5165993019461145863,-0.1784997415710051771,0.00000000000000000000,1.00000000000000000000,-0.0004999999699211052,-0.0001923076911223638,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,968.198662136920574994,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -126 ,1 ,-0.5165993019461145863,-0.1784997415710051771,1000.00000000000000000,0.00000000000000000000,-0.0004999999699211052,-0.0001923076911223638,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,968.198662136920574994,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -127 ,0 ,-0.4353152688955022608,-0.1776782768935550593,0.00000000000000000000,1.00000000000000000000,-0.0004230769026323778,-0.0001923076911223638,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,963.927045787850943270,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -127 ,1 ,-0.4353152688955022608,-0.1776782768935550593,1000.00000000000000000,0.00000000000000000000,-0.0004230769026323778,-0.0001923076911223638,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,963.927045787850943270,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -128 ,0 ,-0.3857209022907011064,-0.1940970889865526183,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,-0.0001923076911223638,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1049.30486919768236475,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -128 ,1 ,-0.3857209022907011064,-0.1940970889865526183,1000.00000000000000000,0.00000000000000000000,-0.0003461538328402369,-0.0001923076911223638,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1049.30486919768236475,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -129 ,0 ,-0.2864414253349025774,-0.1844087150929076823,0.00000000000000000000,1.00000000000000000000,-0.0002692307609998483,-0.0001923076911223638,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.925324640203712078,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -129 ,1 ,-0.2864414253349025774,-0.1844087150929076823,1000.00000000000000000,0.00000000000000000000,-0.0002692307609998483,-0.0001923076911223638,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.925324640203712078,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -130 ,0 ,-0.2063959446691524257,-0.1862036405621988466,0.00000000000000000000,1.00000000000000000000,-0.0001923076875663784,-0.0001923076911223638,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1008.25893713804748585,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -130 ,1 ,-0.2063959446691524257,-0.1862036405621988466,1000.00000000000000000,0.00000000000000000000,-0.0001923076875663784,-0.0001923076911223638,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1008.25893713804748585,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -131 ,0 ,-0.1260910642998142039,-0.1899594690158281917,0.00000000000000000000,1.00000000000000000000,-0.0001153846129949931,-0.0001923076911223638,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.78924521729913976,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -131 ,1 ,-0.1260910642998142039,-0.1899594690158281917,1000.00000000000000000,0.00000000000000000000,-0.0001153846129949931,-0.0001923076911223638,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.78924521729913976,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -132 ,0 ,-0.0424235947522043771,-0.1919256685787037730,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,-0.0001923076911223638,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.01348300727136120,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -132 ,1 ,-0.0424235947522043771,-0.1919256685787037730,1000.00000000000000000,0.00000000000000000000,-0.0000384615377408587,-0.0001923076911223638,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.01348300727136120,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -133 ,0 ,0.04158609551071743709,-0.1877381723186156425,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,-0.0001923076911223638,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1016.23850232059851350,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -133 ,1 ,0.04158609551071743709,-0.1877381723186156425,1000.00000000000000000,0.00000000000000000000,0.00003846153774085871,-0.0001923076911223638,0.99999998076923080070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1016.23850232059851350,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -134 ,0 ,0.11777411926471503811,-0.1760978937556942069,0.00000000000000000000,1.00000000000000000000,0.00011538461299499319,-0.0001923076911223638,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,955.709053420321197336,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -134 ,1 ,0.11777411926471503811,-0.1760978937556942069,1000.00000000000000000,0.00000000000000000000,0.00011538461299499319,-0.0001923076911223638,0.99999997485207114955,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,955.709053420321197336,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -135 ,0 ,0.20820763827111707366,-0.1880153341976636693,0.00000000000000000000,1.00000000000000000000,0.00019230768756637849,-0.0001923076911223638,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.67974410053159317,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -135 ,1 ,0.20820763827111707366,-0.1880153341976636693,1000.00000000000000000,0.00000000000000000000,0.00019230768756637849,-0.0001923076911223638,0.99999996301775195828,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.67974410053159317,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -136 ,0 ,0.28622487428337456405,-0.1842540357666122008,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,-0.0001923076911223638,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.120992138509564028,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -136 ,1 ,0.28622487428337456405,-0.1842540357666122008,1000.00000000000000000,0.00000000000000000000,0.00026923076099984833,-0.0001923076911223638,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.120992138509564028,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -137 ,0 ,0.36162628038646837946,-0.1807111874963099606,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,-0.0001923076911223638,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,979.698181019385060608,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -137 ,1 ,0.36162628038646837946,-0.1807111874963099606,1000.00000000000000000,0.00000000000000000000,0.00034615383284023691,-0.0001923076911223638,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,979.698181019385060608,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -138 ,0 ,0.45634646534559597519,-0.1872379120466295676,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,-0.0001923076911223638,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1013.63714889023685827,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -138 ,1 ,0.45634646534559597519,-0.1872379120466295676,1000.00000000000000000,0.00000000000000000000,0.00042307690263237795,-0.0001923076911223638,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1013.63714889023685827,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -139 ,0 ,0.50891093546187715634,-0.1755426773789422190,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,-0.0001923076911223638,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,952.821928243415527504,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -139 ,1 ,0.50891093546187715634,-0.1755426773789422190,1000.00000000000000000,0.00000000000000000000,0.00049999996992110523,-0.0001923076911223638,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,952.821928243415527504,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -140 ,0 ,-0.5093776748522763631,-0.2460110725931239916,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,-0.0002692307659782278,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.755424010939577783,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -140 ,1 ,-0.5093776748522763631,-0.2460110725931239916,1000.00000000000000000,0.00000000000000000000,-0.0004999999610453660,-0.0002692307659782278,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,953.755424010939577783,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -141 ,0 ,-0.4610784671311338178,-0.2651443541210095622,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,-0.0002692307659782278,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1024.82189911591649433,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -141 ,1 ,-0.4610784671311338178,-0.2651443541210095622,1000.00000000000000000,0.00000000000000000000,-0.0004230768951221369,-0.0002692307659782278,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1024.82189911591649433,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -142 ,0 ,-0.3687491041817552717,-0.2585356399238037949,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,-0.0002692307659782278,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.27524608689316210,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -142 ,1 ,-0.3687491041817552717,-0.2585356399238037949,1000.00000000000000000,0.00000000000000000000,-0.0003461538266954942,-0.0002692307659782278,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.27524608689316210,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -143 ,0 ,-0.2920917443747613750,-0.2638225235574506721,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,-0.0002692307659782278,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1019.91224267767029232,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -143 ,1 ,-0.2920917443747613750,-0.2638225235574506721,1000.00000000000000000,0.00000000000000000000,-0.0002692307562206040,-0.0002692307659782278,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1019.91224267767029232,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -144 ,0 ,-0.2089453775998306450,-0.2642543062107428619,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,-0.0002692307659782278,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1021.51600683784499778,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -144 ,1 ,-0.2089453775998306450,-0.2642543062107428619,1000.00000000000000000,0.00000000000000000000,-0.0001923076841526324,-0.0002692307659782278,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1021.51600683784499778,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -145 ,0 ,-0.1282282280461522760,-0.2709299754365385171,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,-0.0002692307659782278,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1046.31134997606363867,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -145 ,1 ,-0.1282282280461522760,-0.2709299754365385171,1000.00000000000000000,0.00000000000000000000,-0.0001153846109467456,-0.0002692307659782278,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1046.31134997606363867,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -146 ,0 ,-0.0405401372088698766,-0.2555117361923200935,0.00000000000000000000,1.00000000000000000000,-0.0000384615370581095,-0.0002692307659782278,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,989.043603519979683369,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -146 ,1 ,-0.0405401372088698766,-0.2555117361923200935,1000.00000000000000000,0.00000000000000000000,-0.0000384615370581095,-0.0002692307659782278,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,989.043603519979683369,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -147 ,0 ,0.04095123455543604046,-0.2583894176885224713,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,-0.0002692307659782278,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.732134920715338921,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -147 ,1 ,0.04095123455543604046,-0.2583894176885224713,1000.00000000000000000,0.00000000000000000000,0.00003846153705810951,-0.0002692307659782278,0.99999996301775162521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.732134920715338921,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -148 ,0 ,0.12805986104381547607,-0.2705371190873888109,0.00000000000000000000,1.00000000000000000000,0.00011538461094674560,-0.0002692307659782278,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1044.85216923302232316,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -148 ,1 ,0.12805986104381547607,-0.2705371190873888109,1000.00000000000000000,0.00000000000000000000,0.00011538461094674560,-0.0002692307659782278,0.99999995710059208509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1044.85216923302232316,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -149 ,0 ,0.20906449352578945766,-0.2644210685121423098,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,-0.0002692307659782278,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1022.13540967909739265,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -149 ,1 ,0.20906449352578945766,-0.2644210685121423098,1000.00000000000000000,0.00000000000000000000,0.00019230768415263250,-0.0002692307659782278,0.99999994526627311586,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1022.13540967909739265,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -150 ,0 ,0.27573900173887605502,-0.2474697803288993247,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,-0.0002692307659782278,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.173481380702810383,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -150 ,1 ,0.27573900173887605502,-0.2474697803288993247,1000.00000000000000000,0.00000000000000000000,0.00026923075622060400,-0.0002692307659782278,0.99999992751479460650,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.173481380702810383,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -151 ,0 ,0.37766902569121274524,-0.2654733569595582043,0.00000000000000000000,1.00000000000000000000,0.00034615382669549426,-0.0002692307659782278,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1026.04390967386007105,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -151 ,1 ,0.37766902569121274524,-0.2654733569595582043,1000.00000000000000000,0.00000000000000000000,0.00034615382669549426,-0.0002692307659782278,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1026.04390967386007105,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -152 ,0 ,0.46560062786059353001,-0.2680220929224102488,0.00000000000000000000,1.00000000000000000000,0.00042307689512213698,-0.0002692307659782278,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1035.51064336453396208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -152 ,1 ,0.46560062786059353001,-0.2680220929224102488,1000.00000000000000000,0.00000000000000000000,0.00042307689512213698,-0.0002692307659782278,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1035.51064336453396208,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -153 ,0 ,0.53302740372979684480,-0.2587455428270017954,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,-0.0002692307659782278,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1001.05488545104708464,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -153 ,1 ,0.53302740372979684480,-0.2587455428270017954,1000.00000000000000000,0.00000000000000000000,0.00049999996104536600,-0.0002692307659782278,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1001.05488545104708464,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -154 ,0 ,-0.5082175167712038588,-0.3154967692569145554,0.00000000000000000000,1.00000000000000000000,-0.0004999999492110472,-0.0003461538392410105,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,951.435130187195454709,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -154 ,1 ,-0.5082175167712038588,-0.3154967692569145554,1000.00000000000000000,0.00000000000000000000,-0.0004999999492110472,-0.0003461538392410105,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,951.435130187195454709,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -155 ,0 ,-0.4614899950551638041,-0.3412365941560488447,0.00000000000000000000,1.00000000000000000000,-0.0004230768851084824,-0.0003461538392410105,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1025.79462582524001845,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -155 ,1 ,-0.4614899950551638041,-0.3412365941560488447,1000.00000000000000000,0.00000000000000000000,-0.0004230768851084824,-0.0003461538392410105,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1025.79462582524001845,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -156 ,0 ,-0.3626953215533518237,-0.3263491880887234297,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,-0.0003461538392410105,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,982.786562994077712573,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -156 ,1 ,-0.3626953215533518237,-0.3263491880887234297,1000.00000000000000000,0.00000000000000000000,-0.0003461538185025041,-0.0003461538392410105,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,982.786562994077712573,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -157 ,0 ,-0.2796871705442759981,-0.3232516543900293415,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,-0.0003461538392410105,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,973.838132130257690732,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -157 ,1 ,-0.2796871705442759981,-0.3232516543900293415,1000.00000000000000000,0.00000000000000000000,-0.0002692307498482782,-0.0003461538392410105,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,973.838132130257690732,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -158 ,0 ,-0.2098531265040638749,-0.3413894902391358954,0.00000000000000000000,1.00000000000000000000,-0.0001923076796009712,-0.0003461538392410105,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1026.23632562964576209,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -158 ,1 ,-0.2098531265040638749,-0.3413894902391358954,1000.00000000000000000,0.00000000000000000000,-0.0001923076796009712,-0.0003461538392410105,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1026.23632562964576209,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -159 ,0 ,-0.1202513503105780701,-0.3244079113462917662,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,-0.0003461538392410105,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,977.178430070611739211,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -159 ,1 ,-0.1202513503105780701,-0.3244079113462917662,1000.00000000000000000,0.00000000000000000000,-0.0001153846082157488,-0.0003461538392410105,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,977.178430070611739211,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -160 ,0 ,-0.0414700648859237588,-0.3368844442221031187,0.00000000000000000000,1.00000000000000000000,-0.0000384615361477772,-0.0003461538392410105,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1013.22174798720004673,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -160 ,1 ,-0.0414700648859237588,-0.3368844442221031187,1000.00000000000000000,0.00000000000000000000,-0.0000384615361477772,-0.0003461538392410105,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1013.22174798720004673,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -161 ,0 ,0.04045266991164696290,-0.3277278890856339943,0.00000000000000000000,1.00000000000000000000,0.00003846153614777726,-0.0003461538392410105,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.769477064693091961,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -161 ,1 ,0.04045266991164696290,-0.3277278890856339943,1000.00000000000000000,0.00000000000000000000,0.00003846153614777726,-0.0003461538392410105,0.99999993934911302062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.769477064693091961,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -162 ,0 ,0.12134388847713498127,-0.3276855259841459644,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,-0.0003461538392410105,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.647094769061482111,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -162 ,1 ,0.12134388847713498127,-0.3276855259841459644,1000.00000000000000000,0.00000000000000000000,0.00011538460821574884,-0.0003461538392410105,0.99999993343195370254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.647094769061482111,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -163 ,0 ,0.20411972004592765506,-0.3310693581386857098,0.00000000000000000000,1.00000000000000000000,0.00019230767960097126,-0.0003461538392410105,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,996.422610077397393979,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -163 ,1 ,0.20411972004592765506,-0.3310693581386857098,1000.00000000000000000,0.00000000000000000000,0.00019230767960097126,-0.0003461538392410105,0.99999992159763495536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,996.422610077397393979,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -164 ,0 ,0.29776143610491700997,-0.3464899970340372115,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,-0.0003461538392410105,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.97112333139853035,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -164 ,1 ,0.29776143610491700997,-0.3464899970340372115,1000.00000000000000000,0.00000000000000000000,0.00026923074984827827,-0.0003461538392410105,0.99999990384615689009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.97112333139853035,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -165 ,0 ,0.35704723470075883096,-0.3207011008977465049,0.00000000000000000000,1.00000000000000000000,0.00034615381850250414,-0.0003461538392410105,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,966.469866338737688238,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -165 ,1 ,0.35704723470075883096,-0.3207011008977465049,1000.00000000000000000,0.00000000000000000000,0.00034615381850250414,-0.0003461538392410105,0.99999988017751961777,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,966.469866338737688238,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -166 ,0 ,0.45815933052972990235,-0.3385115048087374844,0.00000000000000000000,1.00000000000000000000,0.00042307688510848247,-0.0003461538392410105,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.92214533134608700,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -166 ,1 ,0.45815933052972990235,-0.3385115048087374844,1000.00000000000000000,0.00000000000000000000,0.00042307688510848247,-0.0003461538392410105,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1017.92214533134608700,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -167 ,0 ,0.54817411765168255755,-0.3431590336623863146,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,-0.0003461538392410105,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.34834006556934582,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -167 ,1 ,0.54817411765168255755,-0.3431590336623863146,1000.00000000000000000,0.00000000000000000000,0.00049999994921104721,-0.0003461538392410105,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1031.34834006556934582,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -168 ,0 ,-0.5554612864956958162,-0.4255826718745283621,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,-0.0004230769104555456,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1045.92271017848679548,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -168 ,1 ,-0.5554612864956958162,-0.4255826718745283621,1000.00000000000000000,0.00000000000000000000,-0.0004999999344181487,-0.0004230769104555456,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1045.92271017848679548,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -169 ,0 ,-0.4467314773266597982,-0.4023084379235626339,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,-0.0004230769104555456,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.910882835072015950,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -169 ,1 ,-0.4467314773266597982,-0.4023084379235626339,1000.00000000000000000,0.00000000000000000000,-0.0004230768725914143,-0.0004230769104555456,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.910882835072015950,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -170 ,0 ,-0.3625074008966603922,-0.3986415572663759010,0.00000000000000000000,1.00000000000000000000,-0.0003461538082612664,-0.0004230769104555456,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,982.243710114068676375,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -170 ,1 ,-0.3625074008966603922,-0.3986415572663759010,1000.00000000000000000,0.00000000000000000000,-0.0003461538082612664,-0.0004230769104555456,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,982.243710114068676375,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -171 ,0 ,-0.2997457191473566484,-0.4266059421297224707,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,-0.0004230769104555456,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1048.34134903564472551,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -171 ,1 ,-0.2997457191473566484,-0.4266059421297224707,1000.00000000000000000,0.00000000000000000000,-0.0002692307418828711,-0.0004230769104555456,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1048.34134903564472551,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -172 ,0 ,-0.2045751359667724311,-0.4056422500206230408,0.00000000000000000000,1.00000000000000000000,-0.0001923076739113946,-0.0004230769104555456,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.790802572291568139,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -172 ,1 ,-0.2045751359667724311,-0.4056422500206230408,1000.00000000000000000,0.00000000000000000000,-0.0001923076739113946,-0.0004230769104555456,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,998.790802572291568139,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -173 ,0 ,-0.1260404338701763271,-0.4177252074985165486,0.00000000000000000000,1.00000000000000000000,-0.0001153846048020029,-0.0004230769104555456,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.35052109931598351,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -173 ,1 ,-0.1260404338701763271,-0.4177252074985165486,1000.00000000000000000,0.00000000000000000000,-0.0001153846048020029,-0.0004230769104555456,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1027.35052109931598351,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -174 ,0 ,-0.0404031815684558828,-0.4000119453090338339,0.00000000000000000000,1.00000000000000000000,-0.0000384615350098619,-0.0004230769104555456,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,985.482809220617355094,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -174 ,1 ,-0.0404031815684558828,-0.4000119453090338339,1000.00000000000000000,0.00000000000000000000,-0.0000384615350098619,-0.0004230769104555456,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,985.482809220617355094,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -175 ,0 ,0.04221397530242154000,-0.4199306775760120458,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,-0.0004230769104555456,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1032.56345052891015257,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -175 ,1 ,0.04221397530242154000,-0.4199306775760120458,1000.00000000000000000,0.00000000000000000000,0.00003846153500986195,-0.0004230769104555456,0.99999990976331498693,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1032.56345052891015257,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -176 ,0 ,0.12068148817188632804,-0.3980757387221393606,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,-0.0004230769104555456,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,980.906320787794129500,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -176 ,1 ,0.12068148817188632804,-0.3980757387221393606,1000.00000000000000000,0.00000000000000000000,0.00011538460480200291,-0.0004230769104555456,0.99999990384615566885,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,980.906320787794129500,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -177 ,0 ,0.20698586105614699692,-0.4109458455663741460,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,-0.0004230769104555456,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1011.32657423622038095,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -177 ,1 ,0.20698586105614699692,-0.4109458455663741460,1000.00000000000000000,0.00000000000000000000,0.00019230767391139474,-0.0004230769104555456,0.99999989201183736575,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1011.32657423622038095,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -178 ,0 ,0.27497266042598367263,-0.3876768470602894312,0.00000000000000000000,1.00000000000000000000,0.00026923074188287118,-0.0004230769104555456,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,956.327121581075289213,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -178 ,1 ,0.27497266042598367263,-0.3876768470602894312,1000.00000000000000000,0.00000000000000000000,0.00026923074188287118,-0.0004230769104555456,0.99999987426035974458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,956.327121581075289213,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -179 ,0 ,0.38120121258723310697,-0.4214895511521338788,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,-0.0004230769104555456,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1036.24806090966421834,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -179 ,1 ,0.38120121258723310697,-0.4214895511521338788,1000.00000000000000000,0.00000000000000000000,0.00034615380826126648,-0.0004230769104555456,0.99999985059172324941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1036.24806090966421834,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -180 ,0 ,0.45730106460040570448,-0.4128780261432553055,0.00000000000000000000,1.00000000000000000000,0.00042307687259141442,-0.0004230769104555456,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1015.89354664509198755,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -180 ,1 ,0.45730106460040570448,-0.4128780261432553055,1000.00000000000000000,0.00000000000000000000,0.00042307687259141442,-0.0004230769104555456,0.99999982100592776923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1015.89354664509198755,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -181 ,0 ,0.55182636701233589437,-0.4225069704615588284,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,-0.0004230769104555456,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.65287025822817668,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -181 ,1 ,0.55182636701233589437,-0.4225069704615588284,1000.00000000000000000,0.00000000000000000000,0.00049999993441814875,-0.0004230769104555456,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1038.65287025822817668,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -182 ,0 ,-0.5112653589180122803,-0.4587654187636883151,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,-0.0004999999791666669,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,957.530877424496225103,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -182 ,1 ,-0.5112653589180122803,-0.4587654187636883151,1000.00000000000000000,0.00000000000000000000,-0.0004999999166666708,-0.0004999999791666669,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,957.530877424496225103,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -183 ,0 ,-0.4346125900337609038,-0.4611331153967458407,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,-0.0004999999791666669,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,962.266270887919176857,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -183 ,1 ,-0.4346125900337609038,-0.4611331153967458407,1000.00000000000000000,0.00000000000000000000,-0.0004230768575709328,-0.0004999999791666669,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,962.266270887919176857,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -184 ,0 ,-0.3770328040109403033,-0.4921029920290715953,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,-0.0004999999791666669,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1024.20602673339385546,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -184 ,1 ,-0.3770328040109403033,-0.4921029920290715953,1000.00000000000000000,0.00000000000000000000,-0.0003461537959717815,-0.0004999999791666669,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1024.20602673339385546,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -185 ,0 ,-0.2824235127156454194,-0.4720008562729245960,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,-0.0004999999791666669,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,984.001753545921928889,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -185 ,1 ,-0.2824235127156454194,-0.4720008562729245960,1000.00000000000000000,0.00000000000000000000,-0.0002692307323243828,-0.0004999999791666669,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,984.001753545921928889,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -186 ,0 ,-0.1987072677013288768,-0.4641389393524581463,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,-0.0004999999791666669,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,968.277919049829279174,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -186 ,1 ,-0.1987072677013288768,-0.4641389393524581463,1000.00000000000000000,0.00000000000000000000,-0.0001923076670839029,-0.0004999999791666669,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,968.277919049829279174,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -187 ,0 ,-0.1222476834307649751,-0.4772400040733256743,0.00000000000000000000,1.00000000000000000000,-0.0001153846007055078,-0.0004999999791666669,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,994.480049583319441808,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -187 ,1 ,-0.1222476834307649751,-0.4772400040733256743,1000.00000000000000000,0.00000000000000000000,-0.0001153846007055078,-0.0004999999791666669,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,994.480049583319441808,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -188 ,0 ,-0.0408474977772842889,-0.4785175127707315123,0.00000000000000000000,1.00000000000000000000,-0.0000384615336443635,-0.0004999999791666669,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.035067084590195918,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -188 ,1 ,-0.0408474977772842889,-0.4785175127707315123,1000.00000000000000000,0.00000000000000000000,-0.0000384615336443635,-0.0004999999791666669,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,997.035067084590195918,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -189 ,0 ,0.04195441431265894277,-0.4929074289333095215,0.00000000000000000000,1.00000000000000000000,0.00003846153364436359,-0.0004999999791666669,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1025.81490060890610038,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -189 ,1 ,0.04195441431265894277,-0.4929074289333095215,1000.00000000000000000,0.00000000000000000000,0.00003846153364436359,-0.0004999999791666669,0.99999987426035774618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1025.81490060890610038,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -190 ,0 ,0.12757958402373870132,-0.5003449086195554951,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,-0.0004999999791666669,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.68986060118800196,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -190 ,1 ,0.12757958402373870132,-0.5003449086195554951,1000.00000000000000000,0.00000000000000000000,0.00011538460070550785,-0.0004999999791666669,0.99999986834319865014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.68986060118800196,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -191 ,0 ,0.19716893003488014657,-0.4601392610617319745,0.00000000000000000000,1.00000000000000000000,0.00019230766708390299,-0.0004999999791666669,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.278562135070501426,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -191 ,1 ,0.19716893003488014657,-0.4601392610617319745,1000.00000000000000000,0.00000000000000000000,0.00019230766708390299,-0.0004999999791666669,0.99999985650888079113,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,960.278562135070501426,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -192 ,0 ,0.27595028946731137153,-0.4599791548075489178,0.00000000000000000000,1.00000000000000000000,0.00026923073232438285,-0.0004999999791666669,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.958349613362088348,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -192 ,1 ,0.27595028946731137153,-0.4599791548075489178,1000.00000000000000000,0.00000000000000000000,0.00026923073232438285,-0.0004999999791666669,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,959.958349613362088348,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -193 ,0 ,0.36404650149313255713,-0.4733449975655781849,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,-0.0004999999791666669,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.690036243240911062,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -193 ,1 ,0.36404650149313255713,-0.4733449975655781849,1000.00000000000000000,0.00000000000000000000,0.00034615379597178157,-0.0004999999791666669,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,986.690036243240911062,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -194 ,0 ,0.45738722680279103594,-0.4880485982605994310,0.00000000000000000000,1.00000000000000000000,0.00042307685757093292,-0.0004999999791666669,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1016.09723885858340963,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -194 ,1 ,0.45738722680279103594,-0.4880485982605994310,1000.00000000000000000,0.00000000000000000000,0.00042307685757093292,-0.0004999999791666669,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1016.09723885858340963,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -195 ,0 ,0.54003956379788653485,-0.4875396272403385578,0.00000000000000000000,1.00000000000000000000,0.00049999991666667084,-0.0004999999791666669,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1015.07929677564732173,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -195 ,1 ,0.54003956379788653485,-0.4875396272403385578,1000.00000000000000000,0.00000000000000000000,0.00049999991666667084,-0.0004999999791666669,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1015.07929677564732173,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -196 ,0 ,-0.5387730364695781926,0.48627309975371429962,0.00000000000000000000,1.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1012.54624169685496326,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -196 ,1 ,-0.5387730364695781926,0.48627309975371429962,1000.00000000000000000,0.00000000000000000000,-0.0004999999166666708,0.00049999997916666690,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1012.54624169685496326,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -197 ,0 ,-0.4315082647603292742,0.45746436693115022364,0.00000000000000000000,1.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,954.928773650999005440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -197 ,1 ,-0.4315082647603292742,0.45746436693115022364,1000.00000000000000000,0.00000000000000000000,-0.0004230768575709328,0.00049999997916666690,0.99999978550297374813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,954.928773650999005440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -198 ,0 ,-0.3606233002491213701,0.46840037303565268400,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,976.800786771337698155,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -198 ,1 ,-0.3606233002491213701,0.46840037303565268400,1000.00000000000000000,0.00000000000000000000,-0.0003461537959717815,0.00049999997916666690,0.99999981508876811808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,976.800786771337698155,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -199 ,0 ,-0.2840745856529754420,0.47506713487767548986,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.134311010946930764,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -199 ,1 ,-0.2840745856529754420,0.47506713487767548986,1000.00000000000000000,0.00000000000000000000,-0.0002692307323243828,0.00049999997916666690,0.99999983875740383609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,990.134311010946930764,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneGratingDevAzMisVLS.rayui.csv b/Intern/RAY-Core/tests/output/PlaneGratingDevAzMisVLS.rayui.csv deleted file mode 100644 index 61b76aa68..000000000 --- a/Intern/RAY-Core/tests/output/PlaneGratingDevAzMisVLS.rayui.csv +++ /dev/null @@ -1,68 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-170.30092127167500848,1234.43413671559005706,0.00000000000000000000,-1.0000000000000000000,-0.1084051209471870030,0.77415339656600101747,0.62364641291179601090,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,598.113508530244985195,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-93.112380529189707090,673.148378875918979247,0.00000000000000000000,-1.0000000000000000000,-0.0801756837633638974,0.55966120124129703494,0.82483404364649304252,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,207.925166600273996664,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,-59.011964580084196541,427.527601098578998062,0.00000000000000000000,-1.0000000000000000000,-0.0584388627840900995,0.39598302082336500617,0.91639639159923802491,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,87.0710773668347002285,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,-38.523825366125201696,281.972733354691001750,0.00000000000000000000,-1.0000000000000000000,-0.0422497011285715012,0.27473669451828697241,0.96059081373897803324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,36.9787274093395978979,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-24.863779144032498891,186.801059693268001637,0.00000000000000000000,-1.0000000000000000000,-0.0304781063550668002,0.18696267123686599598,0.98189411068454102160,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,14.4398716768792994002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-256.39919311109201771,1809.84923424940006952,0.00000000000000000000,-1.0000000000000000000,-0.1214279459656460030,0.86981777526283898804,0.47819691736288799654,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1084.73167715955992207,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,-120.41809110151200457,821.986397467831011454,0.00000000000000000000,-1.0000000000000000000,-0.0907765665113915015,0.63537821183591303153,0.76684688360623898262,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,299.427656190771983801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,-76.346593589821893033,504.008813382769005784,0.00000000000000000000,-1.0000000000000000000,-0.0666300650427584933,0.45305617825709898482,0.88898848911303096631,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,120.674350356993002719,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-51.851518754917897524,329.262393480704986359,0.00000000000000000000,-1.0000000000000000000,-0.0484517574565848999,0.31665670230605297286,0.94730193712671395545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,51.5858844903700983763,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-35.990869697327099174,217.966515130306987657,0.00000000000000000000,-1.0000000000000000000,-0.0351175383696048989,0.21706762740527199562,0.97552468120058599687,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,21.1107812498607998463,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,-25.105636334506900908,143.391341683174005083,0.00000000000000000000,-1.0000000000000000000,-0.0255521410154655008,0.14593413018799900049,0.98896426514601498691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,7.20661003969677960157,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,-17.460567836978299283,92.8172304020251033307,0.00000000000000000000,-1.0000000000000000000,-0.0188325796754524009,0.09620343207410760044,0.99518351754836198441,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.89615296659337695395,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-12.033210159334300826,58.7153624258777000477,0.00000000000000000000,-1.0000000000000000000,-0.0142041319052258006,0.06215966338559009846,0.99796513911288897702,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9041299632216399650,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-8.1399166899881798542,36.0295041129772997123,0.00000000000000000000,-1.0000000000000000000,-0.0110708730260002004,0.03931368821927540280,0.99916558672176003508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.1111774539008401063,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,-5.2970367821015598153,21.1702936926355995694,0.00000000000000000000,-1.0000000000000000000,-0.0089770063768353398,0.02424344744461959938,0.99966577845423398862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.6166705245554999770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,-3.1586517838254901668,11.5645017279361006501,0.00000000000000000000,-1.0000000000000000000,-0.0075850241803326196,0.01442032153207889987,0.99986725205653903536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8235861468907601512,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-1.4810528518186298896,5.39651590761636956727,0.00000000000000000000,-1.0000000000000000000,-0.0066535477231063795,0.00803827135128504059,0.99994555676615703987,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9074780302940999021,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-0.0975130198860574004,1.42310651246819008797,0.00000000000000000000,-1.0000000000000000000,-0.0060163747433045703,0.00385474499292124978,0.99997447176214804276,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9420221108572399693,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,-20.377968533720100197,69.3217104713750984501,0.00000000000000000000,-1.0000000000000000000,-0.0163562983088611987,0.07357453640586339438,0.99715558419852101668,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.0535551930806799081,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,-15.962452838213799566,42.7551389983006018269,0.00000000000000000000,-1.0000000000000000000,-0.0127115691582933999,0.04689971452682629993,0.99881871868063998309,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-2.7259748021096998904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -20 ,0 ,-12.764343256320900721,25.2514126891333994251,0.00000000000000000000,-1.0000000000000000000,-0.0102655610164890005,0.02919583730136929983,0.99952099594820298378,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.4341522780808899639,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -21 ,0 ,-10.389749549580599818,13.8851708203192991675,0.00000000000000000000,-1.0000000000000000000,-0.0086381161649907497,0.01761277164930169850,0.99980756809695603415,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.7265464975156401550,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -22 ,0 ,-8.5590379372971607807,6.57525510671036972354,0.00000000000000000000,-1.0000000000000000000,-0.0075536131676018003,0.01008737968622789964,0.99992059069667105219,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8455676819989998982,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -23 ,0 ,-7.0785467173482103930,1.87847431320879998395,0.00000000000000000000,-1.0000000000000000000,-0.0068194229794924501,0.00517916066834113973,0.99996333521034597158,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8943862550460202065,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -24 ,0 ,-5.8187061236987602796,-1.1714957320137500129,0.00000000000000000000,-1.0000000000000000000,-0.0063061525935062699,0.00192107289841082990,0.99997827072311296081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9153958395961598881,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -25 ,0 ,-4.6960080650904698629,-3.1977414227668101709,0.00000000000000000000,-1.0000000000000000000,-0.0059302578889001396,-0.0003110428408639729,0.99998236749140800849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9255313703234802069,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -26 ,0 ,-3.6581114451243501584,-4.5909078033699799448,0.00000000000000000000,-1.0000000000000000000,-0.0056393302718077799,-0.0019086467457978600,0.99998227735379596747,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9314301046279100937,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -27 ,0 ,-2.6719112657130601462,-5.5981158173879599360,0.00000000000000000000,-1.0000000000000000000,-0.0054002070981858697,-0.0031194082357093801,0.99998055333869195759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9356393832126701504,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -28 ,0 ,-1.7145404183834700440,-6.3900853268305102261,0.00000000000000000000,-1.0000000000000000000,-0.0051899751160073897,-0.0041144319333414900,0.99997806756356399926,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9390293691092201910,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -29 ,0 ,-0.7673028672735170419,-7.1064110834257903093,0.00000000000000000000,-1.0000000000000000000,-0.0049898970864903097,-0.0050336242129289700,0.99997488146170399048,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9416613374106601597,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -30 ,0 ,0.18745932927468100803,-7.8789479935196595761,0.00000000000000000000,-1.0000000000000000000,-0.0047822740877862899,-0.0060091270133781895,0.99997050968870404563,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9430509685375900730,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -31 ,0 ,1.16656345481277989861,-8.8332828455944092382,0.00000000000000000000,-1.0000000000000000000,-0.0045502485604280596,-0.0071667894034520701,0.99996396553460098477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9422136178675399875,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -32 ,0 ,-10.525904252462099819,-4.9810555389897297473,0.00000000000000000000,-1.0000000000000000000,-0.0063289258182603301,-0.0014315073121624200,0.99997894752079796720,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8891582319093900288,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -33 ,0 ,-9.5229959299253792437,-6.1129606993655603019,0.00000000000000000000,-1.0000000000000000000,-0.0060730689316291696,-0.0027672261297635200,0.99997772989866995363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8943460988349398732,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -34 ,0 ,-8.5569149287387897828,-6.9699190520973504092,0.00000000000000000000,-1.0000000000000000000,-0.0058541165216328796,-0.0038273699648955598,0.99997553998030497268,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8985045863198601878,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -35 ,0 ,-7.6078974313088902903,-7.6994908745455603593,0.00000000000000000000,-1.0000000000000000000,-0.0056522630400350900,-0.0047598274278414700,0.99997269760998097609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9019528187339997948,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -36 ,0 ,-6.6580708983150600488,-8.4351308089679104540,0.00000000000000000000,-1.0000000000000000000,-0.0054495953457884003,-0.0056983441720486801,0.99996891490899098009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9044035128592899930,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -37 ,0 ,-5.6901324856631401161,-9.3060515125357401444,0.00000000000000000000,-1.0000000000000000000,-0.0052287694806865897,-0.0067724051307588703,0.99996339657932598043,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9050630267838601916,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -38 ,0 ,-4.6889639631503499117,-10.425163638715000402,0.00000000000000000000,-1.0000000000000000000,-0.0049746300038468402,-0.0080951438809297691,0.99995485983211795932,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9026511871177298473,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -39 ,0 ,-3.6461850693603299333,-11.855071564426300056,0.00000000000000000000,-1.0000000000000000000,-0.0046787750857984200,-0.0097292605540781201,0.99994172357831301312,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8955899791997099512,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -40 ,0 ,-2.5676500908441100001,-13.552079728430399541,0.00000000000000000000,-1.0000000000000000000,-0.0043470731598403500,-0.0116309144335319004,0.99992290942071204717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8828027544224101852,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -41 ,0 ,-1.4838962806478499523,-15.288134261060200458,0.00000000000000000000,-1.0000000000000000000,-0.0040101391361863697,-0.0135715443860686992,0.99989986096963001660,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8657295300443998975,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -42 ,0 ,-0.4635499362432469738,-16.550657768050399454,0.00000000000000000000,-1.0000000000000000000,-0.0037367722441523599,-0.0150376052184298999,0.99987994627479603870,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8517235097506299368,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -43 ,0 ,0.37033496578336899673,-16.420513243227798483,0.00000000000000000000,-1.0000000000000000000,-0.0036503278470094301,-0.0151083828872781000,0.99987919864008600878,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8567878095080900813,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -44 ,0 ,0.82111995393453596214,-13.429111947725500542,0.00000000000000000000,-1.0000000000000000000,-0.0039479155806884996,-0.0123125220756176000,0.99991640438723905504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8996720650993701440,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -45 ,0 ,0.59682511512571301270,-5.3966683201509200173,0.00000000000000000000,-1.0000000000000000000,-0.0049221462997426704,-0.0044648989479225903,0.99997791833279503492,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9667522924304399190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -46 ,0 ,-9.4615645591695791694,-13.747209530738899729,0.00000000000000000000,-1.0000000000000000000,-0.0050628668508786696,-0.0109583227043417007,0.99992713861698800936,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8480143437179799015,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -47 ,0 ,-8.3741047590167596581,-15.510963162211799826,0.00000000000000000000,-1.0000000000000000000,-0.0047222168364862496,-0.0129267256515329994,0.99990529573159003806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8326175404927198542,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -48 ,0 ,-7.3183040162873798095,-17.038327223186101377,0.00000000000000000000,-1.0000000000000000000,-0.0044133049212564598,-0.0146581366480530005,0.99988282401973405111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8165327367499899402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -49 ,0 ,-6.3942607452700999104,-17.581572064191501425,0.00000000000000000000,-1.0000000000000000000,-0.0042364828728313000,-0.0154035303858007007,0.99987238358928698378,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8123960837701797998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -50 ,0 ,-5.7680016035542198693,-15.900556583865400384,0.00000000000000000000,-1.0000000000000000000,-0.0043581862269591502,-0.0139206034005751998,0.99989360584703002032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8398023709261202007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -51 ,0 ,-5.6922807553581797890,-10.107946067925800193,0.00000000000000000000,-1.0000000000000000000,-0.0050317545596459695,-0.0083178821293310896,0.99995274602499795157,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9049906011131301220,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -52 ,0 ,-6.5299670722758103025,2.50370019487026995719,0.00000000000000000000,-1.0000000000000000000,-0.0066204848969489303,0.00411896673842410999,0.99996960118432398623,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9279178271826800106,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -53 ,0 ,-8.7812978232325793470,25.6611910971803993675,0.00000000000000000000,-1.0000000000000000000,-0.0096220351228757002,0.02711342802973880014,0.99958605355445495632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.5510642069406199716,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -54 ,0 ,-13.122761326657599312,64.3919771484399063865,0.00000000000000000000,-1.0000000000000000000,-0.0146925951864594998,0.06558772395130869903,0.99773863216454294899,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.7086075656144399381,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -55 ,0 ,-20.487796981871099433,125.608489979460003382,0.00000000000000000000,-1.0000000000000000000,-0.0226680884225094990,0.12583958849811399671,0.99179158886022800167,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.28260638987705988256,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -56 ,0 ,-32.290975313023096759,219.743520134832010626,0.00000000000000000000,-1.0000000000000000000,-0.0345773183528340979,0.21567631817995400189,0.97585251694703600833,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,20.7106810199408002404,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -57 ,0 ,-51.153325195686200288,366.066541831190988887,0.00000000000000000000,-1.0000000000000000000,-0.0516351976458701983,0.34443630899958399549,0.93738862560136404500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,62.6648735857552026118,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -58 ,0 ,-83.776487391802504589,613.775576295939004012,0.00000000000000000000,-1.0000000000000000000,-0.0751766796627166972,0.52266641634119204162,0.84921627637719299119,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,173.189884157638999795,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -59 ,0 ,-160.22026194517599151,1183.38360001005003141,0.00000000000000000000,-1.0000000000000000000,-0.1063171481009260038,0.76019477472930097050,0.64093725784506605513,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,555.042835316110995336,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -60 ,0 ,-17.640403815417201371,46.4711363839245024109,0.00000000000000000000,-1.0000000000000000000,-0.0130437440413355993,0.04858314067681190201,0.99873396817338699893,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-2.6662583021899299851,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -61 ,0 ,-23.717414899247199144,98.0976539595332042154,0.00000000000000000000,-1.0000000000000000000,-0.0197962556859964007,0.09965997041534480072,0.99482460693210994495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.25375398658376990823,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -62 ,0 ,-33.611346386384099105,178.033400912829989692,0.00000000000000000000,-1.0000000000000000000,-0.0300656385411308992,0.17714937456098500678,0.98372463447438696082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,12.5659780668185998564,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -63 ,0 ,-49.334782006700301337,301.042792596823971962,0.00000000000000000000,-1.0000000000000000000,-0.0449986187952485031,0.28981407698793199001,0.95602454209405796081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,41.9518243791428986355,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -64 ,0 ,-75.367331723219095351,499.902250456420006230,0.00000000000000000000,-1.0000000000000000000,-0.0658998279855328022,0.44782218798516998381,0.89169080998945604576,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,117.255230046985005287,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -65 ,0 ,-127.06473425801100063,886.848508260773996880,0.00000000000000000000,-1.0000000000000000000,-0.0940561248603429961,0.66178262561741596492,0.74377227819217295312,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,339.818635992677002377,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -66 ,0 ,-389.71663846603297542,2814.31262968581995664,0.00000000000000000000,-1.0000000000000000000,-0.1293423746994140088,0.93461672349879998389,0.33130368284020500491,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,2010.22528717504997075,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneGratingDevAzMisVLS.rayx.csv b/Intern/RAY-Core/tests/output/PlaneGratingDevAzMisVLS.rayx.csv deleted file mode 100644 index 29411b46b..000000000 --- a/Intern/RAY-Core/tests/output/PlaneGratingDevAzMisVLS.rayx.csv +++ /dev/null @@ -1,68 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-170.30092127156905235,1234.43413671481539495,0.00000000000000000000,1.00000000000000000000,-0.1084051209471626614,0.77415339656581227956,0.62364641291203348760,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11598.1135085296355100,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-93.112380529191185019,673.148378875931484799,0.00000000000000000000,1.00000000000000000000,-0.0801756837633646052,0.55966120124130369628,0.82483404364648849060,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11207.9251666002819547,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,-59.011964580095607857,427.527601098664661094,0.00000000000000000000,1.00000000000000000000,-0.0584388627840987107,0.39598302082343056484,0.91639639159920927014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11087.0710773668724868,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,-38.523825366170662221,281.972733355029788526,0.00000000000000000000,1.00000000000000000000,-0.0422497011286114693,0.27473669451858812040,0.96059081373889010357,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11036.9787274094378517,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-24.863779144033749446,186.801059693277721862,0.00000000000000000000,1.00000000000000000000,-0.0304781063550679000,0.18696267123687473898,0.98189411068453880115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11014.4398716768828307,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-256.39919311059861684,1809.84923424580347273,0.00000000000000000000,1.00000000000000000000,-0.1214279459655949466,0.86981777526244374865,0.47819691736361963352,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,12084.7316771563710062,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,-120.41809110163472951,821.986397468729592219,0.00000000000000000000,1.00000000000000000000,-0.0907765665114449171,0.63537821183631915111,0.76684688360589581268,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11299.4276561913538898,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,-76.346593589776063026,504.008813382431640093,0.00000000000000000000,1.00000000000000000000,-0.0666300650427267965,0.45305617825686073096,0.88898848911315453413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11120.6743503568395681,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-51.851518754942432565,329.262393480887851637,0.00000000000000000000,1.00000000000000000000,-0.0484517574566054390,0.31665670230620823755,0.94730193712666044270,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11051.5858844904305442,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,-35.990869697358292000,217.966515130539193023,0.00000000000000000000,1.00000000000000000000,-0.0351175383696336190,0.21706762740548782297,0.97552468120053681399,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11021.1107812499121791,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,-25.105636334529634723,143.391341683344052171,0.00000000000000000000,1.00000000000000000000,-0.0255521410154874624,0.14593413018816414616,0.98896426514599011792,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11007.2066100397260015,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,-17.460567836989710599,92.8172304021110932126,0.00000000000000000000,1.00000000000000000000,-0.0188325796754636766,0.09620343207419304598,0.99518351754835310263,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.8961529666048591,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,-12.033210159333016520,58.7153624258682356185,0.00000000000000000000,1.00000000000000000000,-0.0142041319052244388,0.06215966338558098075,0.99796513911289008724,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10998.0958700367791607,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-8.1399166899895813998,36.0295041129883841790,0.00000000000000000000,1.00000000000000000000,-0.0110708730260016038,0.03931368821928677564,0.99916558672175981303,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.8888225460996181,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,-5.2970367821019213039,21.1702936926388183280,0.00000000000000000000,1.00000000000000000000,-0.0089770063768357076,0.02424344744462326659,0.99966577845423387760,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.3833294754440430,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,-3.1586517838219987375,11.5645017279107307217,0.00000000000000000000,1.00000000000000000000,-0.0075850241803290825,0.01442032153205328667,0.99986725205653970149,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1764138531052594,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-1.4810528518210024362,5.39651590763483390844,0.00000000000000000000,1.00000000000000000000,-0.0066535477231087986,0.00803827135130401153,0.99994555676615659578,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0925219697091961,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-0.0975130198855542335,1.42310651246518138357,0.00000000000000000000,1.00000000000000000000,-0.0060163747433040534,0.00385474499291826129,0.99997447176214837583,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0579778891406022,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,-20.377968533718245680,69.3217104713618397227,0.00000000000000000000,1.00000000000000000000,-0.0163562983088593565,0.07357453640585051579,0.99715558419852179383,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10998.9464448069156787,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,-15.962452838211738992,42.7551389982862986016,0.00000000000000000000,1.00000000000000000000,-0.0127115691582913685,0.04689971452681204050,0.99881871868064064923,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10997.2740251978902961,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -20 ,0 ,-12.764343256320973551,25.2514126891343551051,0.00000000000000000000,1.00000000000000000000,-0.0102655610164890248,0.02919583730137052454,0.99952099594820342787,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.5658477219167252,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,0 ,-10.389749549583651599,13.8851708203420969311,0.00000000000000000000,1.00000000000000000000,-0.0086381161649937646,0.01761277164932503747,0.99980756809695559006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.2734535024883371,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,0 ,-8.5590379372961020720,6.57525510670306978511,0.00000000000000000000,1.00000000000000000000,-0.0075536131676007126,0.01008737968622070053,0.99992059069667138526,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1544323180041828,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -23 ,0 ,-7.0785467173476757096,1.87847431320540425581,0.00000000000000000000,1.00000000000000000000,-0.0068194229794919253,0.00517916066833805886,0.99996333521034563851,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1056137449522793,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -24 ,0 ,-5.8187061237000889946,-1.1714957320031604837,0.00000000000000000000,1.00000000000000000000,-0.0063061525935076499,0.00192107289842203795,0.99997827072311218365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0846041604017955,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,0 ,-4.6960080650906652621,-3.1977414227646709932,0.00000000000000000000,1.00000000000000000000,-0.0059302578889003703,-0.0003110428408614031,0.99998236749140823054,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0744686296784493,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,0 ,-3.6581114451243554874,-4.5909078033695678300,0.00000000000000000000,1.00000000000000000000,-0.0056393302718077886,-0.0019086467457969603,0.99998227735379663361,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0685698953748214,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -27 ,0 ,-2.6719112657129300281,-5.5981158173882192841,0.00000000000000000000,1.00000000000000000000,-0.0054002070981857301,-0.0031194082357094555,0.99998055333869151350,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0643606167850521,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -28 ,0 ,-1.7145404183830421640,-6.3900853268327946210,0.00000000000000000000,1.00000000000000000000,-0.0051899751160069274,-0.0041144319333440608,0.99997806756356466539,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0609706308878230,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -29 ,0 ,-0.7673028672734301114,-7.1064110834256766224,0.00000000000000000000,1.00000000000000000000,-0.0049898970864902282,-0.0050336242129286664,0.99997488146170387945,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0583386625894490,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,0 ,0.18745932927442160442,-7.8789479935170314561,0.00000000000000000000,1.00000000000000000000,-0.0047822740877865761,-0.0060091270133751373,0.99997050968870382359,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0569490314665017,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,0 ,1.16656345481319201340,-8.8332828455968002145,0.00000000000000000000,1.00000000000000000000,-0.0045502485604276259,-0.0071667894034543704,0.99996396553460098477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0577863821326900,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -32 ,0 ,-10.525904252462437327,-4.9810555389871113973,0.00000000000000000000,1.00000000000000000000,-0.0063289258182606328,-0.0014315073121592221,0.99997894752079730107,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1108417680934508,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -33 ,0 ,-9.5229959299255018123,-6.1129606993641605328,0.00000000000000000000,1.00000000000000000000,-0.0060730689316293023,-0.0027672261297615901,0.99997772989867017567,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1056539011660788,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -34 ,0 ,-8.5569149287387542557,-6.9699190520970830675,0.00000000000000000000,1.00000000000000000000,-0.0058541165216328371,-0.0038273699648950156,0.99997553998030519473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1014954136826418,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -35 ,0 ,-7.6078974313090981240,-7.6994908745434162966,0.00000000000000000000,1.00000000000000000000,-0.0056522630400353216,-0.0047598274278388228,0.99997269760998119814,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0980471812672476,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,0 ,-6.6580708983151470903,-8.4351308089665799627,0.00000000000000000000,1.00000000000000000000,-0.0054495953457884913,-0.0056983441720471345,0.99996891490899053600,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0955964871409378,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,0 ,-5.6901324856632280457,-9.3060515125345677489,0.00000000000000000000,1.00000000000000000000,-0.0052287694806866539,-0.0067724051307574816,0.99996339657932586941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0949369732152263,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -38 ,0 ,-4.6889639631502371130,-10.425163638715185143,0.00000000000000000000,1.00000000000000000000,-0.0049746300038467135,-0.0080951438809298194,0.99995485983211818137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0973488128820463,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -39 ,0 ,-3.6461850693601922657,-11.855071564426802765,0.00000000000000000000,1.00000000000000000000,-0.0046787750857982864,-0.0097292605540782433,0.99994172357831290209,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1044100208000600,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -40 ,0 ,-2.5676500908447859039,-13.552079728424828886,0.00000000000000000000,1.00000000000000000000,-0.0043470731598410821,-0.0116309144335255288,0.99992290942071260229,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1171972455795184,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,0 ,-1.4838962806472819622,-15.288134261063559549,0.00000000000000000000,1.00000000000000000000,-0.0040101391361857807,-0.0135715443860721547,0.99989986096962968353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1342704699545720,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -42 ,0 ,-0.4635499362430219316,-16.550657768051365792,0.00000000000000000000,1.00000000000000000000,-0.0037367722441521149,-0.0150376052184307603,0.99987994627479614972,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1482764902502822,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -43 ,0 ,0.37033496578338487292,-16.420513243227137678,0.00000000000000000000,1.00000000000000000000,-0.0036503278470094379,-0.0151083828872772153,0.99987919864008600878,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1432121904927043,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,0 ,0.82111995393557135614,-13.429111947732693010,0.00000000000000000000,1.00000000000000000000,-0.0039479155806874761,-0.0123125220756243325,0.99991640438723894401,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1003279349006334,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,0 ,0.59682511512683933396,-5.3966683201587359874,0.00000000000000000000,1.00000000000000000000,-0.0049221462997415281,-0.0044648989479302439,0.99997791833279436879,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0332477075698989,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,0 ,-9.4615645591692452143,-13.747209530740821747,0.00000000000000000000,1.00000000000000000000,-0.0050628668508782984,-0.0109583227043435708,0.99992713861698823141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1519856562827044,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -47 ,0 ,-8.3741047590170882841,-15.510963162208902588,0.00000000000000000000,1.00000000000000000000,-0.0047222168364866000,-0.0129267256515295143,0.99990529573159014908,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1673824595090991,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -48 ,0 ,-7.3183040162875805378,-17.038327223183948433,0.00000000000000000000,1.00000000000000000000,-0.0044133049212566688,-0.0146581366480504904,0.99988282401973449520,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1834672632503497,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -49 ,0 ,-6.3942607452699240511,-17.581572064192318549,0.00000000000000000000,1.00000000000000000000,-0.0042364828728311629,-0.0154035303858008343,0.99987238358928665071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1876039162325469,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -50 ,0 ,-5.7680016035543371089,-15.900556583864126736,0.00000000000000000000,1.00000000000000000000,-0.0043581862269592552,-0.0139206034005735432,0.99989360584702924317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1601976290749007,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -51 ,0 ,-5.6922807553586718398,-10.107946067921547594,0.00000000000000000000,1.00000000000000000000,-0.0050317545596464622,-0.0083178821293265134,0.99995274602499784055,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0950093988867592,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,0 ,-6.5299670722766487429,2.50370019487727146767,0.00000000000000000000,1.00000000000000000000,-0.0066204848969497647,0.00411896673843128134,0.99996960118432443032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0720821728173177,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -53 ,0 ,-8.7812978232242659970,25.6611910971189125518,0.00000000000000000000,1.00000000000000000000,-0.0096220351228674099,0.02711342802967774134,0.99958605355445651063,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.4489357930615369,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -54 ,0 ,-13.122761326626740441,64.3919771482103726611,0.00000000000000000000,1.00000000000000000000,-0.0146925951864289323,0.06558772395108077024,0.99773863216455849212,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10998.2913924343720282,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -55 ,0 ,-20.487796981874787149,125.608489979488993526,0.00000000000000000000,1.00000000000000000000,-0.0226680884225131627,0.12583958849814191882,0.99179158886022378283,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11004.2826063898792199,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -56 ,0 ,-32.290975312943054120,219.743520134237712682,0.00000000000000000000,1.00000000000000000000,-0.0345773183527602959,0.21567631817940116634,0.97585251694716113046,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11020.7106810198110906,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -57 ,0 ,-51.153325195635559907,366.066541830816788660,0.00000000000000000000,1.00000000000000000000,-0.0516351976458291339,0.34443630899927574207,0.93738862560147973024,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11062.6648735856233543,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -58 ,0 ,-83.776487391732402443,613.775576295422183648,0.00000000000000000000,1.00000000000000000000,-0.0751766796626746752,0.52266641634087485090,0.84921627637739161009,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11173.1898841573674872,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -59 ,0 ,-160.22026194503587248,1183.38360000901957391,0.00000000000000000000,1.00000000000000000000,-0.1063171481008903518,0.76019477472902885484,0.64093725784539445911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11555.0428353153129137,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -60 ,0 ,-17.640403815424168243,46.4711363839769759920,0.00000000000000000000,1.00000000000000000000,-0.0130437440413425816,0.04858314067686472781,0.99873396817338477848,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10997.3337416978120018,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -61 ,0 ,-23.717414899226373137,98.0976539593787748572,0.00000000000000000000,1.00000000000000000000,-0.0197962556859760142,0.09965997041519285282,0.99482460693212537705,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11001.2537539865716098,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,0 ,-33.611346386341928393,178.033400912516782454,0.00000000000000000000,1.00000000000000000000,-0.0300656385410910317,0.17714937456068691190,0.98372463447444169482,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11012.5659780667647282,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -63 ,0 ,-49.334782006696926259,301.042792596799074544,0.00000000000000000000,1.00000000000000000000,-0.0449986187952455818,0.28981407698791050719,0.95602454209406428908,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11041.9518243791353597,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -64 ,0 ,-75.367331723161328227,499.902250455994817457,0.00000000000000000000,1.00000000000000000000,-0.0658998279854926261,0.44782218798486789212,0.89169080998961036677,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11117.2552300467905297,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -65 ,0 ,-127.06473425794125375,886.848508260265703029,0.00000000000000000000,1.00000000000000000000,-0.0940561248603153376,0.66178262561720624379,0.74377227819236213512,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11339.8186359923329291,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -66 ,0 ,-389.71663847011456027,2814.31262971561272934,0.00000000000000000000,1.00000000000000000000,-0.1293423746995504275,0.93461672349988733632,0.33130368283708361287,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,13010.2252872034241590,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneGratingDeviationAz.rayui.csv b/Intern/RAY-Core/tests/output/PlaneGratingDeviationAz.rayui.csv deleted file mode 100644 index ad584ac1c..000000000 --- a/Intern/RAY-Core/tests/output/PlaneGratingDeviationAz.rayui.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-3.9249655222316701674,-6.7306687136070300070,0.00000000000000000000,-1.0000000000000000000,-0.0003536334141186139,-0.0006117639845279299,0.99999975034408694618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.07241822499963750103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-0.3623421526871570264,-5.7756234262003101065,0.00000000000000000000,-1.0000000000000000000,-0.0000316518368597072,-0.0005255393055126369,0.99999986140329000239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06574217256866179970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,3.20027729016850015497,-4.8205784132766602567,0.00000000000000000000,-1.0000000000000000000,0.00029032957782844799,-0.0004393132509877929,0.99999986135629204131,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06028839746750239841,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,6.76289359340541995635,-3.8655334637066101066,0.00000000000000000000,-1.0000000000000000000,0.00061231079417205095,-0.0003530858305485979,0.99999975020291298477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.05605689685330619842,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-4.8709270039011096642,-3.1985865013697600822,0.00000000000000000000,-1.0000000000000000000,-0.0004398593486420930,-0.0002901467230055620,0.99999986116930694723,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.03020328819025050112,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-1.3083162501367799901,-2.2435469527581402005,0.00000000000000000000,-1.0000000000000000000,-0.0001178777359445720,-0.0002039220318490640,0.99999997226032200092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02352755008951139953,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,2.25429047159803985778,-1.2885072843439600021,0.00000000000000000000,-1.0000000000000000000,0.00020410371418701900,-0.0001176959652196269,0.99999997224466696810,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.01807408050785850109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,5.81689394836678008715,-0.3334672850002959876,0.00000000000000000000,-1.0000000000000000000,0.00052608496597887795,-0.0000314685327124661,0.99999986112215999423,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.01384287660084740009,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-5.8168814368718502194,0.33346989742105498377,0.00000000000000000000,-1.0000000000000000000,-0.0005260854172262919,0.00003147196027686069,0.99999986112181504793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0107871115761781991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-2.2542832982057898760,1.28850370768908994989,0.00000000000000000000,-1.0000000000000000000,-0.0002041038048652280,0.00011769665398900900,0.99999997224456704802,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0174625360776872011,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,1.30831070309154995356,2.24353803204034996099,0.00000000000000000000,-1.0000000000000000000,0.00011787764493474899,0.00020392272313730301,0.99999997226019199381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0229157007385083003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,4.87090135407695967728,3.19857308159873010566,0.00000000000000000000,-1.0000000000000000000,0.00043985889639983299,0.00029015015812657100,0.99999986116850902995,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0271466084045642007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-6.7628290328569198308,3.86550127379824992601,0.00000000000000000000,-1.0000000000000000000,-0.0006123116102758229,0.00035309202947218098,0.99999975020022402460,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0505529961429828991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-3.2002435086098501848,4.82052934617416983797,0.00000000000000000000,-1.0000000000000000000,-0.0002903300340262840,0.00043931671615438100,0.99999986135463803105,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0572281077832030998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,0.36233777293087698900,5.77555832690763981673,0.00000000000000000000,-1.0000000000000000000,0.00003165137966702419,0.00052554277823583898,0.99999986140148000579,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0626809681245959066,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,3.92491559881529994413,6.73058842712034000044,0.00000000000000000000,-1.0000000000000000000,0.00035363259503030101,0.00061177020612135498,0.99999975034056998168,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0669115800100144042,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-3.9249655222316701674,-6.7306687136070300070,0.00000000000000000000,-1.0000000000000000000,-0.0003536334141186139,-0.0006117639845279299,0.99999975034408694618,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.07241822499963750103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-0.3623421526871570264,-5.7756234262003101065,0.00000000000000000000,-1.0000000000000000000,-0.0000316518368597072,-0.0005255393055126369,0.99999986140329000239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06574217256866179970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,3.20027729016850015497,-4.8205784132766602567,0.00000000000000000000,-1.0000000000000000000,0.00029032957782844799,-0.0004393132509877929,0.99999986135629204131,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06028839746750239841,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,6.76289359340541995635,-3.8655334637066101066,0.00000000000000000000,-1.0000000000000000000,0.00061231079417205095,-0.0003530858305485979,0.99999975020291298477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.05605689685330619842,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneGratingDeviationAz.rayx.csv b/Intern/RAY-Core/tests/output/PlaneGratingDeviationAz.rayx.csv deleted file mode 100644 index c59109449..000000000 --- a/Intern/RAY-Core/tests/output/PlaneGratingDeviationAz.rayx.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-3.9249655222315702474,-6.7306687136069482946,0.00000000000000000000,1.00000000000000000000,-0.0003536334141185014,-0.0006117639845278601,0.99999975034408661311,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0724182250014564,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-0.3623421526870885256,-5.7756234262000543111,0.00000000000000000000,1.00000000000000000000,-0.0000316518368596014,-0.0005255393055125104,0.99999986140329022443,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0657421725700260,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,3.20027729016860584820,-4.8205784132767437455,0.00000000000000000000,1.00000000000000000000,0.00029032957782854995,-0.0004393132509876518,0.99999986135629226335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0602883974679571,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,6.76289359340549900423,-3.8655334637063085700,0.00000000000000000000,1.00000000000000000000,0.00061231079417215265,-0.0003530858305484698,0.99999975020291265170,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0560568968539882,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-4.8709270039010226227,-3.1985865013694656511,0.00000000000000000000,1.00000000000000000000,-0.0004398593486419857,-0.0002901467230054813,0.99999986116930650315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0302032881882041,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-1.3083162501366791818,-2.2435469527581624049,0.00000000000000000000,1.00000000000000000000,-0.0001178777359444725,-0.0002039220318489405,0.99999997226032155683,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0235275500926945,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,2.25429047159815576506,-1.2885072843440319445,0.00000000000000000000,1.00000000000000000000,0.00020410371418712726,-0.0001176959652194806,0.99999997224466663503,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0180740805080858,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,5.81689394836686624046,-0.3334672850002450283,0.00000000000000000000,1.00000000000000000000,0.00052608496597898344,-0.0000314685327123393,0.99999986112216032729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0138428766003926,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-5.8168814368717418616,0.33346989742115956678,0.00000000000000000000,1.00000000000000000000,-0.0005260854172261876,0.00003147196027700581,0.99999986112181504793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9892128884221165,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,-2.2542832982057401380,1.28850370768951405509,0.00000000000000000000,1.00000000000000000000,-0.0002041038048651251,0.00011769665398911480,0.99999997224456682598,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9825374639203801,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,1.30831070309167429854,2.24353803204046542418,0.00000000000000000000,1.00000000000000000000,0.00011787764493485677,0.00020392272313744027,0.99999997226019154972,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9770842992602410,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,4.87090135407705826509,3.19857308159879938358,0.00000000000000000000,1.00000000000000000000,0.00043985889639993523,0.00029015015812670983,0.99999986116850880790,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9728533915968000,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,-6.7628290328568043676,3.86550127379826946594,0.00000000000000000000,1.00000000000000000000,-0.0006123116102757123,0.00035309202947228171,0.99999975020022402460,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9494470038553117,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-3.2002435086097378302,4.82052934617417605522,0.00000000000000000000,1.00000000000000000000,-0.0002903300340261794,0.00043931671615451121,0.99999986135463747594,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9427718922161147,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,0.36233777293101798733,5.77555832690742221302,0.00000000000000000000,1.00000000000000000000,0.00003165137966712901,0.00052554277823593179,0.99999986140147945068,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9373190318765409,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,3.92491559881539098242,6.73058842712051141887,0.00000000000000000000,1.00000000000000000000,0.00035363259503040709,0.00061177020612146059,0.99999975034056998168,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9330884199898719,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-3.9249655222315702474,-6.7306687136069482946,0.00000000000000000000,1.00000000000000000000,-0.0003536334141185014,-0.0006117639845278601,0.99999975034408661311,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0724182250014564,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-0.3623421526870885256,-5.7756234262000543111,0.00000000000000000000,1.00000000000000000000,-0.0000316518368596014,-0.0005255393055125104,0.99999986140329022443,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0657421725700260,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,3.20027729016860584820,-4.8205784132767437455,0.00000000000000000000,1.00000000000000000000,0.00029032957782854995,-0.0004393132509876518,0.99999986135629226335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0602883974679571,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,6.76289359340549900423,-3.8655334637063085700,0.00000000000000000000,1.00000000000000000000,0.00061231079417215265,-0.0003530858305484698,0.99999975020291265170,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0560568968539882,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneGratingDeviationAzMis.rayui.csv b/Intern/RAY-Core/tests/output/PlaneGratingDeviationAzMis.rayui.csv deleted file mode 100644 index 5760211be..000000000 --- a/Intern/RAY-Core/tests/output/PlaneGratingDeviationAzMis.rayui.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-9.6396952642774405006,-9.1452313427755704822,0.00000000000000000000,-1.0000000000000000000,-0.0060382324854792298,-0.0033779937093555401,0.99997606416701401155,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8542534256817999605,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-6.0787538566712600029,-8.1886238834143405540,0.00000000000000000000,-1.0000000000000000000,-0.0057163009069730102,-0.0032916161002782200,0.99997824434703996843,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8837473927369501325,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,-2.5178310697671402174,-7.2320206486937701484,0.00000000000000000000,-1.0000000000000000000,-0.0053943688624961501,-0.0032052368085638298,0.99998031342700799406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9120193916695598090,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,1.04307388325375005599,-6.2754214271552095638,0.00000000000000000000,-1.0000000000000000000,-0.0050724363878165102,-0.0031188558438240998,0.99998227140650697286,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9390694379669599634,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-10.587038048842799753,-5.6148469289859104236,0.00000000000000000000,-1.0000000000000000000,-0.0061246279910514601,-0.0030564250279920901,0.99997657332460498924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9008524714322398985,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-7.0261086940684096546,-4.6582529427043999348,0.00000000000000000000,-1.0000000000000000000,-0.0058026963772593101,-0.0029700474064684998,0.99997875354087195631,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9303459775087499217,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,-3.4651980654112999324,-3.7016627869046700993,0.00000000000000000000,-1.0000000000000000000,-0.0054807642974903196,-0.0028836681023438298,0.99998082265661003553,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9586175252535400481,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,0.09569462394104009950,-2.7450762501350998157,0.00000000000000000000,-1.0000000000000000000,-0.0051588317875123400,-0.0027972871252298398,0.99998278067141099789,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9856671301597499379,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-11.534373021509699341,-2.0844911548918099164,0.00000000000000000000,-1.0000000000000000000,-0.0062110230028329903,-0.0027348546179954001,0.99997697161658505304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9462273659850097828,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-7.9734557188921195702,-1.1279106411566799383,0.00000000000000000000,-1.0000000000000000000,-0.0058890913895242296,-0.0026484769936280798,0.99997915186878805204,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9757204143576201360,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,-4.4125572478055499203,-0.1713335637493859919,0.00000000000000000000,-1.0000000000000000000,-0.0055671593102325101,-0.0025620976866957499,0.99998122102000397415,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0039915140639603663,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,-0.8516768214436960526,0.78524028877344298482,0.00000000000000000000,-1.0000000000000000000,-0.0052452268007256398,-0.0024757167068103001,0.99998317906982703284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0310406805883802761,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-12.481700394317099878,1.44583677019736001057,0.00000000000000000000,-1.0000000000000000000,-0.0062974175112056503,-0.0024132825152056000,0.99997725904152001685,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9903781336312200700,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-8.9207951431841703282,2.40240381191859020404,0.00000000000000000000,-1.0000000000000000000,-0.0059754859341496499,-0.0023269048975968899,0.99997943932935395849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0198707275901597313,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,-5.3599088289940501894,3.35896781145848999372,0.00000000000000000000,-1.0000000000000000000,-0.0056535538911045698,-0.0022405255974595797,0.99998150851575695607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0481413823994198963,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,-1.7990406649469901090,4.31552898025400999415,0.00000000000000000000,-1.0000000000000000000,-0.0053316214178382595,-0.0021541446244054901,0.99998346660032000343,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0751901135462302860,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-9.6396952642774405006,-9.1452313427755704822,0.00000000000000000000,-1.0000000000000000000,-0.0060382324854792298,-0.0033779937093555401,0.99997606416701401155,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8542534256817999605,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-6.0787538566712600029,-8.1886238834143405540,0.00000000000000000000,-1.0000000000000000000,-0.0057163009069730102,-0.0032916161002782200,0.99997824434703996843,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8837473927369501325,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,-2.5178310697671402174,-7.2320206486937701484,0.00000000000000000000,-1.0000000000000000000,-0.0053943688624961501,-0.0032052368085638298,0.99998031342700799406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9120193916695598090,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,1.04307388325375005599,-6.2754214271552095638,0.00000000000000000000,-1.0000000000000000000,-0.0050724363878165102,-0.0031188558438240998,0.99998227140650697286,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9390694379669599634,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneGratingDeviationAzMis.rayx.csv b/Intern/RAY-Core/tests/output/PlaneGratingDeviationAzMis.rayx.csv deleted file mode 100644 index fe327fdeb..000000000 --- a/Intern/RAY-Core/tests/output/PlaneGratingDeviationAzMis.rayx.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-9.6396952642772930630,-9.1452313427758991082,0.00000000000000000000,1.00000000000000000000,-0.0060382324854791327,-0.0033779937093553684,0.99997606416701345644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1457465743205830,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-6.0787538566711534215,-8.1886238834145466114,0.00000000000000000000,1.00000000000000000000,-0.0057163009069729053,-0.0032916161002780539,0.99997824434704041252,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1162526072657783,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,-2.5178310697670367446,-7.2320206486939406786,0.00000000000000000000,1.00000000000000000000,-0.0053943688624960520,-0.0032052368085636641,0.99998031342700754997,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0879806083321454,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,1.04307388325385796967,-6.2754214271553330206,0.00000000000000000000,1.00000000000000000000,-0.0050724363878164044,-0.0031188558438239263,0.99998227140650686184,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0609305620346276,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-10.587038048842730475,-5.6148469289860916120,0.00000000000000000000,1.00000000000000000000,-0.0061246279910513647,-0.0030564250279918941,0.99997657332460510026,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0991475285700289,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-7.0261086940682799806,-4.6582529427047782988,0.00000000000000000000,1.00000000000000000000,-0.0058026963772592121,-0.0029700474064682986,0.99997875354087228938,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0696540224944328,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,-3.4651980654111729229,-3.7016627869048073229,0.00000000000000000000,1.00000000000000000000,-0.0054807642974902233,-0.0028836681023436663,0.99998082265661014655,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0413824747465696,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,0.09569462394113857628,-2.7450762501350842725,0.00000000000000000000,1.00000000000000000000,-0.0051588317875122463,-0.0027972871252296702,0.99998278067141088687,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0143328698413824,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-11.534373021509482626,-2.0844911548924716093,0.00000000000000000000,1.00000000000000000000,-0.0062110230028328853,-0.0027348546179952488,0.99997697161658505304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0537726340171502,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,-7.9734557188920334169,-1.1279106411566530709,0.00000000000000000000,1.00000000000000000000,-0.0058890913895241385,-0.0026484769936278807,0.99997915186878783000,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0242795856411248,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,-4.4125572478054611025,-0.1713335637494559360,0.00000000000000000000,1.00000000000000000000,-0.0055671593102324095,-0.0025620976866955976,0.99998122102000419619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9960084859376365,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,-0.8516768214436318817,0.78524028877355966926,0.00000000000000000000,1.00000000000000000000,-0.0052452268007255366,-0.0024757167068101735,0.99998317906982636671,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9689593194143526,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,-12.481700394317041258,1.44583677019713219280,0.00000000000000000000,1.00000000000000000000,-0.0062974175112055609,-0.0024132825152054036,0.99997725904152001685,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0096218663657055,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-8.9207951431840921685,2.40240381191863461296,0.00000000000000000000,1.00000000000000000000,-0.0059754859341495459,-0.0023269048975967203,0.99997943932935340338,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9801292724114318,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,-5.3599088289939516016,3.35896781145840206406,0.00000000000000000000,1.00000000000000000000,-0.0056535538911044701,-0.0022405255974594236,0.99998150851575606790,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9518586176000098,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,-1.7990406649468948518,4.31552898025398778969,0.00000000000000000000,1.00000000000000000000,-0.0053316214178381546,-0.0021541446244053427,0.99998346660032022548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9248098864518397,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-9.6396952642772930630,-9.1452313427758991082,0.00000000000000000000,1.00000000000000000000,-0.0060382324854791327,-0.0033779937093553684,0.99997606416701345644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1457465743205830,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-6.0787538566711534215,-8.1886238834145466114,0.00000000000000000000,1.00000000000000000000,-0.0057163009069729053,-0.0032916161002780539,0.99997824434704041252,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1162526072657783,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,-2.5178310697670367446,-7.2320206486939406786,0.00000000000000000000,1.00000000000000000000,-0.0053943688624960520,-0.0032052368085636641,0.99998031342700754997,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0879806083321454,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,1.04307388325385796967,-6.2754214271553330206,0.00000000000000000000,1.00000000000000000000,-0.0050724363878164044,-0.0031188558438239263,0.99998227140650686184,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0609305620346276,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneGratingDeviationDefault.rayui.csv b/Intern/RAY-Core/tests/output/PlaneGratingDeviationDefault.rayui.csv deleted file mode 100644 index 480b55de0..000000000 --- a/Intern/RAY-Core/tests/output/PlaneGratingDeviationDefault.rayui.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-5.5325314673836700762,-5.4849109975435696995,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,-0.0004994526961402260,0.99999975027351295508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06476811138884390472,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-1.8441770199902700611,-5.4849117675275698147,0.00000000000000000000,-1.0000000000000000000,-0.0001666666450617289,-0.0004994540783459650,0.99999986138391705470,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06354587575231110396,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,1.84417701999027006110,-5.4849117675275698147,0.00000000000000000000,-1.0000000000000000000,0.00016666664506172898,-0.0004994540783459650,0.99999986138391705470,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06354587575231110396,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,5.53253146738367007628,-5.4849109975435696995,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,-0.0004994526961402260,0.99999975027351295508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06476811138884390472,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-5.5325107943899602958,-1.8282958470923300620,0.00000000000000000000,-1.0000000000000000000,-0.0004999999722222229,-0.0001664835520649170,0.99999986114161798500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02219989225648080072,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-1.8441701289935699126,-1.8282970251884300694,0.00000000000000000000,-1.0000000000000000000,-0.0001666666635802470,-0.0001664849342334210,0.99999997225249503962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02097766550275539931,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,1.84417012899356991262,-1.8282970251884300694,0.00000000000000000000,-1.0000000000000000000,0.00016666666358024700,-0.0001664849342334210,0.99999997225249503962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02097766550275539931,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,5.53251079438996029580,-1.8282958470923300620,0.00000000000000000000,-1.0000000000000000000,0.00049999997222222297,-0.0001664835520649170,0.99999986114161798500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02219989225648080072,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-5.5324901225696203610,1.82829231127919000776,0.00000000000000000000,-1.0000000000000000000,-0.0004999999722222229,0.00016648701234757399,0.99999986114104200130,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0191437507199907000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-1.8441632383879900114,1.82829072507669998515,0.00000000000000000000,-1.0000000000000000000,-0.0001666666635802470,0.00016648563021647000,0.99999997225237902132,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0203659687284699006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,1.84416323838799001144,1.82829072507669998515,0.00000000000000000000,-1.0000000000000000000,0.00016666666358024700,0.00016648563021647000,0.99999997225237902132,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0203659687284699006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,5.53249012256962036104,1.82829231127919000776,0.00000000000000000000,-1.0000000000000000000,0.00049999997222222297,0.00016648701234757399,0.99999986114104200130,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0191437507199907000,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-5.5324694519185300123,5.48485429651579980969,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,0.00049945895998680699,0.99999975027038401353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0592628395824022005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-1.8441563481721598982,5.48485230221264963290,0.00000000000000000000,-1.0000000000000000000,-0.0001666666450617289,0.00049945757789321399,0.99999986138216900855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0604850489818318029,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,1.84415634817215989826,5.48485230221264963290,0.00000000000000000000,-1.0000000000000000000,0.00016666664506172898,0.00049945757789321399,0.99999986138216900855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0604850489818318029,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,5.53246945191853001233,5.48485429651579980969,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,0.00049945895998680699,0.99999975027038401353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0592628395824022005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-5.5325314673836700762,-5.4849109975435696995,0.00000000000000000000,-1.0000000000000000000,-0.0004999999166666709,-0.0004994526961402260,0.99999975027351295508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06476811138884390472,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-1.8441770199902700611,-5.4849117675275698147,0.00000000000000000000,-1.0000000000000000000,-0.0001666666450617289,-0.0004994540783459650,0.99999986138391705470,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06354587575231110396,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,1.84417701999027006110,-5.4849117675275698147,0.00000000000000000000,-1.0000000000000000000,0.00016666664506172898,-0.0004994540783459650,0.99999986138391705470,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06354587575231110396,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,5.53253146738367007628,-5.4849109975435696995,0.00000000000000000000,-1.0000000000000000000,0.00049999991666667094,-0.0004994526961402260,0.99999975027351295508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06476811138884390472,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneGratingDeviationDefault.rayx.csv b/Intern/RAY-Core/tests/output/PlaneGratingDeviationDefault.rayx.csv deleted file mode 100644 index fecd98571..000000000 --- a/Intern/RAY-Core/tests/output/PlaneGratingDeviationDefault.rayx.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-5.5325314673835537249,-5.4849109975435350605,0.00000000000000000000,1.00000000000000000000,-0.0004999999166665487,-0.0004994526961401611,0.99999975027351251100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0647681113896396,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-1.8441770199901483806,-5.4849117675272900385,0.00000000000000000000,1.00000000000000000000,-0.0001666666450616069,-0.0004994540783458966,0.99999986138391683265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0635458757496962,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,1.84417701999039174154,-5.4849117675272900385,0.00000000000000000000,1.00000000000000000000,0.00016666664506185090,-0.0004994540783458966,0.99999986138391683265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0635458757496962,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,5.53253146738379797398,-5.4849109975435350605,0.00000000000000000000,1.00000000000000000000,0.00049999991666679292,-0.0004994526961401611,0.99999975027351251100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0647681113896396,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-5.5325107943898395035,-1.8282958470922203719,0.00000000000000000000,1.00000000000000000000,-0.0004999999722221006,-0.0001664835520648126,0.99999986114161765193,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0221998922570492,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-1.8441701289934466778,-1.8282970251883052803,0.00000000000000000000,1.00000000000000000000,-0.0001666666635801248,-0.0001664849342333165,0.99999997225249470655,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0209776655028690,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,1.84417012899369003875,-1.8282970251883052803,0.00000000000000000000,1.00000000000000000000,0.00016666666358036895,-0.0001664849342333165,0.99999997225249470655,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0209776655028690,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,5.53251079439008375260,-1.8282958470922203719,0.00000000000000000000,1.00000000000000000000,0.00049999997222234483,-0.0001664835520648126,0.99999986114161765193,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0221998922570492,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-5.5324901225694986806,1.82829231127962144043,0.00000000000000000000,1.00000000000000000000,-0.0004999999722221006,0.00016648701234769851,0.99999986114104177925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9808562492798955,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,-1.8441632383878692191,1.82829072507666245961,0.00000000000000000000,1.00000000000000000000,-0.0001666666635801248,0.00016648563021655132,0.99999997225237879927,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9796340312732354,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,1.84416323838811280211,1.82829072507666245961,0.00000000000000000000,1.00000000000000000000,0.00016666666358036895,0.00016648563021655132,0.99999997225237879927,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9796340312732354,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,5.53249012256974292967,1.82829231127962144043,0.00000000000000000000,1.00000000000000000000,0.00049999997222234483,0.00016648701234769851,0.99999986114104177925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9808562492798955,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,-5.5324694519184047791,5.48485429651581046783,0.00000000000000000000,1.00000000000000000000,-0.0004999999166665487,0.00049945895998689232,0.99999975027038401353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9407371604193031,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-1.8441563481720393280,5.48485230221265318562,0.00000000000000000000,1.00000000000000000000,-0.0001666666450616068,0.00049945757789331504,0.99999986138216900855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9395149510182818,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,1.84415634817228291097,5.48485230221265318562,0.00000000000000000000,1.00000000000000000000,0.00016666664506185093,0.00049945757789331504,0.99999986138216900855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9395149510182818,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,5.53246945191864902824,5.48485429651581046783,0.00000000000000000000,1.00000000000000000000,0.00049999991666679292,0.00049945895998689232,0.99999975027038401353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9407371604193031,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-5.5325314673835537249,-5.4849109975435350605,0.00000000000000000000,1.00000000000000000000,-0.0004999999166665487,-0.0004994526961401611,0.99999975027351251100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0647681113896396,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-1.8441770199901483806,-5.4849117675272900385,0.00000000000000000000,1.00000000000000000000,-0.0001666666450616069,-0.0004994540783458966,0.99999986138391683265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0635458757496962,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,1.84417701999039174154,-5.4849117675272900385,0.00000000000000000000,1.00000000000000000000,0.00016666664506185090,-0.0004994540783458966,0.99999986138391683265,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0635458757496962,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,5.53253146738379797398,-5.4849109975435350605,0.00000000000000000000,1.00000000000000000000,0.00049999991666679292,-0.0004994526961401611,0.99999975027351251100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0647681113896396,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneGratingIncAzMis.rayui.csv b/Intern/RAY-Core/tests/output/PlaneGratingIncAzMis.rayui.csv deleted file mode 100644 index 01b23f8d5..000000000 --- a/Intern/RAY-Core/tests/output/PlaneGratingIncAzMis.rayui.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-9.6163874844733996383,-8.8257482337614607814,0.00000000000000000000,-1.0000000000000000000,-0.0059761721587404696,-0.0033698159373556800,0.99997646457648103890,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8152427452818100661,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-6.0559512668928396905,-7.8670098499000502556,0.00000000000000000000,-1.0000000000000000000,-0.0056542761802785800,-0.0032833280423122199,0.99997862423046002255,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8445831423057401643,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,-2.4955335678661998422,-6.9082756804240297299,0.00000000000000000000,-1.0000000000000000000,-0.0053323797450227300,-0.0031968384506871200,0.99998067278831703763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8727015324566300691,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,1.06486639932833004884,-5.9495455132558401345,0.00000000000000000000,-1.0000000000000000000,-0.0050104828887348202,-0.0031103471721192202,0.99998261024964396614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8995979311404198597,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-10.565846382681799653,-5.2927253448249897971,0.00000000000000000000,-1.0000000000000000000,-0.0060626772333843602,-0.0030486317917329201,0.99997697462939705292,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8623233375771000019,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-7.0054223606786498734,-4.3340005815703896985,0.00000000000000000000,-1.0000000000000000000,-0.0057407812207539501,-0.0029621438764800001,0.99997913434962804046,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8916630001976999508,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,-3.4450169627545998984,-3.3752796378402898369,0.00000000000000000000,-1.0000000000000000000,-0.0054188847513183396,-0.0028756542647194100,0.99998118297326099579,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9197806658681901836,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,0.11537059780582399615,-2.4165623015653201477,0.00000000000000000000,-1.0000000000000000000,-0.0050969878608394404,-0.0027891629660901301,0.99998312049988902217,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9466763499885901822,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-11.515297233409800270,-1.7597324926239299447,0.00000000000000000000,-1.0000000000000000000,-0.0061491818313728100,-0.0027274458484402800,0.99997737404500697255,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9081777078901001054,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-7.9548854057036999520,-0.8010213489928069696,0.00000000000000000000,-1.0000000000000000000,-0.0058272858203384098,-0.0026409579225988798,0.99997953383117799130,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9375166395319598500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,-4.3944923076002195827,0.15768636996761301038,0.00000000000000000000,-1.0000000000000000000,-0.0055053893524875897,-0.0025544683003242301,0.99998158252028801484,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9656335839988501312,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,-0.8341171523902169981,1.11639087631894007301,0.00000000000000000000,-1.0000000000000000000,-0.0051834924635822997,-0.0024679769912550300,0.99998352011193203381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9925285567066999270,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-12.464740249884700418,1.77323111747464001730,0.00000000000000000000,-1.0000000000000000000,-0.0062356859430589203,-0.0024062581433991199,0.99997766282180899910,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9528058818922300332,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-8.9043406151980608598,2.73192864246226019275,0.00000000000000000000,-1.0000000000000000000,-0.0059137899693850002,-0.0023197702165906001,0.99997982267360796537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.9821440859702801340,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,-5.3439598156359897629,3.69062313762721005971,0.00000000000000000000,-1.0000000000000000000,-0.0055918935388835503,-0.0022332805934230800,0.99998187142789796144,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0102603125284304041,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,-1.7835970644954999286,4.64931481502140009354,0.00000000000000000000,-1.0000000000000000000,-0.0052699966873164796,-0.0021467892835355098,0.99998380908427098034,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.0371545769635304168,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-9.6163874844733996383,-8.8257482337614607814,0.00000000000000000000,-1.0000000000000000000,-0.0059761721587404696,-0.0033698159373556800,0.99997646457648103890,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8152427452818100661,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-6.0559512668928396905,-7.8670098499000502556,0.00000000000000000000,-1.0000000000000000000,-0.0056542761802785800,-0.0032833280423122199,0.99997862423046002255,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8445831423057401643,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,-2.4955335678661998422,-6.9082756804240297299,0.00000000000000000000,-1.0000000000000000000,-0.0053323797450227300,-0.0031968384506871200,0.99998067278831703763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8727015324566300691,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,1.06486639932833004884,-5.9495455132558401345,0.00000000000000000000,-1.0000000000000000000,-0.0050104828887348202,-0.0031103471721192202,0.99998261024964396614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.8995979311404198597,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneGratingIncAzMis.rayx.csv b/Intern/RAY-Core/tests/output/PlaneGratingIncAzMis.rayx.csv deleted file mode 100644 index 66f5e4849..000000000 --- a/Intern/RAY-Core/tests/output/PlaneGratingIncAzMis.rayx.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-9.6163874844732593061,-8.8257482337614963086,0.00000000000000000000,1.00000000000000000000,-0.0059761721587403421,-0.0033698159373556973,0.99997646457648059481,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1847572547230811,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-6.0559512668927855116,-7.8670098498999463387,0.00000000000000000000,1.00000000000000000000,-0.0056542761802784559,-0.0032833280423122655,0.99997862423046024460,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1554168576967640,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,-2.4955335678660426346,-6.9082756804246594484,0.00000000000000000000,1.00000000000000000000,-0.0053323797450226060,-0.0031968384506871516,0.99998067278831714865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1272984675488260,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,1.06486639932853099921,-5.9495455132565604472,0.00000000000000000000,1.00000000000000000000,-0.0050104828887346918,-0.0031103471721193069,0.99998261024964363308,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1004020688651507,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-10.565846382681648663,-5.2927253448253788192,0.00000000000000000000,1.00000000000000000000,-0.0060626772333842466,-0.0030486317917329652,0.99997697462939727497,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1376766624271112,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-7.0054223606785193112,-4.3340005815706916791,0.00000000000000000000,1.00000000000000000000,-0.0057407812207538192,-0.0029621438764800291,0.99997913434962748535,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1083369998032139,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,-3.4450169627545017547,-3.3752796378404252841,0.00000000000000000000,1.00000000000000000000,-0.0054188847513182095,-0.0028756542647194855,0.99998118297326055170,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0802193341351085,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,0.11537059780603292624,-2.4165623015660044892,0.00000000000000000000,1.00000000000000000000,-0.0050969878608393076,-0.0027891629660901362,0.99998312049988868910,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0533236500159546,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-11.515297233409578225,-1.7597324926246853404,0.00000000000000000000,1.00000000000000000000,-0.0061491818313726999,-0.0027274458484402657,0.99997737404500741664,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0918222921118285,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,-7.9548854057035764952,-0.8010213489931442554,0.00000000000000000000,1.00000000000000000000,-0.0058272858203382623,-0.0026409579225990780,0.99997953383117743619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0624833604724699,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,-4.3944923076000659278,0.15768636996760934665,0.00000000000000000000,1.00000000000000000000,-0.0055053893524874501,-0.0025544683003242969,0.99998158252028834791,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0343664160027401,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,-0.8341171523901190765,1.11639087631882061302,0.00000000000000000000,1.00000000000000000000,-0.0051834924635821948,-0.0024679769912550578,0.99998352011193214483,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0074714432976179,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,-12.464740249884616929,1.77323111747512029978,0.00000000000000000000,1.00000000000000000000,-0.0062356859430587972,-0.0024062581433991129,0.99997766282180877706,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0471941181112924,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-8.9043406151979933582,2.73192864246237077097,0.00000000000000000000,1.00000000000000000000,-0.0059137899693848666,-0.0023197702165906487,0.99997982267360796537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.0178559140313154,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,-5.3439598156357650537,3.69062313762633786851,0.00000000000000000000,1.00000000000000000000,-0.0055918935388834184,-0.0022332805934231897,0.99998187142789773940,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9897396874785044,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,-1.7835970644954119990,4.64931481502120114157,0.00000000000000000000,1.00000000000000000000,-0.0052699966873163764,-0.0021467892835354889,0.99998380908427109137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10995.9628454230405623,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-9.6163874844732593061,-8.8257482337614963086,0.00000000000000000000,1.00000000000000000000,-0.0059761721587403421,-0.0033698159373556973,0.99997646457648059481,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1847572547230811,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-6.0559512668927855116,-7.8670098498999463387,0.00000000000000000000,1.00000000000000000000,-0.0056542761802784559,-0.0032833280423122655,0.99997862423046024460,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1554168576967640,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,-2.4955335678660426346,-6.9082756804246594484,0.00000000000000000000,1.00000000000000000000,-0.0053323797450226060,-0.0031968384506871516,0.99998067278831714865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1272984675488260,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,1.06486639932853099921,-5.9495455132565604472,0.00000000000000000000,1.00000000000000000000,-0.0050104828887346918,-0.0031103471721193069,0.99998261024964363308,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10996.1004020688651507,1.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneMirror.rayui.csv b/Intern/RAY-Core/tests/output/PlaneMirror.rayui.csv deleted file mode 100644 index 5d9e8bc53..000000000 --- a/Intern/RAY-Core/tests/output/PlaneMirror.rayui.csv +++ /dev/null @@ -1,101 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-5.0354696532798302044,0.00000000000000000000,7.75212559103439957652,-1.0000000000000000000,-0.0004999999166666709,0.64240442678404996446,0.76636564539933504924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.94097421640617984195,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-3.9164762687755398928,0.00000000000000000000,7.75212520644893032795,-1.0000000000000000000,-0.0003888888304755400,0.64240445852664296300,0.76636568322868403591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.94047980123468999380,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,-2.7974829804361700524,-0.0000000000000004440,7.75212491800874037295,-1.0000000000000000000,-0.0002777777394833119,0.64240448233358804497,0.76636571160069699715,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.94010898988199009806,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,-1.6784897607860100876,0.00000000000000044408,7.75212472571492039463,-1.0000000000000000000,-0.0001666666450617289,0.64240449820488498833,0.76636573051537204559,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.93986178232444039792,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-0.5594965823493900369,0.00000000000000000000,7.75212462956747039299,-1.0000000000000000000,-0.0000555555485825333,0.64240450614053301592,0.76636573997270895919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.93973817854930974391,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,0.55949658234939003698,0.00000000000000000000,7.75212462956747039299,-1.0000000000000000000,0.00005555554858253330,0.64240450614053301592,0.76636573997270895919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.93973817854930974391,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,1.67848976078601008765,0.00000000000000044408,7.75212472571492039463,-1.0000000000000000000,0.00016666664506172898,0.64240449820488498833,0.76636573051537204559,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.93986178232444039792,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,2.79748298043617005248,-0.0000000000000004440,7.75212491800874037295,-1.0000000000000000000,0.00027777773948331198,0.64240448233358804497,0.76636571160069699715,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.94010898988199009806,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,3.91647626877553989288,0.00000000000000000000,7.75212520644893032795,-1.0000000000000000000,0.00038888883047554000,0.64240445852664296300,0.76636568322868403591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.94047980123468999380,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,5.03546965327983020443,0.00000000000000000000,7.75212559103439957652,-1.0000000000000000000,0.00049999991666667094,0.64240442678404996446,0.76636564539933504924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,5.94097421640617984195,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,-5.0348095168983402203,0.00000000000000044408,6.02863204595774959670,-1.0000000000000000000,-0.0004999999413580270,0.64248957456742794569,0.76629426239025399958,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.62020717801715008477,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,-3.9159628294101000989,0.00000000000000000000,6.02863174691410019789,-1.0000000000000000000,-0.0003888888496799279,0.64248960631002305365,0.76629430021960498464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61971289359644021743,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-2.7971162380549898784,-0.0000000000000004440,6.02863152263055024349,-1.0000000000000000000,-0.0002777777532007319,0.64248963011696902380,0.76629432859161894509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61934218030728960258,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-1.6782697153663899136,0.00000000000000044408,6.02863137310819041658,-1.0000000000000000000,-0.0001666666532921810,0.64248964598826696636,0.76629434750629499273,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61909503812784993925,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,-0.5594232338776959911,0.00000000000000044408,6.02863129834809008400,-1.0000000000000000000,-0.0000555555513260173,0.64248965392391499396,0.76629435696363301655,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61897146704176986276,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,0.55942323387769599118,0.00000000000000044408,6.02863129834809008400,-1.0000000000000000000,0.00005555555132601739,0.64248965392391499396,0.76629435696363301655,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61897146704176986276,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,1.67826971536638991366,0.00000000000000044408,6.02863137310819041658,-1.0000000000000000000,0.00016666665329218100,0.64248964598826696636,0.76629434750629499273,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61909503812784993925,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,2.79711623805498987849,-0.0000000000000004440,6.02863152263055024349,-1.0000000000000000000,0.00027777775320073197,0.64248963011696902380,0.76629432859161894509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61934218030728960258,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,3.91596282941010009892,0.00000000000000000000,6.02863174691410019789,-1.0000000000000000000,0.00038888884967992797,0.64248960631002305365,0.76629430021960498464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.61971289359644021743,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,5.03480951689834022033,0.00000000000000044408,6.02863204595774959670,-1.0000000000000000000,0.00049999994135802700,0.64248957456742794569,0.76629426239025399958,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.62020717801715008477,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -20 ,0 ,-5.0341495554586996874,0.00000000000000000000,4.30559524158061979193,-1.0000000000000000000,-0.0004999999598765440,0.64257471441883595719,0.76622286992074994937,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29991365132628011735,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -21 ,0 ,-3.9154495261105299874,0.00000000000000044408,4.30559502803327998066,-1.0000000000000000000,-0.0003888888640832200,0.64257474616143195333,0.76622290775010304386,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29941949759813990539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -22 ,0 ,-2.7967495928637098323,-0.0000000000000004440,4.30559486787467982082,-1.0000000000000000000,-0.0002777777634887980,0.64257476996837903371,0.76622293612211700430,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29904888233249993234,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -23 ,0 ,-1.6780497282607000908,0.00000000000000000000,4.30559476110155969763,-1.0000000000000000000,-0.0001666666594650209,0.64257478583967697627,0.76622295503679405115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29880180550025992047,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -24 ,0 ,-0.5593499048439789511,-0.0000000000000004440,4.30559470771499963603,-1.0000000000000000000,-0.0000555555533836304,0.64257479377532600306,0.76622296449413296315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29867826708687017500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -25 ,0 ,0.55934990484397895116,-0.0000000000000004440,4.30559470771499963603,-1.0000000000000000000,0.00005555555338363049,0.64257479377532600306,0.76622296449413296315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29867826708687017500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -26 ,0 ,1.67804972826070009084,0.00000000000000000000,4.30559476110155969763,-1.0000000000000000000,0.00016666665946502099,0.64257478583967697627,0.76622295503679405115,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29880180550025992047,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -27 ,0 ,2.79674959286370983235,-0.0000000000000004440,4.30559486787467982082,-1.0000000000000000000,0.00027777776348879800,0.64257476996837903371,0.76622293612211700430,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29904888233249993234,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -28 ,0 ,3.91544952611052998747,0.00000000000000044408,4.30559502803327998066,-1.0000000000000000000,0.00038888886408322000,0.64257474616143195333,0.76622290775010304386,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29941949759813990539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -29 ,0 ,5.03414955545869968744,0.00000000000000000000,4.30559524158061979193,-1.0000000000000000000,0.00049999995987654402,0.64257471441883595719,0.76622286992074994937,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.29991365132628011735,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -30 ,0 ,-5.0334897688750297461,0.00000000000000000000,2.58301495366587996471,-1.0000000000000000000,-0.0004999999722222229,0.64265984633722295082,0.76615146799170497082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.98009341560646001667,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -31 ,0 ,-3.9149363588100198896,0.00000000000000000000,2.58301482557153017083,-1.0000000000000000000,-0.0003888888736854139,0.64265987807981994617,0.76615150582105795429,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97959939251632000001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -32 ,0 ,-2.7963830448146000939,0.00000000000000000000,2.58301472950186017385,-1.0000000000000000000,-0.0002777777703475079,0.64265990188676702654,0.76615153419307402415,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97922887522691004491,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -33 ,0 ,-1.6778297994403099657,0.00000000000000000000,2.58301466545576996480,-1.0000000000000000000,-0.0001666666635802470,0.64265991775806596830,0.76615155310775095998,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97898186371457995846,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -34 ,0 ,-0.5592765952386959948,-0.0000000000000002220,2.58301463343217996282,-1.0000000000000000000,-0.0000555555547553725,0.64265992569371499509,0.76615156256508998300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97885835795932996106,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -35 ,0 ,0.55927659523869599489,-0.0000000000000002220,2.58301463343217996282,-1.0000000000000000000,0.00005555555475537259,0.64265992569371499509,0.76615156256508998300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97885835795932996106,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -36 ,0 ,1.67782979944030996577,0.00000000000000000000,2.58301466545576996480,-1.0000000000000000000,0.00016666666358024700,0.64265991775806596830,0.76615155310775095998,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97898186371457995846,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -37 ,0 ,2.79638304481460009398,0.00000000000000000000,2.58301472950186017385,-1.0000000000000000000,0.00027777777034750799,0.64265990188676702654,0.76615153419307402415,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97922887522691004491,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -38 ,0 ,3.91493635881001988963,0.00000000000000000000,2.58301482557153017083,-1.0000000000000000000,0.00038888887368541399,0.64265987807981994617,0.76615150582105795429,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.97959939251632000001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -39 ,0 ,5.03348976887502974619,0.00000000000000000000,2.58301495366587996471,-1.0000000000000000000,0.00049999997222222297,0.64265984633722295082,0.76615146799170497082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1.98009341560646001667,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -40 ,0 ,-5.0328301570614897286,0.00000000000000000000,0.86089095812219595948,-1.0000000000000000000,-0.0004999999783950620,0.64274497032153798947,0.76608005660399902669,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.66074625028341005261,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -41 ,0 ,-3.9144233274418200885,0.00000000000000000000,0.86089091543535800621,-1.0000000000000000000,-0.0003888888784865110,0.64274500206413498482,0.76608009443335300936,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.66025235777306101603,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -42 ,0 ,-2.7960165938600001211,0.00000000000000000000,0.86089088342077202398,-1.0000000000000000000,-0.0002777777737768629,0.64274502587108295337,0.76608012280536896820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.65988193841622000412,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -43 ,0 ,-1.6776099288766199713,-0.0000000000000000555,0.86089086207843701359,-1.0000000000000000000,-0.0001666666656378600,0.64274504174238200615,0.76608014172004701425,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.65963499219287802244,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -44 ,0 ,-0.5592033050523109727,0.00000000000000011102,0.86089085140618504254,-1.0000000000000000000,-0.0000555555554412436,0.64274504967803103294,0.76608015117738503807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.65951151908302596549,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -45 ,0 ,0.55920330505231097273,0.00000000000000011102,0.86089085140618504254,-1.0000000000000000000,0.00005555555544124369,0.64274504967803103294,0.76608015117738503807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.65951151908302596549,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -46 ,0 ,1.67760992887661997130,-0.0000000000000000555,0.86089086207843701359,-1.0000000000000000000,0.00016666666563786000,0.64274504174238200615,0.76608014172004701425,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.65963499219287802244,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -47 ,0 ,2.79601659386000012119,0.00000000000000000000,0.86089088342077202398,-1.0000000000000000000,0.00027777777377686299,0.64274502587108295337,0.76608012280536896820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.65988193841622000412,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -48 ,0 ,3.91442332744182008852,0.00000000000000000000,0.86089091543535800621,-1.0000000000000000000,0.00038888887848651101,0.64274500206413498482,0.76608009443335300936,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.66025235777306101603,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -49 ,0 ,5.03283015706148972867,0.00000000000000000000,0.86089095812219595948,-1.0000000000000000000,0.00049999997839506201,0.64274497032153798947,0.76608005660399902669,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.66074625028341005261,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -50 ,0 ,-5.0321707199323002512,0.00000000000000000000,-0.8607769690014439589,-1.0000000000000000000,-0.0004999999783950620,0.64283008637072902580,0.76600863575851496634,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6581280650789269603,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -51 ,0 ,-3.9139104319392199471,-0.0000000000000000555,-0.8607769263262420311,-1.0000000000000000000,-0.0003888888784865110,0.64283011811332602114,0.76600867358786894900,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6586218270695100018,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -52 ,0 ,-2.7956502399522298318,0.00000000000000000000,-0.8607768943184870291,-1.0000000000000000000,-0.0002777777737768629,0.64283014192027398969,0.76600870195988501887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6589921485337979500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -53 ,0 ,-1.6773901165410300961,0.00000000000000000000,-0.8607768729814280206,-1.0000000000000000000,-0.0001666666656378600,0.64283015779157304248,0.76600872087456295389,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6592390294990759791,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -54 ,0 ,-0.5591300342752909546,0.00000000000000000000,-0.8607768623139819830,-1.0000000000000000000,-0.0000555555554412436,0.64283016572722295745,0.76600873033190097771,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6593624699780780140,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -55 ,0 ,0.55913003427529095468,0.00000000000000000000,-0.8607768623139819830,-1.0000000000000000000,0.00005555555544124369,0.64283016572722295745,0.76600873033190097771,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6593624699780780140,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -56 ,0 ,1.67739011654103009618,0.00000000000000000000,-0.8607768729814280206,-1.0000000000000000000,0.00016666666563786000,0.64283015779157304248,0.76600872087456295389,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6592390294990759791,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -57 ,0 ,2.79565023995222983188,0.00000000000000000000,-0.8607768943184870291,-1.0000000000000000000,0.00027777777377686299,0.64283014192027398969,0.76600870195988501887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6589921485337979500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -58 ,0 ,3.91391043193921994713,-0.0000000000000000555,-0.8607769263262420311,-1.0000000000000000000,0.00038888887848651101,0.64283011811332602114,0.76600867358786894900,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6586218270695100018,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -59 ,0 ,5.03217071993230025128,0.00000000000000000000,-0.8607769690014439589,-1.0000000000000000000,0.00049999997839506201,0.64283008637072902580,0.76600863575851496634,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6581280650789269603,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -60 ,0 ,-5.0315114574017396620,0.00000000000000000000,-2.5819890515169099387,-1.0000000000000000000,-0.0004999999722222229,0.64291519448374701006,0.76593720545613497296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9765297507819898914,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -61 ,0 ,-3.9133976722355199306,0.00000000000000000000,-2.5819889235240398583,-1.0000000000000000000,-0.0003888888736854139,0.64291522622634400541,0.76593724328548795643,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9770233823092000502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -62 ,0 ,-2.7952839830436801982,0.00000000000000000000,-2.5819888275299298641,-1.0000000000000000000,-0.0002777777703475079,0.64291525003329197396,0.76593727165750302710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9773936059264098918,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -63 ,0 ,-1.6771703624049600911,0.00000000000000000000,-2.5819887635324101360,-1.0000000000000000000,-0.0001666666635802470,0.64291526590459002754,0.76593729057218096212,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9776404216590899309,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -64 ,0 ,-0.5590567828981130027,0.00000000000000000000,-2.5819887315347398448,-1.0000000000000000000,-0.0000555555547553725,0.64291527384023905433,0.76593730002951898594,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9777638295236099619,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -65 ,0 ,0.55905678289811300274,0.00000000000000000000,-2.5819887315347398448,-1.0000000000000000000,0.00005555555475537259,0.64291527384023905433,0.76593730002951898594,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9777638295236099619,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -66 ,0 ,1.67717036240496009114,0.00000000000000000000,-2.5819887635324101360,-1.0000000000000000000,0.00016666666358024700,0.64291526590459002754,0.76593729057218096212,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9776404216590899309,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -67 ,0 ,2.79528398304368019822,0.00000000000000000000,-2.5819888275299298641,-1.0000000000000000000,0.00027777777034750799,0.64291525003329197396,0.76593727165750302710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9773936059264098918,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -68 ,0 ,3.91339767223551993069,0.00000000000000000000,-2.5819889235240398583,-1.0000000000000000000,0.00038888887368541399,0.64291522622634400541,0.76593724328548795643,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9770233823092000502,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -69 ,0 ,5.03151145740173966203,0.00000000000000000000,-2.5819890515169099387,-1.0000000000000000000,0.00049999997222222297,0.64291519448374701006,0.76593720545613497296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.9765297507819898914,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -70 ,0 ,-5.0308523693841395996,0.00000000000000000000,-4.3027455130915797099,-1.0000000000000000000,-0.0004999999598765440,0.64300029465954000595,0.76586576569773900935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2944590269762601408,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -71 ,0 ,-3.9128850482641102104,0.00000000000000088817,-4.3027452998264799077,-1.0000000000000000000,-0.0003888888640832200,0.64300032640213600210,0.76586580352709099361,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2949525280982898678,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -72 ,0 ,-2.7949178230867501859,0.00000000000000044408,-4.3027451398787404102,-1.0000000000000000000,-0.0002777777634887980,0.64300035020908297145,0.76586583189910595326,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2953226539120801241,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -73 ,0 ,-1.6769506664398698969,-0.0000000000000008881,-4.3027450332472696459,-1.0000000000000000000,-0.0001666666594650209,0.64300036608038102503,0.76586585081378300010,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2955694044430901001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -74 ,0 ,-0.5589835509112579536,0.00000000000000088817,-4.3027449799299102295,-1.0000000000000000000,-0.0000555555533836304,0.64300037401603105102,0.76586586027112102392,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2956927797040398431,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -75 ,0 ,0.55898355091125795368,0.00000000000000088817,-4.3027449799299102295,-1.0000000000000000000,0.00005555555338363049,0.64300037401603105102,0.76586586027112102392,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2956927797040398431,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -76 ,0 ,1.67695066643986989696,-0.0000000000000008881,-4.3027450332472696459,-1.0000000000000000000,0.00016666665946502099,0.64300036608038102503,0.76586585081378300010,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2955694044430901001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -77 ,0 ,2.79491782308675995594,0.00000000000000044408,-4.3027451398787404102,-1.0000000000000000000,0.00027777776348879800,0.64300035020908297145,0.76586583189910595326,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2953226539120801241,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -78 ,0 ,3.91288504826411021042,0.00000000000000088817,-4.3027452998264799077,-1.0000000000000000000,0.00038888886408322000,0.64300032640213600210,0.76586580352709099361,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2949525280982898678,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -79 ,0 ,5.03085236938413959961,0.00000000000000000000,-4.3027455130915797099,-1.0000000000000000000,0.00049999995987654402,0.64300029465954000595,0.76586576569773900935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-3.2944590269762601408,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -80 ,0 ,-5.0301934557938796643,0.00000000000000000000,-6.0230465772527104206,-1.0000000000000000000,-0.0004999999413580270,0.64308538689705796453,0.76579431648421103506,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6119161136721196214,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -81 ,0 ,-3.9123725599584000534,-0.0000000000000004440,-6.0230462787618899156,-1.0000000000000000000,-0.0003888888496799279,0.64308541863965296148,0.76579435431356202013,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6124094844472001142,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -82 ,0 ,-2.7945517600338800612,-0.0000000000000004440,-6.0230460548943201004,-1.0000000000000000000,-0.0002777777532007319,0.64308544244659904265,0.76579438268557498137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6127795125030397471,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -83 ,0 ,-1.6767310286171999145,0.00000000000000000000,-6.0230459056478302670,-1.0000000000000000000,-0.0001666666532921810,0.64308545831789698521,0.76579440160025102901,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6130261978578301906,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -84 ,0 ,-0.5589103383052119733,0.00000000000000000000,-6.0230458310245902353,-1.0000000000000000000,-0.0000555555513260173,0.64308546625354501280,0.76579441105758905283,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6131495405334099757,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -85 ,0 ,0.55891033830521197334,0.00000000000000000000,-6.0230458310245902353,-1.0000000000000000000,0.00005555555132601739,0.64308546625354501280,0.76579441105758905283,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6131495405334099757,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -86 ,0 ,1.67673102861719991452,0.00000000000000000000,-6.0230459056478302670,-1.0000000000000000000,0.00016666665329218100,0.64308545831789698521,0.76579440160025102901,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6130261978578301906,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -87 ,0 ,2.79455176003388006122,-0.0000000000000004440,-6.0230460548943201004,-1.0000000000000000000,0.00027777775320073197,0.64308544244659904265,0.76579438268557498137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6127795125030397471,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -88 ,0 ,3.91237255995840005340,-0.0000000000000004440,-6.0230462787618899156,-1.0000000000000000000,0.00038888884967992797,0.64308541863965296148,0.76579435431356202013,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6124094844472001142,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -89 ,0 ,5.03019345579387966438,0.00000000000000000000,-6.0230465772527104206,-1.0000000000000000000,0.00049999994135802700,0.64308538689705796453,0.76579431648421103506,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-4.6119161136721196214,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -90 ,0 ,-5.0295347165454096227,0.00000000000000000000,-7.7428924673940500156,-1.0000000000000000000,-0.0004999999166666709,0.64317047119525094789,0.76572285781643101287,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9289012307490303044,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -91 ,0 ,-3.9118602072518298129,0.00000000000000044408,-7.7428920837196804072,-1.0000000000000000000,-0.0003888888304755400,0.64317050293784294723,0.76572289564577999954,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9293944712335395763,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -92 ,0 ,-2.7941857938375300740,0.00000000000000000000,-7.7428917959660701342,-1.0000000000000000000,-0.0002777777394833119,0.64317052674478802920,0.76572292401779296078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9297644015714503495,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -93 ,0 ,-1.6765114489084400606,0.00000000000000000000,-7.7428916041288902150,-1.0000000000000000000,-0.0001666666450617289,0.64317054261608497256,0.76572294293246800922,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9300110217845896087,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -94 ,0 ,-0.5588371450704679999,-0.0000000000000004440,-7.7428915082113798362,-1.0000000000000000000,-0.0000555555485825333,0.64317055055173399935,0.76572295238980603304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9301343318857098196,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -95 ,0 ,0.55883714507046799990,-0.0000000000000004440,-7.7428915082113798362,-1.0000000000000000000,0.00005555554858253330,0.64317055055173399935,0.76572295238980603304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9301343318857098196,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -96 ,0 ,1.67651144890844006063,0.00000000000000000000,-7.7428916041288902150,-1.0000000000000000000,0.00016666664506172898,0.64317054261608497256,0.76572294293246800922,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9300110217845896087,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -97 ,0 ,2.79418579383753984402,0.00000000000000000000,-7.7428917959660701342,-1.0000000000000000000,0.00027777773948331198,0.64317052674478802920,0.76572292401779296078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9297644015714503495,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -98 ,0 ,3.91186020725182981294,0.00000000000000044408,-7.7428920837196804072,-1.0000000000000000000,0.00038888883047554000,0.64317050293784294723,0.76572289564577999954,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9293944712335395763,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -99 ,0 ,5.02953471654540962276,0.00000000000000000000,-7.7428924673940500156,-1.0000000000000000000,0.00049999991666667094,0.64317047119525094789,0.76572285781643101287,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-5.9289012307490303044,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneMirror.rayx.csv b/Intern/RAY-Core/tests/output/PlaneMirror.rayx.csv deleted file mode 100644 index 1d66998c0..000000000 --- a/Intern/RAY-Core/tests/output/PlaneMirror.rayx.csv +++ /dev/null @@ -1,101 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-5.0354696532798302044,0.00000000000000026406,7.75212559103398568538,1.00000000000000000000,-0.0004999999166666708,0.64240442678405007548,0.76636564539933516027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9409742164061754,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -1 ,0 ,-3.9164762687755398928,-0.0000000000000000469,7.75212520644774372158,1.00000000000000000000,-0.0003888888304755396,0.64240445852664296300,0.76636568322868425795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9404798012346873,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -2 ,0 ,-2.7974829804361660556,-0.0000000000000000524,7.75212491800730152391,1.00000000000000000000,-0.0002777777394833116,0.64240448233358804497,0.76636571160069655306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9401089898801728,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -3 ,0 ,-1.6784897607860125301,-0.0000000000000001777,7.75212472571468858006,1.00000000000000000000,-0.0001666666450617288,0.64240449820488498833,0.76636573051537182355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9398617823244421,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -4 ,0 ,-0.5594965823493900369,-0.0000000000000001834,7.75212462956685843806,1.00000000000000000000,-0.0000555555485825332,0.64240450614053346001,0.76636573997270929226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9397381785493053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -5 ,0 ,0.55949658234939003698,-0.0000000000000001834,7.75212462956685843806,1.00000000000000000000,0.00005555554858253328,0.64240450614053346001,0.76636573997270929226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9397381785493053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -6 ,0 ,1.67848976078601341832,-0.0000000000000001777,7.75212472571468858006,1.00000000000000000000,0.00016666664506172898,0.64240449820488498833,0.76636573051537182355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9398617823244421,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -7 ,0 ,2.79748298043616649977,-0.0000000000000000524,7.75212491800730152391,1.00000000000000000000,0.00027777773948331170,0.64240448233358804497,0.76636571160069655306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9401089898801728,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -8 ,0 ,3.91647626877553989288,-0.0000000000000000469,7.75212520644774372158,1.00000000000000000000,0.00038888883047553962,0.64240445852664296300,0.76636568322868425795,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9404798012346873,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -9 ,0 ,5.03546965327983020443,0.00000000000000026406,7.75212559103398568538,1.00000000000000000000,0.00049999991666667084,0.64240442678405007548,0.76636564539933516027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10005.9409742164061754,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -10 ,0 ,-5.0348095168983402203,0.00000000000000025089,6.02863204595784551997,1.00000000000000000000,-0.0004999999413580270,0.64248957456742816773,0.76629426239025422162,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6202071780171536,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -11 ,0 ,-3.9159628294101005430,-0.0000000000000002633,6.02863174691409398064,1.00000000000000000000,-0.0003888888496799280,0.64248960631002272059,0.76629430021960531771,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6197128935982618,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -12 ,0 ,-2.7971162380549885462,0.00000000000000005795,6.02863152263102453076,1.00000000000000000000,-0.0002777777532007321,0.64248963011696891278,0.76629432859161894509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6193421803072851,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -13 ,0 ,-1.6782697153663896916,-0.0000000000000001408,6.02863137311067109891,1.00000000000000000000,-0.0001666666532921812,0.64248964598826652228,0.76629434750629499273,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6190950381278526,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -14 ,0 ,-0.5594232338776959911,-0.0000000000000003531,6.02863129834998723310,1.00000000000000000000,-0.0000555555513260174,0.64248965392391543804,0.76629435696363312757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6189714670435932,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -15 ,0 ,0.55942323387769599118,-0.0000000000000003531,6.02863129834998723310,1.00000000000000000000,0.00005555555132601741,0.64248965392391543804,0.76629435696363312757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6189714670435932,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -16 ,0 ,1.67826971536639080184,-0.0000000000000001408,6.02863137311067109891,1.00000000000000000000,0.00016666665329218135,0.64248964598826652228,0.76629434750629499273,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6190950381278526,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -17 ,0 ,2.79711623805498854622,0.00000000000000005795,6.02863152263102453076,1.00000000000000000000,0.00027777775320073219,0.64248963011696891278,0.76629432859161894509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6193421803072851,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -18 ,0 ,3.91596282941010054301,-0.0000000000000002633,6.02863174691409398064,1.00000000000000000000,0.00038888884967992802,0.64248960631002272059,0.76629430021960531771,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6197128935982618,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -19 ,0 ,5.03480951689834022033,0.00000000000000025089,6.02863204595784551997,1.00000000000000000000,0.00049999994135802700,0.64248957456742816773,0.76629426239025422162,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10004.6202071780171536,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -20 ,0 ,-5.0341495554587023519,0.00000000000000027384,4.30559524158059936382,1.00000000000000000000,-0.0004999999598765443,0.64257471441883617924,0.76622286992075039346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2999136513262783,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -21 ,0 ,-3.9154495261105290992,-0.0000000000000003078,4.30559502803375160340,1.00000000000000000000,-0.0003888888640832195,0.64257474616143184231,0.76622290775010282182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2994194975981372,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -22 ,0 ,-2.7967495928637062796,0.00000000000000011835,4.30559486787361489490,1.00000000000000000000,-0.0002777777634887976,0.64257476996837903371,0.76622293612211755942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2990488823324994,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -23 ,0 ,-1.6780497282606992026,0.00000000000000034737,4.30559476110120531444,1.00000000000000000000,-0.0001666666594650206,0.64257478583967730934,0.76622295503679438422,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2988018055002612,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -24 ,0 ,-0.5593499048439790621,0.00000000000000009561,4.30559470771449337433,1.00000000000000000000,-0.0000555555533836305,0.64257479377532644715,0.76622296449413274110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2986782670868706,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -25 ,0 ,0.55934990484397906218,0.00000000000000009561,4.30559470771449337433,1.00000000000000000000,0.00005555555338363054,0.64257479377532644715,0.76622296449413274110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2986782670868706,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -26 ,0 ,1.67804972826070031288,0.00000000000000034737,4.30559476110120531444,1.00000000000000000000,0.00016666665946502072,0.64257478583967730934,0.76622295503679438422,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2988018055002612,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -27 ,0 ,2.79674959286370672373,0.00000000000000011835,4.30559486787361489490,1.00000000000000000000,0.00027777776348879767,0.64257476996837903371,0.76622293612211755942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2990488823324994,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -28 ,0 ,3.91544952611052909929,-0.0000000000000003078,4.30559502803375160340,1.00000000000000000000,0.00038888886408321957,0.64257474616143184231,0.76622290775010282182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2994194975981372,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -29 ,0 ,5.03414955545870235198,0.00000000000000027384,4.30559524158059936382,1.00000000000000000000,0.00049999995987654434,0.64257471441883617924,0.76622286992075039346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10003.2999136513262783,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -30 ,0 ,-5.0334897688750279698,-0.0000000000000001013,2.58301495366455524660,1.00000000000000000000,-0.0004999999722222227,0.64265984633722317287,0.76615146799170497082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9800934156046423,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -31 ,0 ,-3.9149363588100221100,-0.0000000000000001409,2.58301482557106920623,1.00000000000000000000,-0.0003888888736854140,0.64265987807981961310,0.76615150582105839838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9795993925145012,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -32 ,0 ,-2.7963830448146036466,-0.0000000000000001431,2.58301472950146226992,1.00000000000000000000,-0.0002777777703475080,0.64265990188676735961,0.76615153419307391313,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9792288752250897,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -33 ,0 ,-1.6778297994403128523,0.00000000000000002561,2.58301466545269065022,1.00000000000000000000,-0.0001666666635802468,0.64265991775806607932,0.76615155310775107100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9789818637109419,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -34 ,0 ,-0.5592765952386963279,-0.0000000000000001219,2.58301463343084058976,1.00000000000000000000,-0.0000555555547553726,0.64265992569371532816,0.76615156256508964993,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9788583579593250,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -35 ,0 ,0.55927659523869632796,-0.0000000000000001219,2.58301463343084058976,1.00000000000000000000,0.00005555555475537264,0.64265992569371532816,0.76615156256508964993,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9788583579593250,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -36 ,0 ,1.67782979944031396257,0.00000000000000002561,2.58301466545269065022,1.00000000000000000000,0.00016666666358024700,0.64265991775806607932,0.76615155310775107100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9789818637109419,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -37 ,0 ,2.79638304481460453487,-0.0000000000000001431,2.58301472950146226992,1.00000000000000000000,0.00027777777034750810,0.64265990188676735961,0.76615153419307391313,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9792288752250897,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -38 ,0 ,3.91493635881002211007,-0.0000000000000001409,2.58301482557106920623,1.00000000000000000000,0.00038888887368541404,0.64265987807981961310,0.76615150582105839838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9795993925145012,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -39 ,0 ,5.03348976887502796984,-0.0000000000000001013,2.58301495366455524660,1.00000000000000000000,0.00049999997222222275,0.64265984633722317287,0.76615146799170497082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10001.9800934156046423,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -40 ,0 ,-5.0328301570614870641,0.00000000000000004280,0.86089095812249016859,1.00000000000000000000,-0.0004999999783950620,0.64274497032153787845,0.76608005660399947078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6607462502834096,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -41 ,0 ,-3.9144233274418231971,0.00000000000000000674,0.86089091543579454590,1.00000000000000000000,-0.0003888888784865112,0.64274500206413476277,0.76608009443335334243,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6602523577730607,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -42 ,0 ,-2.7960165938599974566,0.00000000000000002486,0.86089088342127983999,1.00000000000000000000,-0.0002777777737768632,0.64274502587108273132,0.76608012280536919025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6598819384180387,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -43 ,0 ,-1.6776099288766206374,-0.0000000000000000394,0.86089086207793208416,1.00000000000000000000,-0.0001666666656378600,0.64274504174238156206,0.76608014172004657016,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6596349921928776,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -44 ,0 ,-0.5592033050523107506,0.00000000000000001783,0.86089085140575116739,1.00000000000000000000,-0.0000555555554412436,0.64274504967803103294,0.76608015117738526011,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6595115190830256,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -45 ,0 ,0.55920330505231075068,0.00000000000000001783,0.86089085140575116739,1.00000000000000000000,0.00005555555544124369,0.64274504967803103294,0.76608015117738526011,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6595115190830256,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -46 ,0 ,1.67760992887662174766,-0.0000000000000000394,0.86089086207793208416,1.00000000000000000000,0.00016666666563786014,0.64274504174238156206,0.76608014172004657016,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6596349921928776,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -47 ,0 ,2.79601659385999790075,0.00000000000000002486,0.86089088342127983999,1.00000000000000000000,0.00027777777377686332,0.64274502587108273132,0.76608012280536919025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6598819384180387,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -48 ,0 ,3.91442332744182319714,0.00000000000000000674,0.86089091543579454590,1.00000000000000000000,0.00038888887848651128,0.64274500206413476277,0.76608009443335334243,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6602523577730607,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -49 ,0 ,5.03283015706148706414,0.00000000000000004280,0.86089095812249016859,1.00000000000000000000,0.00049999997839506201,0.64274497032153787845,0.76608005660399947078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10000.6607462502834096,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -50 ,0 ,-5.0321707199322993631,-0.0000000000000000410,-0.8607769690014165364,1.00000000000000000000,-0.0004999999783950620,0.64283008637072946989,0.76600863575851541042,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34187193491925427,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -51 ,0 ,-3.9139104319392155062,0.00000000000000000591,-0.8607769263258520098,1.00000000000000000000,-0.0003888888784865112,0.64283011811332635421,0.76600867358786928207,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34137817293049010,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -52 ,0 ,-2.7956502399522316082,0.00000000000000000270,-0.8607768943206984824,1.00000000000000000000,-0.0002777777737768632,0.64283014192027443378,0.76600870195988512989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34100785146438283,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -53 ,0 ,-1.6773901165410287639,-0.0000000000000000201,-0.8607768729829161635,1.00000000000000000000,-0.0001666666656378600,0.64283015779157326452,0.76600872087456250980,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34076097050092357,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -54 ,0 ,-0.5591300342752913987,-0.0000000000000000240,-0.8607768623135182428,1.00000000000000000000,-0.0000555555554412436,0.64283016572722273540,0.76600873033190131078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34063753002192243,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -55 ,0 ,0.55913003427529139877,-0.0000000000000000240,-0.8607768623135182428,1.00000000000000000000,0.00005555555544124369,0.64283016572722273540,0.76600873033190131078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34063753002192243,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -56 ,0 ,1.67739011654102987414,-0.0000000000000000201,-0.8607768729829161635,1.00000000000000000000,0.00016666666563786014,0.64283015779157326452,0.76600872087456250980,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34076097050092357,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -57 ,0 ,2.79565023995223249642,0.00000000000000000270,-0.8607768943206984824,1.00000000000000000000,0.00027777777377686332,0.64283014192027443378,0.76600870195988512989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34100785146438283,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -58 ,0 ,3.91391043193921550624,0.00000000000000000591,-0.8607769263258520098,1.00000000000000000000,0.00038888887848651128,0.64283011811332635421,0.76600867358786928207,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34137817293049010,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -59 ,0 ,5.03217071993229936310,-0.0000000000000000410,-0.8607769690014165364,1.00000000000000000000,0.00049999997839506201,0.64283008637072946989,0.76600863575851541042,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9999.34187193491925427,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -60 ,0 ,-5.0315114574017405502,0.00000000000000009689,-2.5819890515164729549,1.00000000000000000000,-0.0004999999722222227,0.64291519448374734313,0.76593720545613475092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02347024921800766,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -61 ,0 ,-3.9133976722355230393,0.00000000000000015395,-2.5819889235231658908,1.00000000000000000000,-0.0003888888736854140,0.64291522622634378336,0.76593724328548817847,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02297661769262049,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -62 ,0 ,-2.7952839830436828627,0.00000000000000005296,-2.5819888275286912993,1.00000000000000000000,-0.0002777777703475080,0.64291525003329152987,0.76593727165750369323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02260639407359121,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -63 ,0 ,-1.6771703624049629777,-0.0000000000000001021,-2.5819887635320375451,1.00000000000000000000,-0.0001666666635802468,0.64291526590459013856,0.76593729057218085110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02235957834091095,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -64 ,0 ,-0.5590567828981133358,0.00000000000000000686,-2.5819887315352301193,1.00000000000000000000,-0.0000555555547553726,0.64291527384023949842,0.76593730002951943003,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02223617047820880,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -65 ,0 ,0.55905678289811333581,0.00000000000000000686,-2.5819887315352301193,1.00000000000000000000,0.00005555555475537264,0.64291527384023949842,0.76593730002951943003,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02223617047820880,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -66 ,0 ,1.67717036240496408794,-0.0000000000000001021,-2.5819887635320375451,1.00000000000000000000,0.00016666666358024700,0.64291526590459013856,0.76593729057218085110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02235957834091095,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -67 ,0 ,2.79528398304368330684,0.00000000000000005296,-2.5819888275286912993,1.00000000000000000000,0.00027777777034750810,0.64291525003329152987,0.76593727165750369323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02260639407359121,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -68 ,0 ,3.91339767223552303931,0.00000000000000015395,-2.5819889235231658908,1.00000000000000000000,0.00038888887368541404,0.64291522622634378336,0.76593724328548817847,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02297661769262049,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -69 ,0 ,5.03151145740174055021,0.00000000000000009689,-2.5819890515164729549,1.00000000000000000000,0.00049999997222222275,0.64291519448374734313,0.76593720545613475092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9998.02347024921800766,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -70 ,0 ,-5.0308523693841422641,-0.0000000000000003654,-4.3027455130901337554,1.00000000000000000000,-0.0004999999598765443,0.64300029465954033902,0.76586576569773912037,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70554097302556328,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -71 ,0 ,-3.9128850482641142072,0.00000000000000027543,-4.3027452998266255690,1.00000000000000000000,-0.0003888888640832195,0.64300032640213611312,0.76586580352709154873,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70504747190352645,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -72 ,0 ,-2.7949178230867546268,0.00000000000000019464,-4.3027451398772225132,1.00000000000000000000,-0.0002777777634887976,0.64300035020908319349,0.76586583189910639735,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70467734608791943,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -73 ,0 ,-1.6769506664398656781,-0.0000000000000002437,-4.3027450332469863170,1.00000000000000000000,-0.0001666666594650206,0.64300036608038158014,0.76586585081378311112,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70443059555691434,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -74 ,0 ,-0.5589835509112576206,0.00000000000000008640,-4.3027449799298436161,1.00000000000000000000,-0.0000555555533836305,0.64300037401603071796,0.76586586027112157903,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70430722029595926,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -75 ,0 ,0.55898355091125762061,0.00000000000000008640,-4.3027449799298436161,1.00000000000000000000,0.00005555555338363054,0.64300037401603071796,0.76586586027112157903,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70430722029595926,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -76 ,0 ,1.67695066643986678833,-0.0000000000000002437,-4.3027450332469863170,1.00000000000000000000,0.00016666665946502072,0.64300036608038158014,0.76586585081378311112,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70443059555691434,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -77 ,0 ,2.79491782308675507096,0.00000000000000019464,-4.3027451398772225132,1.00000000000000000000,0.00027777776348879767,0.64300035020908319349,0.76586583189910639735,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70467734608791943,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -78 ,0 ,3.91288504826411420722,0.00000000000000027543,-4.3027452998266255690,1.00000000000000000000,0.00038888886408321957,0.64300032640213611312,0.76586580352709154873,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70504747190352645,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -79 ,0 ,5.03085236938414226415,-0.0000000000000003654,-4.3027455130901337554,1.00000000000000000000,0.00049999995987654434,0.64300029465954033902,0.76586576569773912037,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9996.70554097302556328,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -80 ,0 ,-5.0301934557938849934,-0.0000000000000002115,-6.0230465772531633916,1.00000000000000000000,-0.0004999999413580270,0.64308538689705829760,0.76579431648421070200,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38808388632605783,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -81 ,0 ,-3.9123725599583987211,0.00000000000000019466,-6.0230462787619201137,1.00000000000000000000,-0.0003888888496799280,0.64308541863965285045,0.76579435431356179808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38759051555280166,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -82 ,0 ,-2.7945517600338840580,0.00000000000000013157,-6.0230460548939923626,1.00000000000000000000,-0.0002777777532007321,0.64308544244659904265,0.76579438268557542546,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38722048749878013,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -83 ,0 ,-1.6767310286171996924,-0.0000000000000000235,-6.0230459056483702795,1.00000000000000000000,-0.0001666666532921812,0.64308545831789676316,0.76579440160025147310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38697380214034637,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -84 ,0 ,-0.5589103383052115292,0.00000000000000015248,-6.0230458310270771349,1.00000000000000000000,-0.0000555555513260174,0.64308546625354567893,0.76579441105758949692,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38685045946476748,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -85 ,0 ,0.55891033830521152925,0.00000000000000015248,-6.0230458310270771349,1.00000000000000000000,0.00005555555132601741,0.64308546625354567893,0.76579441105758949692,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38685045946476748,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -86 ,0 ,1.67673102861720080269,-0.0000000000000000235,-6.0230459056483702795,1.00000000000000000000,0.00016666665329218135,0.64308545831789676316,0.76579440160025147310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38697380214034637,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -87 ,0 ,2.79455176003388405803,0.00000000000000013157,-6.0230460548939923626,1.00000000000000000000,0.00027777775320073219,0.64308544244659904265,0.76579438268557542546,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38722048749878013,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -88 ,0 ,3.91237255995839872113,0.00000000000000019466,-6.0230462787619201137,1.00000000000000000000,0.00038888884967992802,0.64308541863965285045,0.76579435431356179808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38759051555280166,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -89 ,0 ,5.03019345579388499345,-0.0000000000000002115,-6.0230465772531633916,1.00000000000000000000,0.00049999994135802700,0.64308538689705829760,0.76579431648421070200,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9995.38808388632605783,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -90 ,0 ,-5.0295347165454087345,-0.0000000000000001735,-7.7428924673923358312,1.00000000000000000000,-0.0004999999166666708,0.64317047119525050380,0.76572285781643145696,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.07109876925278513,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -91 ,0 ,-3.9118602072518280365,0.00000000000000003336,-7.7428920837198571547,1.00000000000000000000,-0.0003888888304755396,0.64317050293784350234,0.76572289564578055465,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.07060552876646397,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -92 ,0 ,-2.7941857938375349590,-0.0000000000000000521,-7.7428917959647396429,1.00000000000000000000,-0.0002777777394833116,0.64317052674478847329,0.76572292401779284976,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.07023559843037219,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -93 ,0 ,-1.6765114489084427251,0.00000000000000029173,-7.7428916041279940429,1.00000000000000000000,-0.0001666666450617288,0.64317054261608541665,0.76572294293246800922,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.06998897821722493,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -94 ,0 ,-0.5588371450704679999,0.00000000000000002262,-7.7428915082096212429,1.00000000000000000000,-0.0000555555485825332,0.64317055055173388833,0.76572295238980558895,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.06986566811428929,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -95 ,0 ,0.55883714507046799990,0.00000000000000002262,-7.7428915082096212429,1.00000000000000000000,0.00005555554858253328,0.64317055055173388833,0.76572295238980558895,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.06986566811428929,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -96 ,0 ,1.67651144890844361334,0.00000000000000029173,-7.7428916041279940429,1.00000000000000000000,0.00016666664506172898,0.64317054261608541665,0.76572294293246800922,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.06998897821722493,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -97 ,0 ,2.79418579383753584721,-0.0000000000000000521,-7.7428917959647396429,1.00000000000000000000,0.00027777773948331170,0.64317052674478847329,0.76572292401779284976,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.07023559843037219,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -98 ,0 ,3.91186020725182803658,0.00000000000000003336,-7.7428920837198571547,1.00000000000000000000,0.00038888883047553962,0.64317050293784350234,0.76572289564578055465,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.07060552876646397,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -99 ,0 ,5.02953471654540873458,-0.0000000000000001735,-7.7428924673923358312,1.00000000000000000000,0.00049999991666667084,0.64317047119525050380,0.76572285781643145696,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9994.07109876925278513,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneMirrorDef.rayui.csv b/Intern/RAY-Core/tests/output/PlaneMirrorDef.rayui.csv deleted file mode 100644 index 67b3de4d4..000000000 --- a/Intern/RAY-Core/tests/output/PlaneMirrorDef.rayui.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-3.9256564129349698077,-6.7251911205093897194,0.00000000000000000000,-1.0000000000000000000,-0.0003535533154915260,-0.0006123723940040609,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000290089999999999,0.00275000045940033011,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-0.3629997221534569940,-5.7705795046367596157,0.00000000000000000000,-1.0000000000000000000,-0.0000315780996868780,-0.0005260993949464150,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000298975999999999,0.00152777794198754993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,3.19965673326978006230,-4.8159685844961197531,0.00000000000000000000,-1.0000000000000000000,0.00029039713400527201,-0.0004398263910957439,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000298902000000000,0.00152777794221492990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,6.76231374038559973627,-3.8613581491986899152,0.00000000000000000000,-1.0000000000000000000,0.00061237234980991304,-0.0003535533920380440,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000150033000,-0.0000008966829999999,0.00275000045769502017,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-4.8712088905667396687,-3.1963412327651998801,0.00000000000000000000,-1.0000000000000000000,-0.0004398263789958780,-0.0002903971523313980,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000150374000,-0.0000008977029999999,0.00152777793982750002,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-1.3085520943405000160,-2.2417300104173500940,0.00000000000000000000,-1.0000000000000000000,-0.0001178511274162090,-0.0002041241436878109,0.99999997222222203330,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000289435999999999,0.00030555556008948802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,2.25410436108279021993,-1.2871190902771298958,0.00000000000000000000,-1.0000000000000000000,0.00020412414205097401,-0.0001178511302512810,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000150524000,-0.0000008981469999999,0.00030555555940736699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,5.81676126275386007336,-0.3325082614547629766,0.00000000000000000000,-1.0000000000000000000,0.00052609939363064297,-0.0000315781216076937,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000298268000000000,0.00152777794232861001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-5.8167612627537996772,0.33250826145434297931,0.00000000000000000000,-1.0000000000000000000,-0.0005260993936306429,0.00003157812160769379,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000297930000000000,0.00152777794187386006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-2.2541043610827200538,1.28711909027663007343,0.00000000000000000000,-1.0000000000000000000,-0.0002041241420509710,0.00011785113025125300,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000297856000000000,0.00030555556122635602,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,1.30855209434054997608,2.24173001041696018376,0.00000000000000000000,-1.0000000000000000000,0.00011785112741621300,0.00020412414368778299,0.99999997222222203330,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000288785000000000,0.00030555556213585099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,4.87120889056679029494,3.19634123276486015186,0.00000000000000000000,-1.0000000000000000000,0.00043982637899587801,0.00029039715233139800,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000288709000000000,0.00152777794050961996,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-6.7623137403856601324,3.86135814919914999165,0.00000000000000000000,-1.0000000000000000000,-0.0006123723498099159,0.00035355339203807100,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000151509000,-0.0000009010720000000,0.00275000045780871005,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-3.1996567332697298802,4.81596858449572984284,0.00000000000000000000,-1.0000000000000000000,-0.0002903971340052720,0.00043982639109574399,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00152777794164649007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,0.36299972215348502713,5.77057950463654023565,0.00000000000000000000,-1.0000000000000000000,0.00003157809968687800,0.00052609939494641501,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000297226999999999,0.00152777794141912008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,3.92565641293496980779,6.72519112050940037761,0.00000000000000000000,-1.0000000000000000000,0.00035355331549152200,0.00061237239400408795,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000288136000000000,0.00275000045758133984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-3.9256564129349698077,-6.7251911205093897194,0.00000000000000000000,-1.0000000000000000000,-0.0003535533154915260,-0.0006123723940040609,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000290089999999999,0.00275000045940033011,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-0.3629997221534569940,-5.7705795046367596157,0.00000000000000000000,-1.0000000000000000000,-0.0000315780996868780,-0.0005260993949464150,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000298975999999999,0.00152777794198754993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,3.19965673326978006230,-4.8159685844961197531,0.00000000000000000000,-1.0000000000000000000,0.00029039713400527201,-0.0004398263910957439,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.86602500000000004476,0.50000000000000000000,-0.0000298902000000000,0.00152777794221492990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,6.76231374038559973627,-3.8613581491986899152,0.00000000000000000000,-1.0000000000000000000,0.00061237234980991304,-0.0003535533920380440,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000150033000,-0.0000008966829999999,0.00275000045769502017,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneMirrorDef.rayx.csv b/Intern/RAY-Core/tests/output/PlaneMirrorDef.rayx.csv deleted file mode 100644 index bd299f5cd..000000000 --- a/Intern/RAY-Core/tests/output/PlaneMirrorDef.rayx.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-3.9256564129349693637,-6.7251911205090371126,0.00000000000000000000,1.00000000000000000000,-0.0003535533154915165,-0.0006123723940040745,0.99999975000002083724,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004598550,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-0.3629997221535449236,-5.7705795046360499611,0.00000000000000000000,1.00000000000000000000,-0.0000315780996868760,-0.0005260993949463913,0.99999986111111538455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779421012,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,3.19965673326977295687,-4.8159685844961295231,0.00000000000000000000,1.00000000000000000000,0.00029039713400527266,-0.0004398263910957611,0.99999986111111549558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779421012,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,6.76231374038567967232,-3.8613581491991513239,0.00000000000000000000,1.00000000000000000000,0.00061237234980991738,-0.0003535533920380660,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004562170,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-4.8712088905667698668,-3.1963412327649631805,0.00000000000000000000,1.00000000000000000000,-0.0004398263789958782,-0.0002903971523314137,0.99999986111111549558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779402822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-1.3085520943405324345,-2.2417300104169322061,0.00000000000000000000,1.00000000000000000000,-0.0001178511274162125,-0.0002041241436877472,0.99999997222222236636,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003055555589526,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,2.25410436108274359057,-1.2871190902764755303,0.00000000000000000000,1.00000000000000000000,0.00020412414205097338,-0.0001178511302512706,0.99999997222222236636,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003055555589526,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,5.81676126275381299990,-0.3325082614545094572,0.00000000000000000000,1.00000000000000000000,0.00052609939363064438,-0.0000315781216076816,0.99999986111111538455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779402822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-5.8167612627538201053,0.33250826145418521662,0.00000000000000000000,1.00000000000000000000,-0.0005260993936306346,0.00003157812160762096,0.99999986111111549558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779421012,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,-2.2541043610827120602,1.28711909027667248395,0.00000000000000000000,1.00000000000000000000,-0.0002041241420509758,0.00011785113025128751,0.99999997222222247739,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003055555607716,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,1.30855209434052754957,2.24173001041732078419,0.00000000000000000000,1.00000000000000000000,0.00011785112741621702,0.00020412414368781964,0.99999997222222247739,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003055555625905,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,4.87120889056677519590,3.19634123276495030196,0.00000000000000000000,1.00000000000000000000,0.00043982637899588105,0.00029039715233140857,0.99999986111111549558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779402822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,-6.7623137403857072058,3.86135814919956610324,0.00000000000000000000,1.00000000000000000000,-0.0006123723498099103,0.00035355339203812835,0.99999975000002083724,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-3.1996567332697636310,4.81596858449616505026,0.00000000000000000000,1.00000000000000000000,-0.0002903971340052698,0.00043982639109575597,0.99999986111111538455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779402822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,0.36299972215343534465,5.77057950463699054211,0.00000000000000000000,1.00000000000000000000,0.00003157809968687395,0.00052609939494647930,0.99999986111111538455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779421012,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,3.92565641293501110808,6.72519112050938616675,0.00000000000000000000,1.00000000000000000000,0.00035355331549152862,0.00061237239400409922,0.99999975000002083724,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004580360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-3.9256564129349693637,-6.7251911205090371126,0.00000000000000000000,1.00000000000000000000,-0.0003535533154915165,-0.0006123723940040745,0.99999975000002083724,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004598550,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-0.3629997221535449236,-5.7705795046360499611,0.00000000000000000000,1.00000000000000000000,-0.0000315780996868760,-0.0005260993949463913,0.99999986111111538455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779421012,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,3.19965673326977295687,-4.8159685844961295231,0.00000000000000000000,1.00000000000000000000,0.00029039713400527266,-0.0004398263910957611,0.99999986111111549558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0015277779421012,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,6.76231374038567967232,-3.8613581491991513239,0.00000000000000000000,1.00000000000000000000,0.00061237234980991738,-0.0003535533920380660,0.99999975000002072622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0027500004562170,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneMirrorMis.rayui.csv b/Intern/RAY-Core/tests/output/PlaneMirrorMis.rayui.csv deleted file mode 100644 index ba42e2c46..000000000 --- a/Intern/RAY-Core/tests/output/PlaneMirrorMis.rayui.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-6.5462700817834198474,-3.5753983484748901311,0.00000000000000000000,-1.0000000000000000000,-0.0015323200272202299,-0.0025060014182077300,0.99999568596680799004,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006763339999999,-0.6765032467684479744,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-2.8582243953275998649,-3.5536141276050599024,0.00000000000000000000,-1.0000000000000000000,-0.0011989928626242600,-0.0025040336995305898,0.99999614610824705263,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006969900000000,-0.6815871979042640305,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,0.82981831286897900223,-3.5318305354122898620,0.00000000000000000000,-1.0000000000000000000,-0.0008656655644787470,-0.0025020657581819299,0.99999649513889399266,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006969859999999,-0.6854489976523150396,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,4.51785885756063976259,-3.5100475670836601693,0.00000000000000000000,-1.0000000000000000000,-0.0005323381698200700,-0.0025000975943804400,0.99999673305870895312,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006763219999999,-0.6880886481569630230,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-6.5678338049265496678,0.07765432229325600066,0.00000000000000000000,-1.0000000000000000000,-0.0015342888334181599,-0.0021726748057880902,0.99999646271472597547,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006749679999999,-0.6850203530312910515,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-2.8797905400787100482,0.09943683417585939821,0.00000000000000000000,-1.0000000000000000000,-0.0012009616317858299,-0.0021707070868923501,0.99999692285621699650,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006749639999999,-0.6901042968638649854,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,0.80824974410883498876,0.12121912475957499766,0.00000000000000000000,-1.0000000000000000000,-0.0008676342966039459,-0.0021687391453250898,0.99999727188690201717,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006749599999999,-0.6939660910684319894,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,4.49628786238906030803,0.14300119885658099661,0.00000000000000000000,-1.0000000000000000000,-0.0005343068649088880,-0.0021667709813048799,0.99999750980674395606,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006749560000000,-0.6966057377833290154,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-6.5893974969576296629,3.73070172245479980688,0.00000000000000000000,-1.0000000000000000000,-0.0015362574691395400,-0.0018393479519601999,0.99999712835192700044,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003584200,-0.0000000207391000000,-0.6923153017320370361,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-2.9013566537143198331,3.75248252535592019540,0.00000000000000000000,-1.0000000000000000000,-0.0012029302675072100,-0.0018373802330644000,0.99999758849341802147,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006736029999999,-0.6973992388229820482,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,0.78668120646768602277,3.77426351433431994664,0.00000000000000000000,-1.0000000000000000000,-0.0008696029323253350,-0.0018354122914971699,0.99999793752410304215,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006943379999999,-0.7012610279107319710,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,4.47471689833998009788,3.79604469420233980869,0.00000000000000000000,-1.0000000000000000000,-0.0005362755006302770,-0.0018334441274769600,0.99999817544394498103,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.7039006711357840284,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-6.6109611626861797262,7.38374466677159002614,0.00000000000000000000,-1.0000000000000000000,-0.0015382259341656600,-0.0015060208937603700,0.99999768287833701307,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006722510000000,-0.6983880969182789666,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-2.9229227410444398316,7.40552376069691042914,0.00000000000000000000,-1.0000000000000000000,-0.0012048987695696899,-0.0015040531750831500,0.99999814301977696384,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003597900,-0.0000000207786000000,-0.7034720278311400454,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,0.76511269513496105165,7.42730344807339015744,0.00000000000000000000,-1.0000000000000000000,-0.0008715714714241769,-0.0015020852337344901,0.99999849205042301569,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006722430000000,-0.7073338122327189614,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,4.45314596060229028751,7.44908373371390020167,0.00000000000000000000,-1.0000000000000000000,-0.0005382440767654990,-0.0015001170699330301,0.99999872997023897536,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006930180000000,-0.7099734522614650211,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-6.5462700817834198474,-3.5753983484748901311,0.00000000000000000000,-1.0000000000000000000,-0.0015323200272202299,-0.0025060014182077300,0.99999568596680799004,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006763339999999,-0.6765032467684479744,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-2.8582243953275998649,-3.5536141276050599024,0.00000000000000000000,-1.0000000000000000000,-0.0011989928626242600,-0.0025040336995305898,0.99999614610824705263,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006969900000000,-0.6815871979042640305,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,0.82981831286897900223,-3.5318305354122898620,0.00000000000000000000,-1.0000000000000000000,-0.0008656655644787470,-0.0025020657581819299,0.99999649513889399266,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006969859999999,-0.6854489976523150396,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,4.51785885756063976259,-3.5100475670836601693,0.00000000000000000000,-1.0000000000000000000,-0.0005323381698200700,-0.0025000975943804400,0.99999673305870895312,100.000000000000000000,1.00000000000000000000,0.99992800000000003901,0.01199970000000000029,-0.0000006763219999999,-0.6880886481569630230,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneMirrorMis.rayx.csv b/Intern/RAY-Core/tests/output/PlaneMirrorMis.rayx.csv deleted file mode 100644 index 63e3d1b73..000000000 --- a/Intern/RAY-Core/tests/output/PlaneMirrorMis.rayx.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-6.5462700817834278410,-3.5753983484756024502,0.00000000000000000000,1.00000000000000000000,-0.0015323200272202321,-0.0025060014182077369,0.99999568596680754595,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3234967532316659,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-2.8582243953276025294,-3.5536141276051629311,0.00000000000000000000,1.00000000000000000000,-0.0011989928626242568,-0.0025040336995305412,0.99999614610824716365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3184128020966454,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,0.82981831286897500543,-3.5318305354128858297,0.00000000000000000000,1.00000000000000000000,-0.0008656655644787478,-0.0025020657581819923,0.99999649513889388163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3145510023477982,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,4.51785885756063887441,-3.5100475670848307885,0.00000000000000000000,1.00000000000000000000,-0.0005323381698200701,-0.0025000975943805644,0.99999673305870928619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3119113518423546,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-6.5678338049265478915,0.07765432229175946166,0.00000000000000000000,1.00000000000000000000,-0.0015342888334181565,-0.0021726748057881825,0.99999646271472564240,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3149796469660941,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-2.8797905400787229268,0.09943683417553161874,0.00000000000000000000,1.00000000000000000000,-0.0012009616317858258,-0.0021707070868923193,0.99999692285621644138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3098957031361351,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,0.80824974410883199116,0.12121912475927637542,0.00000000000000000000,1.00000000000000000000,-0.0008676342966039463,-0.0021687391453250569,0.99999727188690212820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3060339089315675,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,4.49628786238906386074,0.14300119885636169980,0.00000000000000000000,1.00000000000000000000,-0.0005343068649088881,-0.0021667709813048868,0.99999750980674373401,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3033942622132599,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-6.5893974969576456501,3.73070172245461684212,0.00000000000000000000,1.00000000000000000000,-0.0015362574691395452,-0.0018393479519602064,0.99999712835192677840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3076846982712595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,-2.9013566537143282708,3.75248252535637494275,0.00000000000000000000,1.00000000000000000000,-0.0012029302675072143,-0.0018373802330644718,0.99999758849341746635,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3026007611824752,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,0.78668120646768069370,3.77426351433465434581,0.00000000000000000000,1.00000000000000000000,-0.0008696029323253346,-0.0018354122914971539,0.99999793752410315317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.2987389720929058,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,4.47471689833996855156,3.79604469420267998103,0.00000000000000000000,1.00000000000000000000,-0.0005362755006302773,-0.0018334441274769840,0.99999817544394475898,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.2960993288670579,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,-6.6109611626862019306,7.38374466677233076694,0.00000000000000000000,1.00000000000000000000,-0.0015382259341656613,-0.0015060208937603316,0.99999768287833690205,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3016119030817208,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-2.9229227410444469370,7.40552376069643880640,0.00000000000000000000,1.00000000000000000000,-0.0012048987695696860,-0.0015040531750831916,0.99999814301977640873,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.2965279721702245,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,0.76511269513495516747,7.42730344807366371640,0.00000000000000000000,1.00000000000000000000,-0.0008715714714241768,-0.0015020852337345141,0.99999849205042334876,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.2926661877718288,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,4.45314596060227607665,7.44908373371348542235,0.00000000000000000000,1.00000000000000000000,-0.0005382440767654997,-0.0015001170699330103,0.99999872997023842025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.2900265477437642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-6.5462700817834278410,-3.5753983484756024502,0.00000000000000000000,1.00000000000000000000,-0.0015323200272202321,-0.0025060014182077369,0.99999568596680754595,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3234967532316659,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-2.8582243953276025294,-3.5536141276051629311,0.00000000000000000000,1.00000000000000000000,-0.0011989928626242568,-0.0025040336995305412,0.99999614610824716365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3184128020966454,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,0.82981831286897500543,-3.5318305354128858297,0.00000000000000000000,1.00000000000000000000,-0.0008656655644787478,-0.0025020657581819923,0.99999649513889388163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3145510023477982,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,4.51785885756063887441,-3.5100475670848307885,0.00000000000000000000,1.00000000000000000000,-0.0005323381698200701,-0.0025000975943805644,0.99999673305870928619,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3119113518423546,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PlaneMirror_refl_seeded.rayx.csv b/Intern/RAY-Core/tests/output/PlaneMirror_refl_seeded.rayx.csv deleted file mode 100644 index b0dc0eb43..000000000 --- a/Intern/RAY-Core/tests/output/PlaneMirror_refl_seeded.rayx.csv +++ /dev/null @@ -1,307 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-5.0466620698997646243,-0.0000000000000002789,28.7602367255999062933,3.00000000000000000000,-0.0004999999166666708,0.17315573039890028161,0.98489433089550615374,100.000000000000000000,0.31759754053448807642,0.31759754053448807642,0.00000000000000001228,0.00000000000000000075,10028.3258111870818538,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -1 ,0 ,-4.2702524198358817741,0.00000000000000009323,28.7602356975238713232,3.00000000000000000000,-0.0004230768575709328,0.17315573656392332924,0.98489436585908940458,100.000000000000000000,0.31759752556571668735,0.31759752556571668735,0.00000000000000001228,0.00000000000000000075,10028.3254541393689578,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -2 ,0 ,-3.4938428201962699048,0.00000000000000002199,28.7602348407912487004,3.00000000000000000000,-0.0003461537959717815,0.17315574170144260035,0.98489439499540898381,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,10028.3251565996197314,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -3 ,0 ,-2.7174332618128755889,0.00000000000000005224,28.7602341554067066908,1.00000000000000000000,-0.0002692307323243828,0.17315574581145806720,0.98489441830446500247,100.000000000000000000,0.31759750311255929844,0.31759750311255929844,0.00000000000000001228,0.00000000000000000075,10028.3249185678359935,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -3 ,1 ,-2.9790385330943727204,-5.4800006576683779613,0.00000000000000000000,1.00000000000000000000,-0.0002692307323243828,-0.0004999999791666953,0.99999983875740372507,100.000000000000000000,0.31759750311255929844,0.31759750311255929844,0.00000000000000001228,0.00000000000000000075,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,2 ,-2.9790385330943727204,336.870627145755747733,10941.5668913962690567,0.00000000000000000000,-0.0002692307323243828,0.34155024188663674067,0.93986347933196789927,100.000000000000000000,0.31759750311255929844,0.31759750311255929844,0.00000000000000001228,0.00000000000000000075,11000.0017736688423610,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-1.9410237355176491735,0.00000000000000012628,28.7602336413671295645,1.00000000000000000000,-0.0001923076670839029,0.17315574889396970204,0.98489443578625712749,100.000000000000000000,0.31759749562817440882,0.31759749562817440882,0.00000000000000001228,0.00000000000000000075,10028.3247400440031924,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -4 ,1 ,-2.1278846414618417526,-5.4800005600346919365,0.00000000000000000000,1.00000000000000000000,-0.0001923076670839029,-0.0004999999791665995,0.99999985650888068011,100.000000000000000000,0.31759749562817440882,0.31759749562817440882,0.00000000000000001228,0.00000000000000000075,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,2 ,-2.1278846414618417526,336.870627237501423678,10941.5668913628760492,0.00000000000000000000,-0.0001923076670839029,0.34155024795799948655,0.93986349601289975730,100.000000000000000000,0.31759749562817440882,0.31759749562817440882,0.00000000000000001228,0.00000000000000000075,11000.0015784025381435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-1.1646142321425427823,-0.0000000000000000811,28.7602332986756401567,3.00000000000000000000,-0.0001153846007055078,0.17315575094897742158,0.98489444744078513682,100.000000000000000000,0.31759749063858433437,0.31759749063858433437,0.00000000000000001228,0.00000000000000000075,10028.3246210281158710,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -6 ,0 ,-0.3882047425195060963,-0.0000000000000002605,28.7602331273291156321,3.00000000000000000000,-0.0000384615336443635,0.17315575197648130911,0.98489445326804925251,100.000000000000000000,0.31759748814378885306,0.31759748814378885306,0.00000000000000001228,0.00000000000000000075,10028.3245615201740292,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -7 ,0 ,0.38820474251950609634,-0.0000000000000002605,28.7602331273291156321,3.00000000000000000000,0.00003846153364436359,0.17315575197648130911,0.98489445326804925251,100.000000000000000000,0.31759748814378885306,0.31759748814378885306,0.00000000000000001228,0.00000000000000000075,10028.3245615201740292,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -8 ,0 ,1.16461423214254278235,-0.0000000000000000811,28.7602332986756401567,3.00000000000000000000,0.00011538460070550785,0.17315575094897742158,0.98489444744078513682,100.000000000000000000,0.31759749063858433437,0.31759749063858433437,0.00000000000000001228,0.00000000000000000075,10028.3246210281158710,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -9 ,0 ,1.94102373551765006176,0.00000000000000012628,28.7602336413671295645,3.00000000000000000000,0.00019230766708390299,0.17315574889396970204,0.98489443578625712749,100.000000000000000000,0.31759749562817440882,0.31759749562817440882,0.00000000000000001228,0.00000000000000000075,10028.3247400440031924,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -10 ,0 ,2.71743326181287558895,0.00000000000000005224,28.7602341554067066908,3.00000000000000000000,0.00026923073232438285,0.17315574581145806720,0.98489441830446500247,100.000000000000000000,0.31759750311255929844,0.31759750311255929844,0.00000000000000001228,0.00000000000000000075,10028.3249185678359935,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -11 ,0 ,3.49384282019626990489,0.00000000000000002199,28.7602348407912487004,1.00000000000000000000,0.00034615379597178157,0.17315574170144260035,0.98489439499540898381,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,10028.3251565996197314,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -11 ,1 ,3.83019245977470079722,-5.4800007878450722742,0.00000000000000000000,1.00000000000000000000,0.00034615379597178157,-0.0004999999791666261,0.99999981508876789604,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,11000.0020340239261713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,2 ,3.83019245977470079722,336.870627023429676683,10941.5668914407924603,0.00000000000000000000,0.00034615379597178157,0.34155023379148657936,0.93986345709072538490,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,11000.0020340239261713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,4.27025241983588266236,0.00000000000000009323,28.7602356975238713232,3.00000000000000000000,0.00042307685757093292,0.17315573656392332924,0.98489436585908940458,100.000000000000000000,0.31759752556571668735,0.31759752556571668735,0.00000000000000001228,0.00000000000000000075,10028.3254541393689578,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -13 ,0 ,5.04666206989976462438,-0.0000000000000002789,28.7602367255999062933,3.00000000000000000000,0.00049999991666667084,0.17315573039890028161,0.98489433089550615374,100.000000000000000000,0.31759754053448807642,0.31759754053448807642,0.00000000000000001228,0.00000000000000000075,10028.3258111870818538,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -14 ,0 ,-5.0444781135724197085,0.00000000000000022878,24.3249423472432404480,1.00000000000000000000,-0.0004999999344181487,0.17323149099837553688,0.98488100830838709587,100.000000000000000000,0.31741362901572067745,0.31741362901572067745,0.00000000000000001228,0.00000000000000000075,10023.9575419242228235,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -14 ,1 ,-5.5325004583333790009,-4.6369239363244529883,0.00000000000000000000,1.00000000000000000000,-0.0004999999344181487,-0.0004230769104554765,0.99999978550297352608,100.000000000000000000,0.31741362901572067745,0.31741362901572067745,0.00000000000000001228,0.00000000000000000075,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,2 ,-5.5325004583333790009,337.662860119559013583,10941.2785421752014372,0.00000000000000000000,-0.0004999999344181487,0.34162250771258501069,0.93983712005018715807,100.000000000000000000,0.31741362901572067745,0.31741362901572067745,0.00000000000000001228,0.00000000000000000075,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,-4.2684044568996215573,-0.0000000000000002866,24.3249414780894674947,3.00000000000000000000,-0.0004230768725914143,0.17323149716339880654,0.98488104327197145693,100.000000000000000000,0.31741361405287193964,0.31741361405287193964,0.00000000000000001228,0.00000000000000000075,10023.9571851881064503,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -16 ,0 ,-3.4923308505961161429,-0.0000000000000000776,24.3249407537969943859,3.00000000000000000000,-0.0003461538082612664,0.17323150230091827195,0.98488107240829225741,100.000000000000000000,0.31741360158383091771,0.31741360158383091771,0.00000000000000001228,0.00000000000000000075,10023.9568879080252372,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -17 ,0 ,-2.7162572855038482622,0.00000000000000023353,24.3249401743611421977,3.00000000000000000000,-0.0002692307418828711,0.17323150641093387758,0.98488109571734894220,100.000000000000000000,0.31741359160859838883,0.31741359160859838883,0.00000000000000001228,0.00000000000000000075,10023.9566500839700893,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -18 ,0 ,-1.9401837524647629340,-0.0000000000000001717,24.3249397397850337654,3.00000000000000000000,-0.0001923076739113946,0.17323150949344559568,0.98488111319914173336,100.000000000000000000,0.31741358412717363135,0.31741358412717363135,0.00000000000000001228,0.00000000000000000075,10023.9564717159355495,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -19 ,0 ,-1.1641102423208065097,0.00000000000000030527,24.3249394500671058949,3.00000000000000000000,-0.0001153846048020029,0.17323151154845342625,0.98488112485367018678,100.000000000000000000,0.31741357913955725589,0.31741357913955725589,0.00000000000000001228,0.00000000000000000075,10023.9563528039143420,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -20 ,0 ,-0.3880367459139266173,-0.0000000000000003069,24.3249393052089288858,3.00000000000000000000,-0.0000384615350098619,0.17323151257595734153,0.98488113068093452451,100.000000000000000000,0.31741357664574942898,0.31741357664574942898,0.00000000000000001228,0.00000000000000000075,10023.9562933479064668,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -21 ,0 ,0.38803674591392661730,-0.0000000000000003069,24.3249393052089288858,1.00000000000000000000,0.00003846153500986195,0.17323151257595734153,0.98488113068093452451,100.000000000000000000,0.31741357664574942898,0.31741357664574942898,0.00000000000000001228,0.00000000000000000075,10023.9562933479064668,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -21 ,1 ,0.42557692328554058702,-4.6369233580355766477,0.00000000000000000000,1.00000000000000000000,0.00003846153500986195,-0.0004230769104555338,0.99999990976331476488,100.000000000000000000,0.31741357664574942898,0.31741357664574942898,0.00000000000000001228,0.00000000000000000075,11000.0009926036236720,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,2 ,0.42557692328554058702,337.662860662972775571,10941.2785419774136244,0.00000000000000000000,0.00003846153500986195,0.34162255021212467598,0.93983723681671282879,100.000000000000000000,0.31741357664574942898,0.31741357664574942898,0.00000000000000001228,0.00000000000000000075,11000.0009926036236720,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,0 ,1.16411024232080650975,0.00000000000000030527,24.3249394500671058949,1.00000000000000000000,0.00011538460480200291,0.17323151154845342625,0.98488112485367018678,100.000000000000000000,0.31741357913955725589,0.31741357913955725589,0.00000000000000001228,0.00000000000000000075,10023.9563528039143420,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -22 ,1 ,1.27673077486345043496,-4.6369233855734313110,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,-0.0004230769104554946,0.99999990384615544680,100.000000000000000000,0.31741357913955725589,0.31741357913955725589,0.00000000000000001228,0.00000000000000000075,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,2 ,1.27673077486345043496,337.662860637095661786,10941.2785419868323515,0.00000000000000000000,0.00011538460480200291,0.34162254818833703851,0.93983723125640195039,100.000000000000000000,0.31741357913955725589,0.31741357913955725589,0.00000000000000001228,0.00000000000000000075,11000.0010576923868939,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -23 ,0 ,1.94018375246476337814,-0.0000000000000001717,24.3249397397850337654,3.00000000000000000000,0.00019230767391139474,0.17323150949344559568,0.98488111319914173336,100.000000000000000000,0.31741358412717363135,0.31741358412717363135,0.00000000000000001228,0.00000000000000000075,10023.9564717159355495,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -24 ,0 ,2.71625728550384826220,0.00000000000000023353,24.3249401743611421977,3.00000000000000000000,0.00026923074188287118,0.17323150641093387758,0.98488109571734894220,100.000000000000000000,0.31741359160859838883,0.31741359160859838883,0.00000000000000001228,0.00000000000000000075,10023.9566500839700893,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -25 ,0 ,3.49233085059611614298,-0.0000000000000000776,24.3249407537969943859,1.00000000000000000000,0.00034615380826126648,0.17323150230091827195,0.98488107240829225741,100.000000000000000000,0.31741360158383091771,0.31741360158383091771,0.00000000000000001228,0.00000000000000000075,10023.9568879080252372,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -25 ,1 ,3.83019245977469990904,-4.6369236334113166364,0.00000000000000000000,1.00000000000000000000,0.00034615380826126648,-0.0004230769104555277,0.99999985059172302737,100.000000000000000000,0.31741360158383091771,0.31741360158383091771,0.00000000000000001228,0.00000000000000000075,11000.0016434912886325,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,2 ,3.83019245977469990904,337.662860404204252517,10941.2785420715990767,0.00000000000000000000,0.00034615380826126648,0.34162252997424841227,0.93983718121360471098,100.000000000000000000,0.31741360158383091771,0.31741360158383091771,0.00000000000000001228,0.00000000000000000075,11000.0016434912886325,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,0 ,4.26840445689962244557,-0.0000000000000002866,24.3249414780894674947,3.00000000000000000000,0.00042307687259141442,0.17323149716339880654,0.98488104327197145693,100.000000000000000000,0.31741361405287193964,0.31741361405287193964,0.00000000000000001228,0.00000000000000000075,10023.9571851881064503,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -27 ,0 ,5.04447811357241970853,0.00000000000000022878,24.3249423472432404480,1.00000000000000000000,0.00049999993441814875,0.17323149099837553688,0.98488100830838709587,100.000000000000000000,0.31741362901572067745,0.31741362901572067745,0.00000000000000001228,0.00000000000000000075,10023.9575419242228235,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -27 ,1 ,5.53250045833337900091,-4.6369239363244529883,0.00000000000000000000,1.00000000000000000000,0.00049999993441814875,-0.0004230769104554765,0.99999978550297352608,100.000000000000000000,0.31741362901572067745,0.31741362901572067745,0.00000000000000001228,0.00000000000000000075,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -27 ,2 ,5.53250045833337900091,337.662860119559013583,10941.2785421752014372,0.00000000000000000000,0.00049999993441814875,0.34162250771258501069,0.93983712005018715807,100.000000000000000000,0.31741362901572067745,0.31741362901572067745,0.00000000000000001228,0.00000000000000000075,11000.0023594677950313,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -28 ,0 ,-5.0422960666489791137,-0.0000000000000000696,19.8935256876367638767,3.00000000000000000000,-0.0004999999492110472,0.17330725057281240464,0.98486767989356982511,100.000000000000000000,0.31722979275823964817,0.31722979275823964817,0.00000000000000001228,0.00000000000000000075,10019.5931510672453441,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -29 ,0 ,-4.2665581096126645732,0.00000000000000025183,19.8935249771322730794,3.00000000000000000000,-0.0004230768851084824,0.17330725673783586859,0.98486771485715529639,100.000000000000000000,0.31722977780131100811,0.31722977780131100811,0.00000000000000001228,0.00000000000000000075,10019.5927946423144021,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -30 ,0 ,-3.4908202028907449054,0.00000000000000025756,19.8935243850467529114,1.00000000000000000000,-0.0003461538185025041,0.17330726187535547277,0.98486774399347698505,100.000000000000000000,0.31722976533720426139,0.31722976533720426139,0.00000000000000001228,0.00000000000000000075,10019.5924976215574133,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -30 ,1 ,-3.8301924597747007972,-3.7938465340525349134,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,-0.0003461538392409538,0.99999988017751939572,100.000000000000000000,0.31722976533720426139,0.31722976533720426139,0.00000000000000001228,0.00000000000000000075,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,2 ,-3.8301924597747007972,338.455093733225282903,10940.9901927212413283,0.00000000000000000000,-0.0003461538185025041,0.34169482413557522582,0.93981089977531739876,100.000000000000000000,0.31722976533720426139,0.31722976533720426139,0.00000000000000001228,0.00000000000000000075,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,0 ,-2.7150823373351400391,-0.0000000000000002109,19.8935239113755386597,3.00000000000000000000,-0.0002692307498482782,0.17330726598537121718,0.98486776730253444700,100.000000000000000000,0.31722975536591885292,0.31722975536591885292,0.00000000000000001228,0.00000000000000000075,10019.5922600049598258,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -32 ,0 ,-1.9393445037977838918,-0.0000000000000002785,19.8935235561248511260,3.00000000000000000000,-0.0001923076796009712,0.17330726906788301855,0.98486778478432768224,100.000000000000000000,0.31722974788745472718,0.31722974788745472718,0.00000000000000001228,0.00000000000000000075,10019.5920817925216397,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -33 ,0 ,-1.1636066931306010552,0.00000000000000026134,19.8935233192900184917,3.00000000000000000000,-0.0001153846082157488,0.17330727112289090463,0.98486779643885657975,100.000000000000000000,0.31722974290181205070,0.31722974290181205070,0.00000000000000001228,0.00000000000000000075,10019.5919629842283029,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -34 ,0 ,-0.3878688961855217276,0.00000000000000015545,19.8935232008710478623,3.00000000000000000000,-0.0000384615361477772,0.17330727215039484767,0.98486780226612091748,100.000000000000000000,0.31722974040899099001,0.31722974040899099001,0.00000000000000001228,0.00000000000000000075,10019.5919035800816345,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -35 ,0 ,0.38786889618552172764,0.00000000000000015545,19.8935232008710478623,3.00000000000000000000,0.00003846153614777726,0.17330727215039484767,0.98486780226612091748,100.000000000000000000,0.31722974040899099001,0.31722974040899099001,0.00000000000000001228,0.00000000000000000075,10019.5919035800816345,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -36 ,0 ,1.16360669313060105523,0.00000000000000026134,19.8935233192900184917,1.00000000000000000000,0.00011538460821574884,0.17330727112289090463,0.98486779643885657975,100.000000000000000000,0.31722974290181205070,0.31722974290181205070,0.00000000000000001228,0.00000000000000000075,10019.5919629842283029,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -36 ,1 ,1.27673077486345043496,-3.7938463312756374179,0.00000000000000000000,1.00000000000000000000,0.00011538460821574884,-0.0003461538392409908,0.99999993343195359152,100.000000000000000000,0.31722974290181205070,0.31722974290181205070,0.00000000000000001228,0.00000000000000000075,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,2 ,1.27673077486345043496,338.455093923773233655,10940.9901926518869004,0.00000000000000000000,0.00011538460821574884,0.34169484234966440716,0.93981094981811630351,100.000000000000000000,0.31722974290181205070,0.31722974290181205070,0.00000000000000001228,0.00000000000000000075,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,0 ,1.93934450379778455797,-0.0000000000000002785,19.8935235561248511260,3.00000000000000000000,0.00019230767960097126,0.17330726906788301855,0.98486778478432768224,100.000000000000000000,0.31722974788745472718,0.31722974788745472718,0.00000000000000001228,0.00000000000000000075,10019.5920817925216397,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -38 ,0 ,2.71508233733514003915,-0.0000000000000002109,19.8935239113755386597,3.00000000000000000000,0.00026923074984827827,0.17330726598537121718,0.98486776730253444700,100.000000000000000000,0.31722975536591885292,0.31722975536591885292,0.00000000000000001228,0.00000000000000000075,10019.5922600049598258,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -39 ,0 ,3.49082020289074490548,0.00000000000000025756,19.8935243850467529114,3.00000000000000000000,0.00034615381850250414,0.17330726187535547277,0.98486774399347698505,100.000000000000000000,0.31722976533720426139,0.31722976533720426139,0.00000000000000001228,0.00000000000000000075,10019.5924976215574133,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -40 ,0 ,4.26655810961266546144,0.00000000000000025183,19.8935249771322730794,3.00000000000000000000,0.00042307688510848247,0.17330725673783586859,0.98486771485715529639,100.000000000000000000,0.31722977780131100811,0.31722977780131100811,0.00000000000000001228,0.00000000000000000075,10019.5927946423144021,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -41 ,0 ,5.04229606664897911372,-0.0000000000000000696,19.8935256876367638767,1.00000000000000000000,0.00049999994921104721,0.17330725057281240464,0.98486767989356982511,100.000000000000000000,0.31722979275823964817,0.31722979275823964817,0.00000000000000001228,0.00000000000000000075,10019.5931510672453441,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -41 ,1 ,5.53250045833337988909,-3.7938467818900769579,0.00000000000000000000,1.00000000000000000000,0.00049999994921104721,-0.0003461538392409787,0.99999981508876789604,100.000000000000000000,0.31722979275823964817,0.31722979275823964817,0.00000000000000001228,0.00000000000000000075,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,2 ,5.53250045833337988909,338.455093500334157852,10940.9901928060062346,0.00000000000000000000,0.00049999994921104721,0.34169480187391110259,0.93981083861189795847,100.000000000000000000,0.31722979275823964817,0.31722979275823964817,0.00000000000000001228,0.00000000000000000075,11000.0020340239279903,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -42 ,0 ,-5.0401159266005981507,-0.0000000000000000548,15.4659816110713581593,3.00000000000000000000,-0.0004999999610453660,0.17338300912176257684,0.98485434565113316729,100.000000000000000000,0.31704603174006029675,0.31704603174006029675,0.00000000000000001227,0.00000000000000000075,10015.2326334806384693,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -43 ,0 ,-4.2647133758352211430,-0.0000000000000000101,15.4659810589374906442,1.00000000000000000000,-0.0004230768951221369,0.17338301528678617957,0.98485438061471941573,100.000000000000000000,0.31704601678905031114,0.31704601678905031114,0.00000000000000001227,0.00000000000000000075,10015.2322773664855048,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -43 ,1 ,-4.6813464315164825535,-2.9507695673736504815,0.00000000000000000000,1.00000000000000000000,-0.0004230768951221369,-0.0002692307659781733,0.99999987426035952253,100.000000000000000000,0.31704601678905031114,0.31704601678905031114,0.00000000000000001227,0.00000000000000000075,11000.0013831362175551,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -43 ,2 ,-4.6813464315164825535,339.247326937568004723,10940.7018434162637277,0.00000000000000000000,-0.0004230768951221369,0.34176710615610056409,0.93978458497446359931,100.000000000000000000,0.31704601678905031114,0.31704601678905031114,0.00000000000000001227,0.00000000000000000075,11000.0013831362175551,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,0 ,-3.4893108753294130863,-0.0000000000000000849,15.4659805988277465615,3.00000000000000000000,-0.0003461538266954942,0.17338302042430592253,0.98485440975104188154,100.000000000000000000,0.31704600432987584124,0.31704600432987584124,0.00000000000000001227,0.00000000000000000075,10015.2319806047071324,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -45 ,0 ,-2.7139084159450681532,0.00000000000000007048,15.4659802307405751520,1.00000000000000000000,-0.0002692307562206040,0.17338302453432172245,0.98485443306009978758,100.000000000000000000,0.31704599436253699806,0.31704599436253699806,0.00000000000000001227,0.00000000000000000075,10015.2317431952978949,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -45 ,1 ,-2.9790385330943736086,-2.9507694096591481347,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,-0.0002692307659781985,0.99999992751479449548,100.000000000000000000,0.31704599436253699806,0.31704599436253699806,0.00000000000000001227,0.00000000000000000075,11000.0007973373194545,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,2 ,-2.9790385330943736086,339.247327085771132715,10940.7018433623215969,0.00000000000000000000,-0.0002692307562206040,0.34176712437019002299,0.93978463501726317019,100.000000000000000000,0.31704599436253699806,0.31704599436253699806,0.00000000000000001227,0.00000000000000000075,11000.0007973373194545,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,0 ,-1.9385059885440798499,-0.0000000000000000711,15.4659799546728642383,1.00000000000000000000,-0.0001923076841526324,0.17338302761683363484,0.98485445054189346691,100.000000000000000000,0.31704598688703256037,0.31704598688703256037,0.00000000000000001227,0.00000000000000000075,10015.2315651382432406,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -46 ,1 ,-2.1278846414618421967,-2.9507693570873283483,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,-0.0002692307659781904,0.99999994526627300484,100.000000000000000000,0.31704598688703256037,0.31704598688703256037,0.00000000000000001227,0.00000000000000000075,11000.0006020710297889,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,2 ,-2.1278846414618421967,339.247327135172497492,10940.7018433443408866,0.00000000000000000000,-0.0001923076841526324,0.34176713044155326848,0.93978465169819647151,100.000000000000000000,0.31704598688703256037,0.31704598688703256037,0.00000000000000001227,0.00000000000000000075,11000.0006020710297889,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -47 ,0 ,-1.1631035839883465676,0.00000000000000006109,15.4659797706277206685,1.00000000000000000000,-0.0001153846109467456,0.17338302967184154868,0.98485446219642247545,100.000000000000000000,0.31704598190336297225,0.31704598190336297225,0.00000000000000001227,0.00000000000000000075,10015.2314464335413504,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -47 ,1 ,-1.2767307748634504349,-2.9507693220393078625,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,-0.0002692307659781956,0.99999995710059186304,100.000000000000000000,0.31704598190336297225,0.31704598190336297225,0.00000000000000001227,0.00000000000000000075,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -47 ,2 ,-1.2767307748634504349,339.247327168106892258,10940.7018433323537465,0.00000000000000000000,-0.0001153846109467456,0.34176713448912870996,0.93978466281881856136,100.000000000000000000,0.31704598190336297225,0.31704598190336297225,0.00000000000000001227,0.00000000000000000075,11000.0004718935051641,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -48 ,0 ,-0.3877011931397649213,0.00000000000000010266,15.4659796786051515482,3.00000000000000000000,-0.0000384615370581095,0.17338303069934551947,0.98485446802368703522,100.000000000000000000,0.31704597941152795614,0.31704597941152795614,0.00000000000000001227,0.00000000000000000075,10015.2313870811922242,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -49 ,0 ,0.38770119313976492136,0.00000000000000010266,15.4659796786051515482,3.00000000000000000000,0.00003846153705810951,0.17338303069934551947,0.98485446802368703522,100.000000000000000000,0.31704597941152795614,0.31704597941152795614,0.00000000000000001227,0.00000000000000000075,10015.2313870811922242,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -50 ,0 ,1.16310358398834656767,0.00000000000000006109,15.4659797706277206685,3.00000000000000000000,0.00011538461094674560,0.17338302967184154868,0.98485446219642247545,100.000000000000000000,0.31704598190336297225,0.31704598190336297225,0.00000000000000001227,0.00000000000000000075,10015.2314464335413504,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -51 ,0 ,1.93850598854408051607,-0.0000000000000000711,15.4659799546728642383,1.00000000000000000000,0.00019230768415263250,0.17338302761683363484,0.98485445054189346691,100.000000000000000000,0.31704598688703256037,0.31704598688703256037,0.00000000000000001227,0.00000000000000000075,10015.2315651382432406,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -51 ,1 ,2.12788464146184308489,-2.9507693570873283483,0.00000000000000000000,1.00000000000000000000,0.00019230768415263250,-0.0002692307659781904,0.99999994526627300484,100.000000000000000000,0.31704598688703256037,0.31704598688703256037,0.00000000000000001227,0.00000000000000000075,11000.0006020710297889,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -51 ,2 ,2.12788464146184308489,339.247327135172497492,10940.7018433443408866,0.00000000000000000000,0.00019230768415263250,0.34176713044155326848,0.93978465169819647151,100.000000000000000000,0.31704598688703256037,0.31704598688703256037,0.00000000000000001227,0.00000000000000000075,11000.0006020710297889,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,0 ,2.71390841594506815326,0.00000000000000007048,15.4659802307405751520,3.00000000000000000000,0.00026923075622060400,0.17338302453432172245,0.98485443306009978758,100.000000000000000000,0.31704599436253699806,0.31704599436253699806,0.00000000000000001227,0.00000000000000000075,10015.2317431952978949,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -53 ,0 ,3.48931087532941308637,-0.0000000000000000849,15.4659805988277465615,3.00000000000000000000,0.00034615382669549426,0.17338302042430592253,0.98485440975104188154,100.000000000000000000,0.31704600432987584124,0.31704600432987584124,0.00000000000000001227,0.00000000000000000075,10015.2319806047071324,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -54 ,0 ,4.26471337583522203118,-0.0000000000000000101,15.4659810589374906442,3.00000000000000000000,0.00042307689512213698,0.17338301528678617957,0.98485438061471941573,100.000000000000000000,0.31704601678905031114,0.31704601678905031114,0.00000000000000001227,0.00000000000000000075,10015.2322773664855048,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -55 ,0 ,5.04011592660059815074,-0.0000000000000000548,15.4659816110713581593,3.00000000000000000000,0.00049999996104536600,0.17338300912176257684,0.98485434565113316729,100.000000000000000000,0.31704603174006029675,0.31704603174006029675,0.00000000000000001227,0.00000000000000000075,10015.2326334806384693,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -56 ,0 ,-5.0379376909028907860,-0.0000000000000000256,11.0423049908897503712,3.00000000000000000000,-0.0004999999699211052,0.17345876664477780093,0.98484100558115605927,100.000000000000000000,0.31686234593921491775,0.31686234593921491775,0.00000000000000001227,0.00000000000000000075,10010.8759840379516390,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -57 ,0 ,-4.2628702534312727934,0.00000000000000004585,11.0423045968546045259,3.00000000000000000000,-0.0004230769026323778,0.17345877280980148693,0.98484104054474297385,100.000000000000000000,0.31686233099412275393,0.31686233099412275393,0.00000000000000001227,0.00000000000000000075,10010.8756282341691985,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -58 ,0 ,-3.4878028661644737695,-0.0000000000000001336,11.0423042684883583319,3.00000000000000000000,-0.0003461538328402369,0.17345877794732134091,0.98484106968106577273,100.000000000000000000,0.31686231853987983919,0.31686231853987983919,0.00000000000000001227,0.00000000000000000075,10010.8753317310292914,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -59 ,0 ,-2.7127355199743448110,0.00000000000000004105,11.0423040057972254857,3.00000000000000000000,-0.0002692307609998483,0.17345878205733722410,0.98484109299012412286,100.000000000000000000,0.31686230857648528536,0.31686230857648528536,0.00000000000000001227,0.00000000000000000075,10010.8750945285282796,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -60 ,0 ,-1.9376682057327347941,0.00000000000000001745,11.0423038087796516748,3.00000000000000000000,-0.0001923076875663784,0.17345878513984916424,0.98484111047191813526,100.000000000000000000,0.31686230110393998060,0.31686230110393998060,0.00000000000000001227,0.00000000000000000075,10010.8749166266607062,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -61 ,0 ,-1.1626009143114934829,-0.0000000000000000497,11.0423036774340861398,3.00000000000000000000,-0.0001153846129949931,0.17345878719485713359,0.98484112212644747685,100.000000000000000000,0.31686229612224270368,0.31686229612224270368,0.00000000000000001227,0.00000000000000000075,10010.8747980254174763,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -62 ,0 ,-0.3875336365824729178,0.00000000000000002001,11.0423036117605253281,1.00000000000000000000,-0.0000384615377408587,0.17345878822236113214,0.98484112795371214765,100.000000000000000000,0.31686229363139395420,0.31686229363139395420,0.00000000000000001227,0.00000000000000000075,10010.8747387247967708,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -62 ,1 ,-0.4255769232855404760,-2.1076923353347614131,0.00000000000000000000,1.00000000000000000000,-0.0000384615377408587,-0.0001923076911223118,0.99999998076923068968,100.000000000000000000,0.31686229363139395420,0.31686229363139395420,0.00000000000000001227,0.00000000000000000075,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,2 ,-0.4255769232855404760,340.039560391267571048,10940.4134940205258317,0.00000000000000000000,-0.0000384615377408587,0.34183942663009014850,0.93975837581897658790,100.000000000000000000,0.31686229363139395420,0.31686229363139395420,0.00000000000000001227,0.00000000000000000075,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -63 ,0 ,0.38753363658247291789,0.00000000000000002001,11.0423036117605253281,3.00000000000000000000,0.00003846153774085871,0.17345878822236113214,0.98484112795371214765,100.000000000000000000,0.31686229363139395420,0.31686229363139395420,0.00000000000000001227,0.00000000000000000075,10010.8747387247967708,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -64 ,0 ,1.16260091431149348295,-0.0000000000000000497,11.0423036774340861398,3.00000000000000000000,0.00011538461299499319,0.17345878719485713359,0.98484112212644747685,100.000000000000000000,0.31686229612224270368,0.31686229612224270368,0.00000000000000001227,0.00000000000000000075,10010.8747980254174763,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -65 ,0 ,1.93766820573273523820,0.00000000000000001745,11.0423038087796516748,3.00000000000000000000,0.00019230768756637849,0.17345878513984916424,0.98484111047191813526,100.000000000000000000,0.31686230110393998060,0.31686230110393998060,0.00000000000000001227,0.00000000000000000075,10010.8749166266607062,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -66 ,0 ,2.71273551997434481108,0.00000000000000004105,11.0423040057972254857,1.00000000000000000000,0.00026923076099984833,0.17345878205733722410,0.98484109299012412286,100.000000000000000000,0.31686230857648528536,0.31686230857648528536,0.00000000000000001227,0.00000000000000000075,10010.8750945285282796,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -66 ,1 ,2.97903853309437272045,-2.1076924104369907375,0.00000000000000000000,1.00000000000000000000,0.00026923076099984833,-0.0001923076911223604,0.99999994526627289381,100.000000000000000000,0.31686230857648528536,0.31686230857648528536,0.00000000000000001227,0.00000000000000000075,11000.0006020710261509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -66 ,2 ,2.97903853309437272045,340.039560320694533857,10940.4134940462136000,0.00000000000000000000,0.00026923076099984833,0.34183941448736343549,0.93975834245710909709,100.000000000000000000,0.31686230857648528536,0.31686230857648528536,0.00000000000000001227,0.00000000000000000075,11000.0006020710261509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,0 ,3.48780286616447376957,-0.0000000000000001336,11.0423042684883583319,1.00000000000000000000,0.00034615383284023691,0.17345877794732134091,0.98484106968106577273,100.000000000000000000,0.31686231853987983919,0.31686231853987983919,0.00000000000000001227,0.00000000000000000075,10010.8753317310292914,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -67 ,1 ,3.83019245977469990904,-2.1076924605050613159,0.00000000000000000000,1.00000000000000000000,0.00034615383284023691,-0.0001923076911223090,0.99999992159763473331,100.000000000000000000,0.31686231853987983919,0.31686231853987983919,0.00000000000000001227,0.00000000000000000075,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,2 ,3.83019245977469990904,340.039560273645918186,10940.4134940633375663,0.00000000000000000000,0.00034615383284023691,0.34183940639221244151,0.93975832021586447329,100.000000000000000000,0.31686231853987983919,0.31686231853987983919,0.00000000000000001227,0.00000000000000000075,11000.0008624260826763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -68 ,0 ,4.26287025343127279342,0.00000000000000004585,11.0423045968546045259,3.00000000000000000000,0.00042307690263237795,0.17345877280980148693,0.98484104054474297385,100.000000000000000000,0.31686233099412275393,0.31686233099412275393,0.00000000000000001227,0.00000000000000000075,10010.8756282341691985,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -69 ,0 ,5.03793769090289078604,-0.0000000000000000256,11.0423049908897503712,1.00000000000000000000,0.00049999996992110523,0.17345876664477780093,0.98484100558115605927,100.000000000000000000,0.31686234593921491775,0.31686234593921491775,0.00000000000000001227,0.00000000000000000075,10010.8759840379516390,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -69 ,1 ,5.53250045833337811274,-2.1076925981930991760,0.00000000000000000000,1.00000000000000000000,0.00049999996992110523,-0.0001923076911223311,0.99999985650888056909,100.000000000000000000,0.31686234593921491775,0.31686234593921491775,0.00000000000000001227,0.00000000000000000075,11000.0015784025363245,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -69 ,2 ,5.53250045833337811274,340.039560144261486129,10940.4134941104293829,0.00000000000000000000,0.00049999996992110523,0.34183938413054737459,0.93975825905244247948,100.000000000000000000,0.31686234593921491775,0.31686234593921491775,0.00000000000000001227,0.00000000000000000075,11000.0015784025363245,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -70 ,0 ,-5.0357613570359269772,0.00000000000000004895,6.62249070947900797534,3.00000000000000000000,-0.0004999999758382646,0.17353452314140974110,0.98482765968371721587,100.000000000000000000,0.31667873533375634487,0.31667873533375634487,0.00000000000000001227,0.00000000000000000075,10006.5231976217819465,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -71 ,0 ,-4.2610287402685678159,-0.0000000000000000416,6.62249047326345507968,3.00000000000000000000,-0.0004230769076392051,0.17353452930643353813,0.98482769464730457453,100.000000000000000000,0.31667872039458017097,0.31667872039458017097,0.00000000000000001227,0.00000000000000000075,10006.5228421279589383,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -72 ,0 ,-3.4862961736513580213,0.00000000000000000918,6.62249027641664245180,1.00000000000000000000,-0.0003461538369367320,0.17353453444395344762,0.98482772378362781751,100.000000000000000000,0.31667870794526720157,0.31667870794526720157,0.00000000000000001227,0.00000000000000000075,10006.5225458831209834,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -72 ,1 ,-3.8301924597747003531,-1.2646154662892301612,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,-0.0001153846151285300,0.99999993343195348050,100.000000000000000000,0.31667870794526720157,0.31667870794526720157,0.00000000000000001227,0.00000000000000000075,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -72 ,2 ,-3.8301924597747003531,340.831793503864901140,10940.1251447489412385,0.00000000000000000000,-0.0003461538369367320,0.34191169448666736130,0.93973202209501005555,100.000000000000000000,0.31667870794526720157,0.31667870794526720157,0.00000000000000001227,0.00000000000000000075,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -73 ,0 ,-2.7115636480660860740,-0.0000000000000000469,6.62249011893857275623,3.00000000000000000000,-0.0002692307641860112,0.17353453855396935856,0.98482774709268638968,100.000000000000000000,0.31667869798581704809,0.31667869798581704809,0.00000000000000001227,0.00000000000000000075,10006.5223088872589869,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -74 ,0 ,-1.9368311543945435637,-0.0000000000000000117,6.62249000083079586431,3.00000000000000000000,-0.0001923076898422090,0.17353454163648135422,0.98482776457448062412,100.000000000000000000,0.31667869051622876686,0.31667869051622876686,0.00000000000000001227,0.00000000000000000075,10006.5221311403693107,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -75 ,0 ,-1.1620986835185191932,0.00000000000000000635,6.62248992209176012835,3.00000000000000000000,-0.0001153846143604915,0.17353454369148932356,0.98482777622900996572,100.000000000000000000,0.31667868553650391216,0.31667868553650391216,0.00000000000000001227,0.00000000000000000075,10006.5220126424483169,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -76 ,0 ,-0.3873662263198048294,0.00000000000000002398,6.62248988272301897239,3.00000000000000000000,-0.0000384615381960248,0.17353454471899334987,0.98482778205627485856,100.000000000000000000,0.31667868304664070766,0.31667868304664070766,0.00000000000000001227,0.00000000000000000075,10006.5219533934850915,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -77 ,0 ,0.38736622631980482944,0.00000000000000002398,6.62248988272301897239,3.00000000000000000000,0.00003846153819602484,0.17353454471899334987,0.98482778205627485856,100.000000000000000000,0.31667868304664070766,0.31667868304664070766,0.00000000000000001227,0.00000000000000000075,10006.5219533934850915,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -78 ,0 ,1.16209868351851919321,0.00000000000000000635,6.62248992209176012835,3.00000000000000000000,0.00011538461436049158,0.17353454369148932356,0.98482777622900996572,100.000000000000000000,0.31667868553650391216,0.31667868553650391216,0.00000000000000001227,0.00000000000000000075,10006.5220126424483169,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -79 ,0 ,1.93683115439454422990,-0.0000000000000000117,6.62249000083079586431,3.00000000000000000000,0.00019230768984220914,0.17353454163648135422,0.98482776457448062412,100.000000000000000000,0.31667869051622876686,0.31667869051622876686,0.00000000000000001227,0.00000000000000000075,10006.5221311403693107,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -80 ,0 ,2.71156364806608607409,-0.0000000000000000469,6.62249011893857275623,3.00000000000000000000,0.00026923076418601120,0.17353453855396935856,0.98482774709268638968,100.000000000000000000,0.31667869798581704809,0.31667869798581704809,0.00000000000000001227,0.00000000000000000075,10006.5223088872589869,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -81 ,0 ,3.48629617365135802131,0.00000000000000000918,6.62249027641664245180,1.00000000000000000000,0.00034615383693673202,0.17353453444395344762,0.98482772378362781751,100.000000000000000000,0.31667870794526720157,0.31667870794526720157,0.00000000000000001227,0.00000000000000000075,10006.5225458831209834,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -81 ,1 ,3.83019245977470035313,-1.2646154662892301612,0.00000000000000000000,1.00000000000000000000,0.00034615383693673202,-0.0001153846151285300,0.99999993343195348050,100.000000000000000000,0.31667870794526720157,0.31667870794526720157,0.00000000000000001227,0.00000000000000000075,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -81 ,2 ,3.83019245977470035313,340.831793503864901140,10940.1251447489412385,0.00000000000000000000,0.00034615383693673202,0.34191169448666736130,0.93973202209501005555,100.000000000000000000,0.31667870794526720157,0.31667870794526720157,0.00000000000000001227,0.00000000000000000075,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -82 ,0 ,4.26102874026856870415,-0.0000000000000000416,6.62249047326345507968,3.00000000000000000000,0.00042307690763920520,0.17353452930643353813,0.98482769464730457453,100.000000000000000000,0.31667872039458017097,0.31667872039458017097,0.00000000000000001227,0.00000000000000000075,10006.5228421279589383,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -83 ,0 ,5.03576135703592697723,0.00000000000000004895,6.62249070947900797534,1.00000000000000000000,0.00049999997583826468,0.17353452314140974110,0.98482765968371721587,100.000000000000000000,0.31667873533375634487,0.31667873533375634487,0.00000000000000001227,0.00000000000000000075,10006.5231976217819465,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -83 ,1 ,5.53250045833337988909,-1.2646155489019756945,0.00000000000000000000,1.00000000000000000000,0.00049999997583826468,-0.0001153846151285639,0.99999986834319853912,100.000000000000000000,0.31667873533375634487,0.31667873533375634487,0.00000000000000001227,0.00000000000000000075,11000.0014482250044238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -83 ,2 ,5.53250045833337988909,340.831793426234355592,10940.1251447771956009,0.00000000000000000000,0.00049999997583826468,0.34191167222500201683,0.93973196093158739561,100.000000000000000000,0.31667873533375634487,0.31667873533375634487,0.00000000000000001227,0.00000000000000000075,11000.0014482250044238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -84 ,0 ,-5.0335869224842193503,-0.0000000000000000170,2.20653365826042557884,3.00000000000000000000,-0.0004999999787968444,0.17361027861121022808,0.98481430795889590701,100.000000000000000000,0.31649519990175550843,0.31649519990175550843,0.00000000000000001226,0.00000000000000000075,10002.1742691237504914,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -85 ,0 ,-4.2591888342186186022,0.00000000000000001595,2.20653357959053630921,3.00000000000000000000,-0.0004230769101426188,0.17361028477623405286,0.98481434292248348771,100.000000000000000000,0.31649518496849315951,0.31649518496849315951,0.00000000000000001226,0.00000000000000000075,10002.1739139394794619,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -86 ,0 ,-3.4847907960485753342,-0.0000000000000000089,2.20653351403177833134,3.00000000000000000000,-0.0003461538389849795,0.17361028991375396235,0.98481437205880673069,100.000000000000000000,0.31649517252410874768,0.31649517252410874768,0.00000000000000001226,0.00000000000000000075,10002.1736179526014893,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -87 ,0 ,-2.7103927988658007564,0.00000000000000001925,2.20653346158415164524,3.00000000000000000000,-0.0002692307657790926,0.17361029402376992880,0.98481439536786552491,100.000000000000000000,0.31649516256860099616,0.31649516256860099616,0.00000000000000001226,0.00000000000000000075,10002.1733811631074786,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -88 ,0 ,-1.9359948335620118520,0.00000000000000000826,2.20653342224920701042,3.00000000000000000000,-0.0001923076909801243,0.17361029710628195221,0.98481441284965987037,100.000000000000000000,0.31649515510197001599,0.31649515510197001599,0.00000000000000001226,0.00000000000000000075,10002.1732035709956107,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -89 ,0 ,-1.1615968910289267146,-0.0000000000000000091,2.20653339602694487098,3.00000000000000000000,-0.0001153846150432407,0.17361029916128994932,0.98481442450418943401,100.000000000000000000,0.31649515012421619575,0.31649515012421619575,0.00000000000000001226,0.00000000000000000075,10002.1730851762586098,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -90 ,0 ,-0.3871989621582617169,-0.0000000000000000065,2.20653338291581357921,1.00000000000000000000,-0.0000384615384236079,0.17361030018879394787,0.98481443033145421583,100.000000000000000000,0.31649514763533925787,0.31649514763533925787,0.00000000000000001226,0.00000000000000000075,10002.1730259788891999,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -90 ,1 ,-0.4255769232855404760,-0.4215384620606222876,0.00000000000000000000,1.00000000000000000000,-0.0000384615384236079,-0.0000384615384520350,0.99999999852070975414,100.000000000000000000,0.31649514763533925787,0.31649514763533925787,0.00000000000000001226,0.00000000000000000075,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -90 ,2 ,-0.4255769232855404760,341.624026743492834157,10939.8367954311197536,0.00000000000000000000,-0.0000384615384236079,0.34198400079585417055,0.93970577401672406026,100.000000000000000000,0.31649514763533925787,0.31649514763533925787,0.00000000000000001226,0.00000000000000000075,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,0 ,0.38719896215826171692,-0.0000000000000000065,2.20653338291581357921,1.00000000000000000000,0.00003846153842360791,0.17361030018879394787,0.98481443033145421583,100.000000000000000000,0.31649514763533925787,0.31649514763533925787,0.00000000000000001226,0.00000000000000000075,10002.1730259788891999,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -91 ,1 ,0.42557692328554047600,-0.4215384620606222876,0.00000000000000000000,1.00000000000000000000,0.00003846153842360791,-0.0000384615384520350,0.99999999852070975414,100.000000000000000000,0.31649514763533925787,0.31649514763533925787,0.00000000000000001226,0.00000000000000000075,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,2 ,0.42557692328554047600,341.624026743492834157,10939.8367954311197536,0.00000000000000000000,0.00003846153842360791,0.34198400079585417055,0.93970577401672406026,100.000000000000000000,0.31649514763533925787,0.31649514763533925787,0.00000000000000001226,0.00000000000000000075,11000.0000162721880769,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -92 ,0 ,1.16159689102892671463,-0.0000000000000000091,2.20653339602694487098,3.00000000000000000000,0.00011538461504324078,0.17361029916128994932,0.98481442450418943401,100.000000000000000000,0.31649515012421619575,0.31649515012421619575,0.00000000000000001226,0.00000000000000000075,10002.1730851762586098,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -93 ,0 ,1.93599483356201274020,0.00000000000000000826,2.20653342224920701042,3.00000000000000000000,0.00019230769098012445,0.17361029710628195221,0.98481441284965987037,100.000000000000000000,0.31649515510197001599,0.31649515510197001599,0.00000000000000001226,0.00000000000000000075,10002.1732035709956107,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -94 ,0 ,2.71039279886580075640,0.00000000000000001925,2.20653346158415164524,3.00000000000000000000,0.00026923076577909266,0.17361029402376992880,0.98481439536786552491,100.000000000000000000,0.31649516256860099616,0.31649516256860099616,0.00000000000000001226,0.00000000000000000075,10002.1733811631074786,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -95 ,0 ,3.48479079604857533425,-0.0000000000000000089,2.20653351403177833134,1.00000000000000000000,0.00034615383898497955,0.17361028991375396235,0.98481437205880673069,100.000000000000000000,0.31649517252410874768,0.31649517252410874768,0.00000000000000001226,0.00000000000000000075,10002.1736179526014893,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -95 ,1 ,3.83019245977470035313,-0.4215384870944208772,0.00000000000000000000,1.00000000000000000000,0.00034615383898497955,-0.0000384615384520790,0.99999993934911279858,100.000000000000000000,0.31649517252410874768,0.31649517252410874768,0.00000000000000001226,0.00000000000000000075,11000.0006671597984677,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -95 ,2 ,3.83019245977470035313,341.624026719968753695,10939.8367954396817367,0.00000000000000000000,0.00034615383898497955,0.34198398055797601946,0.93970571841361105747,100.000000000000000000,0.31649517252410874768,0.31649517252410874768,0.00000000000000001226,0.00000000000000000075,11000.0006671597984677,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -96 ,0 ,4.25918883421861949045,0.00000000000000001595,2.20653357959053630921,3.00000000000000000000,0.00042307691014261891,0.17361028477623405286,0.98481434292248348771,100.000000000000000000,0.31649518496849315951,0.31649518496849315951,0.00000000000000001226,0.00000000000000000075,10002.1739139394794619,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -97 ,0 ,5.03358692248421935033,-0.0000000000000000170,2.20653365826042557884,1.00000000000000000000,0.00049999997879684445,0.17361027861121022808,0.98481430795889590701,100.000000000000000000,0.31649519990175550843,0.31649519990175550843,0.00000000000000001226,0.00000000000000000075,10002.1742691237504914,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -97 ,1 ,5.53250045833337988909,-0.4215385146316079079,0.00000000000000000000,1.00000000000000000000,0.00049999997879684445,-0.0000384615384519990,0.99999987426035752413,100.000000000000000000,0.31649519990175550843,0.31649519990175550843,0.00000000000000001226,0.00000000000000000075,11000.0013831362375640,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -97 ,2 ,5.53250045833337988909,341.624026694092265188,10939.8367954491004638,0.00000000000000000000,0.00049999997879684445,0.34198395829631067499,0.93970565725018806446,100.000000000000000000,0.31649519990175550843,0.31649519990175550843,0.00000000000000001226,0.00000000000000000075,11000.0013831362375640,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -98 ,0 ,-5.0314143847367134299,0.00000000000000003273,-2.2055712623531373850,3.00000000000000000000,-0.0004999999787968444,0.17368603305373095380,0.98480095040677095852,100.000000000000000000,0.31631173962130021415,0.31631173962130021415,0.00000000000000001226,0.00000000000000000075,9997.82919344447873299,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -99 ,0 ,-4.2573505331566883214,0.00000000000000003848,-2.2055711837523039875,3.00000000000000000000,-0.0004230769101426188,0.17368603921875477857,0.98480098537035853922,100.000000000000000000,0.31631172469395063551,0.31631172469395063551,0.00000000000000001226,0.00000000000000000075,9997.82883856935040967,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -100 ,0 ,-3.4832867316177034133,-0.0000000000000000126,-2.2055711182508339618,3.00000000000000000000,-0.0003461538389849795,0.17368604435627468807,0.98480101450668178220,100.000000000000000000,0.31631171225449339345,0.31631171225449339345,0.00000000000000001226,0.00000000000000000075,9997.82854284009408729,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -101 ,0 ,-2.7092229710213806548,0.00000000000000001751,-2.2055710658502785115,3.00000000000000000000,-0.0002692307657790926,0.17368604846629065452,0.98480103781574057641,100.000000000000000000,0.31631170230292671163,0.31631170230292671163,0.00000000000000001226,0.00000000000000000075,9997.82830625670067092,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -102 ,0 ,-1.9351592422693506545,0.00000000000000001344,-2.2055710265490868771,1.00000000000000000000,-0.0001923076909801243,0.17368605154880267793,0.98480105529753492188,100.000000000000000000,0.31631169483925247742,0.31631169483925247742,0.00000000000000001226,0.00000000000000000075,9997.82812881915924663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -102 ,1 ,-2.1278846414618421967,0.42153846957002866213,0.00000000000000000000,1.00000000000000000000,-0.0001923076909801243,0.00003846153845209435,0.99999998076923057865,100.000000000000000000,0.31631169483925247742,0.31631169483925247742,0.00000000000000001226,0.00000000000000000075,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -102 ,2 ,-2.1278846414618421967,342.416259914900990679,10939.5484461381292931,0.00000000000000000000,-0.0001923076909801243,0.34205627877222566368,0.93967944809400227867,100.000000000000000000,0.31631169483925247742,0.31631169483925247742,0.00000000000000001226,0.00000000000000000075,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -103 ,0 ,-1.1610955362632422449,-0.0000000000000000021,-2.2055710003472595026,3.00000000000000000000,-0.0001153846150432407,0.17368605360381067503,0.98480106695206448552,100.000000000000000000,0.31631168986346969163,0.31631168986346969163,0.00000000000000001226,0.00000000000000000075,9997.82801052746981440,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -104 ,0 ,-0.3870318439046855907,0.00000000000000000942,-2.2055709872478952426,3.00000000000000000000,-0.0000384615384236079,0.17368605463131467359,0.98480107277932926734,100.000000000000000000,0.31631168737557818770,0.31631168737557818770,0.00000000000000001226,0.00000000000000000075,9997.82795138162691728,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -105 ,0 ,0.38703184390468559072,0.00000000000000000942,-2.2055709872478952426,3.00000000000000000000,0.00003846153842360791,0.17368605463131467359,0.98480107277932926734,100.000000000000000000,0.31631168737557818770,0.31631168737557818770,0.00000000000000001226,0.00000000000000000075,9997.82795138162691728,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -106 ,0 ,1.16109553626324224495,-0.0000000000000000021,-2.2055710003472595026,3.00000000000000000000,0.00011538461504324078,0.17368605360381067503,0.98480106695206448552,100.000000000000000000,0.31631168986346969163,0.31631168986346969163,0.00000000000000001226,0.00000000000000000075,9997.82801052746981440,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -107 ,0 ,1.93515924226935109864,0.00000000000000001344,-2.2055710265490868771,3.00000000000000000000,0.00019230769098012445,0.17368605154880267793,0.98480105529753492188,100.000000000000000000,0.31631169483925247742,0.31631169483925247742,0.00000000000000001226,0.00000000000000000075,9997.82812881915924663,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -108 ,0 ,2.70922297102138065483,0.00000000000000001751,-2.2055710658502785115,3.00000000000000000000,0.00026923076577909266,0.17368604846629065452,0.98480103781574057641,100.000000000000000000,0.31631170230292671163,0.31631170230292671163,0.00000000000000001226,0.00000000000000000075,9997.82830625670067092,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -109 ,0 ,3.48328673161770341337,-0.0000000000000000126,-2.2055711182508339618,3.00000000000000000000,0.00034615383898497955,0.17368604435627468807,0.98480101450668178220,100.000000000000000000,0.31631171225449339345,0.31631171225449339345,0.00000000000000001226,0.00000000000000000075,9997.82854284009408729,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -110 ,0 ,4.25735053315668920959,0.00000000000000003848,-2.2055711837523039875,3.00000000000000000000,0.00042307691014261891,0.17368603921875477857,0.98480098537035853922,100.000000000000000000,0.31631172469395063551,0.31631172469395063551,0.00000000000000001226,0.00000000000000000075,9997.82883856935040967,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -111 ,0 ,5.03141438473671342990,0.00000000000000003273,-2.2055712623531373850,3.00000000000000000000,0.00049999997879684445,0.17368603305373095380,0.98480095040677095852,100.000000000000000000,0.31631173962130021415,0.31631173962130021415,0.00000000000000001226,0.00000000000000000075,9997.82919344447873299,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -112 ,0 ,-5.0292437412867769808,-0.0000000000000000205,-6.6138291429579307845,3.00000000000000000000,-0.0004999999758382646,0.17376178646852366571,0.98478758702742141828,100.000000000000000000,0.31612835447049858483,0.31612835447049858483,0.00000000000000001225,0.00000000000000000075,9993.48796549357393814,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -113 ,0 ,-4.2555138349617838144,-0.0000000000000000139,-6.6138289073561322695,3.00000000000000000000,-0.0004230769076392051,0.17376179263354743498,0.98478762199100877694,100.000000000000000000,0.31612833954905950051,0.31612833954905950051,0.00000000000000001225,0.00000000000000000075,9993.48761092718814325,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -114 ,0 ,-3.4817839786233841792,0.00000000000000003194,-6.6138287110249134315,1.00000000000000000000,-0.0003461538369367320,0.17376179777106737223,0.98478765112733201991,100.000000000000000000,0.31612832711452781841,0.31612832711452781841,0.00000000000000001225,0.00000000000000000075,9993.48731545521513908,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -114 ,1 ,-3.8301924597747003531,1.26461546628890908472,0.00000000000000000000,1.00000000000000000000,-0.0003461538369367320,0.00011538461512862007,0.99999993343195348050,100.000000000000000000,0.31612832711452781841,0.31612832711452781841,0.00000000000000001225,0.00000000000000000075,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -114 ,2 ,-3.8301924597747003531,343.208493147472040618,10939.2600968228762212,0.00000000000000000000,-0.0003461538369367320,0.34212854662944441885,0.93965309436980237745,100.000000000000000000,0.31612832711452781841,0.31612832711452781841,0.00000000000000001225,0.00000000000000000075,11000.0007322485598706,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -115 ,0 ,-2.7080541631831032134,-0.0000000000000000734,-6.6138285539580783378,3.00000000000000000000,-0.0002692307641860112,0.17376180188108328317,0.98478767443639059209,100.000000000000000000,0.31612831716690292793,0.31612831716690292793,0.00000000000000001225,0.00000000000000000075,9993.48707907764583069,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -116 ,0 ,-1.9343243795524711625,-0.0000000000000000549,-6.6138284361571804126,3.00000000000000000000,-0.0001923076898422090,0.17376180496359527882,0.98478769191818482653,100.000000000000000000,0.31612830970618344128,0.31612830970618344128,0.00000000000000001225,0.00000000000000000075,9993.48690179447658010,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -117 ,0 ,-1.1605946186430131650,-0.0000000000000000285,-6.6138283576237633099,3.00000000000000000000,-0.0001153846143604915,0.17376180701860324817,0.98478770357271427915,100.000000000000000000,0.31612830473237080175,0.31612830473237080175,0.00000000000000001225,0.00000000000000000075,9993.48678360569829237,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -118 ,0 ,-0.3868648713662590221,0.00000000000000003122,-6.6138283183578296942,1.00000000000000000000,-0.0000384615381960248,0.17376180804610727448,0.98478770939997906097,100.000000000000000000,0.31612830224546445423,0.31612830224546445423,0.00000000000000001225,0.00000000000000000075,9993.48672451131096750,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -118 ,1 ,-0.4255769232855404760,1.26461539118613663923,0.00000000000000000000,1.00000000000000000000,-0.0000384615381960248,0.00011538461512861142,0.99999999260354999197,100.000000000000000000,0.31612830224546445423,0.31612830224546445423,0.00000000000000001225,0.00000000000000000075,11000.0000813609458418,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -118 ,2 ,-0.4255769232855404760,343.208493076898548679,10939.2600968485639896,0.00000000000000000000,-0.0000384615381960248,0.34212856686732234789,0.93965314997291493614,100.000000000000000000,0.31612830224546445423,0.31612830224546445423,0.00000000000000001225,0.00000000000000000075,11000.0000813609458418,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -119 ,0 ,0.38686487136625902216,0.00000000000000003122,-6.6138283183578296942,1.00000000000000000000,0.00003846153819602484,0.17376180804610727448,0.98478770939997906097,100.000000000000000000,0.31612830224546445423,0.31612830224546445423,0.00000000000000001225,0.00000000000000000075,9993.48672451131096750,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -119 ,1 ,0.42557692328554047600,1.26461539118613663923,0.00000000000000000000,1.00000000000000000000,0.00003846153819602484,0.00011538461512861142,0.99999999260354999197,100.000000000000000000,0.31612830224546445423,0.31612830224546445423,0.00000000000000001225,0.00000000000000000075,11000.0000813609458418,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -119 ,2 ,0.42557692328554047600,343.208493076898548679,10939.2600968485639896,0.00000000000000000000,0.00003846153819602484,0.34212856686732234789,0.93965314997291493614,100.000000000000000000,0.31612830224546445423,0.31612830224546445423,0.00000000000000001225,0.00000000000000000075,11000.0000813609458418,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -120 ,0 ,1.16059461864301316502,-0.0000000000000000285,-6.6138283576237633099,1.00000000000000000000,0.00011538461436049158,0.17376180701860324817,0.98478770357271427915,100.000000000000000000,0.31612830473237080175,0.31612830473237080175,0.00000000000000001225,0.00000000000000000075,9993.48678360569829237,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -120 ,1 ,1.27673077486345021291,1.26461539869671768521,0.00000000000000000000,1.00000000000000000000,0.00011538461436049158,0.00011538461512859796,0.99999998668639034082,100.000000000000000000,0.31612830473237080175,0.31612830473237080175,0.00000000000000001225,0.00000000000000000075,11000.0001464497036067,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -120 ,2 ,1.27673077486345021291,343.208493083956170721,10939.2600968459937575,0.00000000000000000000,0.00011538461436049158,0.34212856484353454389,0.93965314441260372468,100.000000000000000000,0.31612830473237080175,0.31612830473237080175,0.00000000000000001225,0.00000000000000000075,11000.0001464497036067,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -121 ,0 ,1.93432437955247182870,-0.0000000000000000549,-6.6138284361571804126,3.00000000000000000000,0.00019230768984220914,0.17376180496359527882,0.98478769191818482653,100.000000000000000000,0.31612830970618344128,0.31612830970618344128,0.00000000000000001225,0.00000000000000000075,9993.48690179447658010,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -122 ,0 ,2.70805416318310321344,-0.0000000000000000734,-6.6138285539580783378,3.00000000000000000000,0.00026923076418601120,0.17376180188108328317,0.98478767443639059209,100.000000000000000000,0.31612831716690292793,0.31612831716690292793,0.00000000000000001225,0.00000000000000000075,9993.48707907764583069,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -123 ,0 ,3.48178397862338417922,0.00000000000000003194,-6.6138287110249134315,3.00000000000000000000,0.00034615383693673202,0.17376179777106737223,0.98478765112733201991,100.000000000000000000,0.31612832711452781841,0.31612832711452781841,0.00000000000000001225,0.00000000000000000075,9993.48731545521513908,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -124 ,0 ,4.25551383496178470267,-0.0000000000000000139,-6.6138289073561322695,3.00000000000000000000,0.00042307690763920520,0.17376179263354743498,0.98478762199100877694,100.000000000000000000,0.31612833954905950051,0.31612833954905950051,0.00000000000000001225,0.00000000000000000075,9993.48761092718814325,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -125 ,0 ,5.02924374128677698081,-0.0000000000000000205,-6.6138291429579307845,3.00000000000000000000,0.00049999997583826468,0.17376178646852366571,0.98478758702742141828,100.000000000000000000,0.31612835447049858483,0.31612835447049858483,0.00000000000000001225,0.00000000000000000075,9993.48796549357393814,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -126 ,0 ,-5.0270749896321964556,-0.0000000000000000624,-11.018245065188398967,3.00000000000000000000,-0.0004999999699211052,0.17383753885514013903,0.98477421782092655622,100.000000000000000000,0.31594504442747528560,0.31594504442747528560,0.00000000000000001225,0.00000000000000000074,9989.15058018961099151,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -127 ,0 ,-4.2536787375166422719,0.00000000000000013321,-11.018244672862604005,3.00000000000000000000,-0.0004230769026323778,0.17383754502016385279,0.98477425278451347079,100.000000000000000000,0.31594502951194597395,0.31594502951194597395,0.00000000000000001225,0.00000000000000000074,9989.15022593155845243,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -128 ,0 ,-3.4802825353333135538,-0.0000000000000001316,-11.018244345925470639,1.00000000000000000000,-0.0003461538328402369,0.17383755015768370677,0.98477428192083638069,100.000000000000000000,0.31594501708233835302,0.31594501708233835302,0.00000000000000001225,0.00000000000000000074,9989.14993071652861544,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -128 ,1 ,-3.8301924597746999090,2.10769246050431613426,0.00000000000000000000,1.00000000000000000000,-0.0003461538328402369,0.00019230769112235114,0.99999992159763484433,100.000000000000000000,0.31594501708233835302,0.31594501708233835302,0.00000000000000001225,0.00000000000000000074,11000.0008624260808574,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -128 ,2 ,-3.8301924597746999090,344.000726377690625668,10938.9717475084798934,0.00000000000000000000,-0.0003461538328402369,0.34220082662874851120,0.93962677400770400204,100.000000000000000000,0.31594501708233835302,0.31594501708233835302,0.00000000000000001225,0.00000000000000000074,11000.0008624260808574,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -129 ,0 ,-2.7068863740036230858,-0.0000000000000001000,-11.018244084375455216,3.00000000000000000000,-0.0002692307609998483,0.17383755426769958996,0.98477430522989473082,100.000000000000000000,0.31594500713865264485,0.31594500713865264485,0.00000000000000001225,0.00000000000000000074,9989.14969454451784258,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -130 ,0 ,-1.9334902444489825423,0.00000000000000000400,-11.018243888212557735,3.00000000000000000000,-0.0001923076875663784,0.17383755735021153010,0.98477432271168874322,100.000000000000000000,0.31594499968088851638,0.31594499968088851638,0.00000000000000001225,0.00000000000000000074,9989.14951741551340091,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -131 ,0 ,-1.1600941375908047081,-0.0000000000000000443,-11.018243757438323626,3.00000000000000000000,-0.0001153846129949931,0.17383755940521949945,0.98477433436621797380,100.000000000000000000,0.31594499470904524596,0.31594499470904524596,0.00000000000000001225,0.00000000000000000074,9989.14939932951347145,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -132 ,0 ,-0.3866980443505038111,-0.0000000000000001141,-11.018243692051205684,3.00000000000000000000,-0.0000384615377408587,0.17383756043272349800,0.98477434019348264460,100.000000000000000000,0.31594499222312388830,0.31594499222312388830,0.00000000000000001225,0.00000000000000000074,9989.14934028651441622,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -133 ,0 ,0.38669804435050381119,-0.0000000000000001141,-11.018243692051205684,1.00000000000000000000,0.00003846153774085871,0.17383756043272349800,0.98477434019348264460,100.000000000000000000,0.31594499222312388830,0.31594499222312388830,0.00000000000000001225,0.00000000000000000074,9989.14934028651441622,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -133 ,1 ,0.42557692328554058702,2.10769233533384259260,0.00000000000000000000,1.00000000000000000000,0.00003846153774085871,0.00019230769112238627,0.99999998076923068968,100.000000000000000000,0.31594499222312388830,0.31594499222312388830,0.00000000000000001225,0.00000000000000000074,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -133 ,2 ,0.42557692328554058702,344.000726260068859119,10938.9717475512916280,0.00000000000000000000,0.00003846153774085871,0.34220084686662627371,0.93962682961081600563,100.000000000000000000,0.31594499222312388830,0.31594499222312388830,0.00000000000000001225,0.00000000000000000074,11000.0002115384631906,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -134 ,0 ,1.16009413759080470818,-0.0000000000000000443,-11.018243757438323626,3.00000000000000000000,0.00011538461299499319,0.17383755940521949945,0.98477433436621797380,100.000000000000000000,0.31594499470904524596,0.31594499470904524596,0.00000000000000001225,0.00000000000000000074,9989.14939932951347145,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -135 ,0 ,1.93349024444898298646,0.00000000000000000400,-11.018243888212557735,3.00000000000000000000,0.00019230768756637849,0.17383755735021153010,0.98477432271168874322,100.000000000000000000,0.31594499968088851638,0.31594499968088851638,0.00000000000000001225,0.00000000000000000074,9989.14951741551340091,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -136 ,0 ,2.70688637400362308582,-0.0000000000000001000,-11.018244084375455216,3.00000000000000000000,0.00026923076099984833,0.17383755426769958996,0.98477430522989473082,100.000000000000000000,0.31594500713865264485,0.31594500713865264485,0.00000000000000001225,0.00000000000000000074,9989.14969454451784258,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -137 ,0 ,3.48028253533331355384,-0.0000000000000001316,-11.018244345925470639,3.00000000000000000000,0.00034615383284023691,0.17383755015768370677,0.98477428192083638069,100.000000000000000000,0.31594501708233835302,0.31594501708233835302,0.00000000000000001225,0.00000000000000000074,9989.14993071652861544,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -138 ,0 ,4.25367873751664227199,0.00000000000000013321,-11.018244672862604005,1.00000000000000000000,0.00042307690263237795,0.17383754502016385279,0.98477425278451347079,100.000000000000000000,0.31594502951194597395,0.31594502951194597395,0.00000000000000001225,0.00000000000000000074,9989.15022593155845243,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -138 ,1 ,4.68134643151648255354,2.10769252308962773412,0.00000000000000000000,1.00000000000000000000,0.00042307690263237795,0.00019230769112240665,0.99999989201183714371,100.000000000000000000,0.31594502951194597395,0.31594502951194597395,0.00000000000000001225,0.00000000000000000074,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -138 ,2 ,4.68134643151648255354,344.000726436501622629,10938.9717474870758451,0.00000000000000000000,0.00042307690263237795,0.34220081650980982423,0.93962674620614827780,100.000000000000000000,0.31594502951194597395,0.31594502951194597395,0.00000000000000001225,0.00000000000000000074,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -139 ,0 ,5.02707498963219645560,-0.0000000000000000624,-11.018245065188398967,3.00000000000000000000,0.00049999996992110523,0.17383753885514013903,0.98477421782092655622,100.000000000000000000,0.31594504442747528560,0.31594504442747528560,0.00000000000000001225,0.00000000000000000074,9989.15058018961099151,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -140 ,0 ,-5.0249081272751592308,-0.0000000000000000076,-15.418824101730155717,1.00000000000000000000,-0.0004999999610453660,0.17391329021313212122,0.98476084278736519816,100.000000000000000000,0.31576180947037507662,0.31576180947037507662,0.00000000000000001225,0.00000000000000000074,9984.81703246010511065,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -140 ,1 ,-5.5325004583333790009,2.95076967251726118846,0.00000000000000000000,1.00000000000000000000,-0.0004999999610453660,0.00026923076597822981,0.99999983875740361405,100.000000000000000000,0.31576180947037507662,0.31576180947037507662,0.00000000000000001225,0.00000000000000000074,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -140 ,2 ,-5.5325004583333790009,344.792959812571950806,10938.6833981195941305,0.00000000000000000000,-0.0004999999610453660,0.34227308234153103194,0.93960038692226277579,100.000000000000000000,0.31576180947037507662,0.31576180947037507662,0.00000000000000001225,0.00000000000000000074,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -141 ,0 ,-4.2518452387077312337,-0.0000000000000000467,-15.418823552952146016,3.00000000000000000000,-0.0004230768951221369,0.17391329637815572395,0.98476087775095144660,100.000000000000000000,0.31576179456075326168,0.31576179456075326168,0.00000000000000001225,0.00000000000000000074,9984.81667850998019275,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -142 ,0 ,-3.4787824000182392403,-0.0000000000000001363,-15.418823095637138820,1.00000000000000000000,-0.0003461538266954942,0.17391330151567546691,0.98476090688727380140,100.000000000000000000,0.31576178213606942435,0.31576178213606942435,0.00000000000000001225,0.00000000000000000074,9984.81638355156246689,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -142 ,1 ,-3.8301924597747003531,2.95076947975392611667,0.00000000000000000000,1.00000000000000000000,-0.0003461538266954942,0.00026923076597829860,0.99999990384615666805,100.000000000000000000,0.31576178213606942435,0.31576178213606942435,0.00000000000000001225,0.00000000000000000074,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -142 ,2 ,-3.8301924597747003531,344.792959631433689082,10938.6833981855215824,0.00000000000000000000,-0.0003461538266954942,0.34227310460319571028,0.93960044808568365937,100.000000000000000000,0.31576178213606942435,0.31576178213606942435,0.00000000000000001225,0.00000000000000000074,11000.0010576923759799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -143 ,0 ,-2.7057196021379636974,0.00000000000000003289,-15.418822729785135905,1.00000000000000000000,-0.0002692307562206040,0.17391330562569129458,0.98476093019633181846,100.000000000000000000,0.31576177219632134418,0.31576177219632134418,0.00000000000000001225,0.00000000000000000074,9984.81614758483556215,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -143 ,1 ,-2.9790385330943731645,2.95076940965867295929,0.00000000000000000000,1.00000000000000000000,-0.0002692307562206040,0.00026923076597825008,0.99999992751479449548,100.000000000000000000,0.31576177219632134418,0.31576177219632134418,0.00000000000000001225,0.00000000000000000074,11000.0007973373176355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -143 ,2 ,-2.9790385330943731645,344.792959565565695356,10938.6833982094958628,0.00000000000000000000,-0.0002692307562206040,0.34227311269834659324,0.93960047032692806112,100.000000000000000000,0.31576177219632134418,0.31576177219632134418,0.00000000000000001225,0.00000000000000000074,11000.0007973373176355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -144 ,0 ,-1.9326568359981890488,-0.0000000000000000397,-15.418822455396131942,1.00000000000000000000,-0.0001923076841526324,0.17391330870820317922,0.98476094767812549779,100.000000000000000000,0.31576176474151129713,0.31576176474151129713,0.00000000000000001225,0.00000000000000000074,9984.81597060979584057,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -144 ,1 ,-2.1278846414618421967,2.95076935708699483740,0.00000000000000000000,1.00000000000000000000,-0.0001923076841526324,0.00026923076597820276,0.99999994526627300484,100.000000000000000000,0.31576176474151129713,0.31576176474151129713,0.00000000000000001225,0.00000000000000000074,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -144 ,2 ,-2.1278846414618421967,344.792959516164444266,10938.6833982274765730,0.00000000000000000000,-0.0001923076841526324,0.34227311876970978321,0.93960048700786136244,100.000000000000000000,0.31576176474151129713,0.31576176474151129713,0.00000000000000001225,0.00000000000000000074,11000.0006020710279699,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -145 ,0 ,-1.1595940925301999602,-0.0000000000000000431,-15.418822272470128709,1.00000000000000000000,-0.0001153846109467456,0.17391331076321109305,0.98476095933265450632,100.000000000000000000,0.31576175977163767338,0.31576175977163767338,0.00000000000000001225,0.00000000000000000074,9984.81585262644148315,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -145 ,1 ,-1.2767307748634504349,2.95076932203944375388,0.00000000000000000000,1.00000000000000000000,-0.0001153846109467456,0.00026923076597825301,0.99999995710059186304,100.000000000000000000,0.31576175977163767338,0.31576175977163767338,0.00000000000000001225,0.00000000000000000074,11000.0004718935069831,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -145 ,2 ,-1.2767307748634504349,344.792959483230561090,10938.6833982394637132,0.00000000000000000000,-0.0001153846109467456,0.34227312281728522469,0.93960049812848345229,100.000000000000000000,0.31576175977163767338,0.31576175977163767338,0.00000000000000001225,0.00000000000000000074,11000.0004718935069831,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -146 ,0 ,-0.3865313626652807088,-0.0000000000000001096,-15.418822181007127980,3.00000000000000000000,-0.0000384615370581095,0.17391331179071506385,0.98476096515991906610,100.000000000000000000,0.31576175728670080600,0.31576175728670080600,0.00000000000000001225,0.00000000000000000074,9984.81579363476339494,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -147 ,0 ,0.38653136266528070885,-0.0000000000000001096,-15.418822181007127980,1.00000000000000000000,0.00003846153705810951,0.17391331179071506385,0.98476096515991906610,100.000000000000000000,0.31576175728670080600,0.31576175728670080600,0.00000000000000001225,0.00000000000000000074,9984.81579363476339494,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -147 ,1 ,0.42557692328554053151,2.95076930451499475083,0.00000000000000000000,1.00000000000000000000,0.00003846153705810951,0.00026923076597828689,0.99999996301775140317,100.000000000000000000,0.31576175728670080600,0.31576175728670080600,0.00000000000000001225,0.00000000000000000074,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -147 ,2 ,0.42557692328554053151,344.792959466762965803,10938.6833982454572833,0.00000000000000000000,0.00003846153705810951,0.34227312484107302870,0.93960050368879466375,100.000000000000000000,0.31576175728670080600,0.31576175728670080600,0.00000000000000001225,0.00000000000000000074,11000.0004068047455803,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -148 ,0 ,1.15959409253019996022,-0.0000000000000000431,-15.418822272470128709,3.00000000000000000000,0.00011538461094674560,0.17391331076321109305,0.98476095933265450632,100.000000000000000000,0.31576175977163767338,0.31576175977163767338,0.00000000000000001225,0.00000000000000000074,9984.81585262644148315,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -149 ,0 ,1.93265683599818971494,-0.0000000000000000397,-15.418822455396131942,3.00000000000000000000,0.00019230768415263250,0.17391330870820317922,0.98476094767812549779,100.000000000000000000,0.31576176474151129713,0.31576176474151129713,0.00000000000000001225,0.00000000000000000074,9984.81597060979584057,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -150 ,0 ,2.70571960213796369743,0.00000000000000003289,-15.418822729785135905,1.00000000000000000000,0.00026923075622060400,0.17391330562569129458,0.98476093019633181846,100.000000000000000000,0.31576177219632134418,0.31576177219632134418,0.00000000000000001225,0.00000000000000000074,9984.81614758483556215,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -150 ,1 ,2.97903853309437316454,2.95076940965867295929,0.00000000000000000000,1.00000000000000000000,0.00026923075622060400,0.00026923076597825008,0.99999992751479449548,100.000000000000000000,0.31576177219632134418,0.31576177219632134418,0.00000000000000001225,0.00000000000000000074,11000.0007973373176355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -150 ,2 ,2.97903853309437316454,344.792959565565695356,10938.6833982094958628,0.00000000000000000000,0.00026923075622060400,0.34227311269834659324,0.93960047032692806112,100.000000000000000000,0.31576177219632134418,0.31576177219632134418,0.00000000000000001225,0.00000000000000000074,11000.0007973373176355,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -151 ,0 ,3.47878240001823924032,-0.0000000000000001363,-15.418823095637138820,3.00000000000000000000,0.00034615382669549426,0.17391330151567546691,0.98476090688727380140,100.000000000000000000,0.31576178213606942435,0.31576178213606942435,0.00000000000000001225,0.00000000000000000074,9984.81638355156246689,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -152 ,0 ,4.25184523870773212195,-0.0000000000000000467,-15.418823552952146016,3.00000000000000000000,0.00042307689512213698,0.17391329637815572395,0.98476087775095144660,100.000000000000000000,0.31576179456075326168,0.31576179456075326168,0.00000000000000001225,0.00000000000000000074,9984.81667850998019275,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -153 ,0 ,5.02490812727515923086,-0.0000000000000000076,-15.418824101730155717,1.00000000000000000000,0.00049999996104536600,0.17391329021313212122,0.98476084278736519816,100.000000000000000000,0.31576180947037507662,0.31576180947037507662,0.00000000000000001225,0.00000000000000000074,9984.81703246010511065,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -153 ,1 ,5.53250045833337900091,2.95076967251726118846,0.00000000000000000000,1.00000000000000000000,0.00049999996104536600,0.00026923076597822981,0.99999983875740361405,100.000000000000000000,0.31576180947037507662,0.31576180947037507662,0.00000000000000001225,0.00000000000000000074,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -153 ,2 ,5.53250045833337900091,344.792959812571950806,10938.6833981195941305,0.00000000000000000000,0.00049999996104536600,0.34227308234153103194,0.93960038692226277579,100.000000000000000000,0.31576180947037507662,0.31576180947037507662,0.00000000000000001225,0.00000000000000000074,11000.0017736688441800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -154 ,0 ,-5.0227431517222500545,-0.0000000000000001285,-19.815571316346940022,3.00000000000000000000,-0.0004999999492110472,0.17398904054205135971,0.98474746192681661405,100.000000000000000000,0.31557864957736009303,0.31557864957736009303,0.00000000000000001224,0.00000000000000000074,9980.48731724149911315,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -155 ,0 ,-4.2500133364252388190,0.00000000000000003078,-19.815570611389521360,3.00000000000000000000,-0.0004230768851084824,0.17398904670707482367,0.98474749689040208533,100.000000000000000000,0.31557863467364505316,0.31557863467364505316,0.00000000000000001224,0.00000000000000000074,9980.48696359889981977,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -156 ,0 ,-3.4772835709519474001,-0.0000000000000000411,-19.815570023924230724,1.00000000000000000000,-0.0003461538185025041,0.17398905184459445560,0.98474752602672377399,100.000000000000000000,0.31557862225388211285,0.31557862225388211285,0.00000000000000001224,0.00000000000000000074,9980.48666889675041602,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -156 ,1 ,-3.8301924597746999090,3.79384653405155880534,0.00000000000000000000,1.00000000000000000000,-0.0003461538185025041,0.00034615383924104181,0.99999988017751950675,100.000000000000000000,0.31557862225388211285,0.31557862225388211285,0.00000000000000001224,0.00000000000000000074,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -156 ,2 ,-3.8301924597746999090,345.585192918111090421,10938.3950488505761313,0.00000000000000000000,-0.0003461538185025041,0.34234538055235824716,0.93957411660389766883,100.000000000000000000,0.31557862225388211285,0.31557862225388211285,0.00000000000000001224,0.00000000000000000074,11000.0013180474416003,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -157 ,0 ,-2.7045538462435154691,-0.0000000000000001242,-19.815569553952617098,1.00000000000000000000,-0.0002692307498482782,0.17398905595461020001,0.98474754933578123594,100.000000000000000000,0.31557861231807193824,0.31557861231807193824,0.00000000000000001224,0.00000000000000000074,9980.48643313504180696,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -157 ,1 ,-2.9790385330943727204,3.79384644392903425114,0.00000000000000000000,1.00000000000000000000,-0.0002692307498482782,0.00034615383924101661,0.99999990384615666805,100.000000000000000000,0.31557861231807193824,0.31557861231807193824,0.00000000000000001224,0.00000000000000000074,11000.0010576923777989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -157 ,2 ,-2.9790385330943727204,345.585192833423604952,10938.3950488814007258,0.00000000000000000000,-0.0002692307498482782,0.34234538864750885256,0.93957413884514129343,100.000000000000000000,0.31557861231807193824,0.31557861231807193824,0.00000000000000001224,0.00000000000000000074,11000.0010576923777989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -158 ,0 ,-1.9318241532410842520,0.00000000000000017566,-19.815569201473135052,3.00000000000000000000,-0.0001923076796009712,0.17398905903712200138,0.98474756681757447118,100.000000000000000000,0.31557860486621469586,0.31557860486621469586,0.00000000000000001224,0.00000000000000000074,9980.48625631376489764,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -159 ,0 ,-1.1590944828857943083,-0.0000000000000001738,-19.815568966487326463,1.00000000000000000000,-0.0001153846082157488,0.17398906109212988746,0.98474757847210325767,100.000000000000000000,0.31557859989830988611,0.31557859989830988611,0.00000000000000001224,0.00000000000000000074,9980.48613843291786906,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -159 ,1 ,-1.2767307748634502129,3.79384633127559656173,0.00000000000000000000,1.00000000000000000000,-0.0001153846082157488,0.00034615383924104284,0.99999993343195348050,100.000000000000000000,0.31557859989830988611,0.31557859989830988611,0.00000000000000001224,0.00000000000000000074,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -159 ,2 ,-1.2767307748634502129,345.585192727563992320,10938.3950489199305593,0.00000000000000000000,-0.0001153846082157488,0.34234539876644737299,0.93957416664669624051,100.000000000000000000,0.31557859989830988611,0.31557859989830988611,0.00000000000000001224,0.00000000000000000074,11000.0007322485580516,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -160 ,0 ,-0.3863648261187884180,0.00000000000000003597,-19.815568848993653006,3.00000000000000000000,-0.0000384615361477772,0.17398906211963383050,0.98474758429936770642,100.000000000000000000,0.31557859741435700939,0.31557859741435700939,0.00000000000000001224,0.00000000000000000074,9980.48607949249526427,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -161 ,0 ,0.38636482611878841808,0.00000000000000003597,-19.815568848993653006,3.00000000000000000000,0.00003846153614777726,0.17398906211963383050,0.98474758429936770642,100.000000000000000000,0.31557859741435700939,0.31557859741435700939,0.00000000000000001224,0.00000000000000000074,9980.48607949249526427,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -162 ,0 ,1.15909448288579430830,-0.0000000000000001738,-19.815568966487326463,3.00000000000000000000,0.00011538460821574884,0.17398906109212988746,0.98474757847210325767,100.000000000000000000,0.31557859989830988611,0.31557859989830988611,0.00000000000000001224,0.00000000000000000074,9980.48613843291786906,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -163 ,0 ,1.93182415324108469611,0.00000000000000017566,-19.815569201473135052,3.00000000000000000000,0.00019230767960097126,0.17398905903712200138,0.98474756681757447118,100.000000000000000000,0.31557860486621469586,0.31557860486621469586,0.00000000000000001224,0.00000000000000000074,9980.48625631376489764,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -164 ,0 ,2.70455384624351546918,-0.0000000000000001242,-19.815569553952617098,1.00000000000000000000,0.00026923074984827827,0.17398905595461020001,0.98474754933578123594,100.000000000000000000,0.31557861231807193824,0.31557861231807193824,0.00000000000000001224,0.00000000000000000074,9980.48643313504180696,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -164 ,1 ,2.97903853309437272045,3.79384644392903425114,0.00000000000000000000,1.00000000000000000000,0.00026923074984827827,0.00034615383924101661,0.99999990384615666805,100.000000000000000000,0.31557861231807193824,0.31557861231807193824,0.00000000000000001224,0.00000000000000000074,11000.0010576923777989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -164 ,2 ,2.97903853309437272045,345.585192833423604952,10938.3950488814007258,0.00000000000000000000,0.00026923074984827827,0.34234538864750885256,0.93957413884514129343,100.000000000000000000,0.31557861231807193824,0.31557861231807193824,0.00000000000000001224,0.00000000000000000074,11000.0010576923777989,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -165 ,0 ,3.47728357095194740011,-0.0000000000000000411,-19.815570023924230724,3.00000000000000000000,0.00034615381850250414,0.17398905184459445560,0.98474752602672377399,100.000000000000000000,0.31557862225388211285,0.31557862225388211285,0.00000000000000001224,0.00000000000000000074,9980.48666889675041602,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -166 ,0 ,4.25001333642523881906,0.00000000000000003078,-19.815570611389521360,3.00000000000000000000,0.00042307688510848247,0.17398904670707482367,0.98474749689040208533,100.000000000000000000,0.31557863467364505316,0.31557863467364505316,0.00000000000000001224,0.00000000000000000074,9980.48696359889981977,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -167 ,0 ,5.02274315172225005454,-0.0000000000000001285,-19.815571316346940022,3.00000000000000000000,0.00049999994921104721,0.17398904054205135971,0.98474746192681661405,100.000000000000000000,0.31557864957736009303,0.31557864957736009303,0.00000000000000001224,0.00000000000000000074,9980.48731724149911315,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -168 ,0 ,-5.0205800604844332823,0.00000000000000027742,-24.208491763904323335,3.00000000000000000000,-0.0004999999344181487,0.17406478984144968524,0.98473407523935996277,100.000000000000000000,0.31539556472661134378,0.31539556472661134378,0.00000000000000001224,0.00000000000000000074,9976.16142947913613170,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -169 ,0 ,-4.2481830285630577392,-0.0000000000000000111,-24.208490903036668839,1.00000000000000000000,-0.0004230768725914143,0.17406479600647295491,0.98473411020294443485,100.000000000000000000,0.31539554982880046996,0.31539554982880046996,0.00000000000000001224,0.00000000000000000074,9976.16107614365864719,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -169 ,1 ,-4.6813464315164816653,4.63692377109870079721,0.00000000000000000000,1.00000000000000000000,-0.0004230768725914143,0.00042307691045559263,0.99999982100592765821,100.000000000000000000,0.31539554982880046996,0.31539554982880046996,0.00000000000000001224,0.00000000000000000074,11000.0019689351447595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -169 ,2 ,-4.6813464315164816653,346.377426376516837080,10938.1066994531265663,0.00000000000000000000,-0.0004230768725914143,0.34241764435687038758,0.93954775176094762478,100.000000000000000000,0.31539554982880046996,0.31539554982880046996,0.00000000000000001224,0.00000000000000000074,11000.0019689351447595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -170 ,0 ,-3.4757860464112644294,0.00000000000000016487,-24.208490185646699188,3.00000000000000000000,-0.0003461538082612664,0.17406480114399242031,0.98473413933926512431,100.000000000000000000,0.31539553741395764951,0.31539553741395764951,0.00000000000000001224,0.00000000000000000074,9976.16078169744469050,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -171 ,0 ,-2.7033891049800318207,0.00000000000000019433,-24.208489611735959812,1.00000000000000000000,-0.0002692307418828711,0.17406480525400802594,0.98473416264832192013,100.000000000000000000,0.31539552748208415922,0.31539552748208415922,0.00000000000000001224,0.00000000000000000074,9976.16054614048516668,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -171 ,1 ,-2.9790385330943722763,4.63692352326095935666,0.00000000000000000000,1.00000000000000000000,-0.0002692307418828711,0.00042307691045557306,0.99999987426035963355,100.000000000000000000,0.31539552748208415922,0.31539552748208415922,0.00000000000000001224,0.00000000000000000074,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -171 ,2 ,-2.9790385330943722763,346.377426143625541499,10938.1066995378932915,0.00000000000000000000,-0.0002692307418828711,0.34241766257095884729,0.93954780180374430909,100.000000000000000000,0.31539552748208415922,0.31539552748208415922,0.00000000000000001224,0.00000000000000000074,11000.0013831362157361,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -172 ,0 ,-1.9309921952203488171,-0.0000000000000001684,-24.208489181299817971,3.00000000000000000000,-0.0001923076739113946,0.17406480833651974404,0.98473418013011471128,100.000000000000000000,0.31539552003317888884,0.31539552003317888884,0.00000000000000001224,0.00000000000000000074,9976.16036947277279978,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -173 ,0 ,-1.1585953080831967731,-0.0000000000000001448,-24.208488894344448283,3.00000000000000000000,-0.0001153846048020029,0.17406481039152754686,0.98473419178464305367,100.000000000000000000,0.31539551506724267104,0.31539551506724267104,0.00000000000000001224,0.00000000000000000074,9976.16025169429849484,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -174 ,0 ,-0.3861984345195630385,0.00000000000000031220,-24.208488750866763439,3.00000000000000000000,-0.0000384615350098619,0.17406481141903148990,0.98473419761190750243,100.000000000000000000,0.31539551258427384050,0.31539551258427384050,0.00000000000000001224,0.00000000000000000074,9976.16019280506225186,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -175 ,0 ,0.38619843451956303859,0.00000000000000031220,-24.208488750866763439,3.00000000000000000000,0.00003846153500986195,0.17406481141903148990,0.98473419761190750243,100.000000000000000000,0.31539551258427384050,0.31539551258427384050,0.00000000000000001224,0.00000000000000000074,9976.16019280506225186,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -176 ,0 ,1.15859530808319677319,-0.0000000000000001448,-24.208488894344448283,1.00000000000000000000,0.00011538460480200291,0.17406481039152754686,0.98473419178464305367,100.000000000000000000,0.31539551506724267104,0.31539551506724267104,0.00000000000000001224,0.00000000000000000074,9976.16025169429849484,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -176 ,1 ,1.27673077486345065700,4.63692338557311956037,0.00000000000000000000,1.00000000000000000000,0.00011538460480200291,0.00042307691045560797,0.99999990384615544680,100.000000000000000000,0.31539551506724267104,0.31539551506724267104,0.00000000000000001224,0.00000000000000000074,11000.0010576923887128,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -176 ,2 ,1.27673077486345065700,346.377426014241336815,10938.1066995849851082,0.00000000000000000000,0.00011538460480200291,0.34241767268989697914,0.93954782960529836799,100.000000000000000000,0.31539551506724267104,0.31539551506724267104,0.00000000000000001224,0.00000000000000000074,11000.0010576923887128,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -177 ,0 ,1.93099219522034948326,-0.0000000000000001684,-24.208489181299817971,1.00000000000000000000,0.00019230767391139474,0.17406480833651974404,0.98473418013011471128,100.000000000000000000,0.31539552003317888884,0.31539552003317888884,0.00000000000000001224,0.00000000000000000074,9976.16036947277279978,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -177 ,1 ,2.12788464146184308489,4.63692344064775685552,0.00000000000000000000,1.00000000000000000000,0.00019230767391139474,0.00042307691045555197,0.99999989201183725473,100.000000000000000000,0.31539552003317888884,0.31539552003317888884,0.00000000000000001224,0.00000000000000000074,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -177 ,2 ,2.12788464146184308489,346.377426065994541204,10938.1066995661476539,0.00000000000000000000,0.00019230767391139474,0.34241766864232175970,0.93954781848467683325,100.000000000000000000,0.31539552003317888884,0.31539552003317888884,0.00000000000000001224,0.00000000000000000074,11000.0011878699169756,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -178 ,0 ,2.70338910498003182070,0.00000000000000019433,-24.208489611735959812,3.00000000000000000000,0.00026923074188287118,0.17406480525400802594,0.98473416264832192013,100.000000000000000000,0.31539552748208415922,0.31539552748208415922,0.00000000000000001224,0.00000000000000000074,9976.16054614048516668,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -179 ,0 ,3.47578604641126442942,0.00000000000000016487,-24.208490185646699188,3.00000000000000000000,0.00034615380826126648,0.17406480114399242031,0.98473413933926512431,100.000000000000000000,0.31539553741395764951,0.31539553741395764951,0.00000000000000001224,0.00000000000000000074,9976.16078169744469050,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -180 ,0 ,4.24818302856305862746,-0.0000000000000000111,-24.208490903036668839,3.00000000000000000000,0.00042307687259141442,0.17406479600647295491,0.98473411020294443485,100.000000000000000000,0.31539554982880046996,0.31539554982880046996,0.00000000000000001224,0.00000000000000000074,9976.16107614365864719,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -181 ,0 ,5.02058006048443328239,0.00000000000000027742,-24.208491763904323335,3.00000000000000000000,0.00049999993441814875,0.17406478984144968524,0.98473407523935996277,100.000000000000000000,0.31539556472661134378,0.31539556472661134378,0.00000000000000001224,0.00000000000000000074,9976.16142947913613170,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -182 ,0 ,-5.0184188510770555424,0.00000000000000019325,-28.597590490362946979,3.00000000000000000000,-0.0004999999166666708,0.17414053811087881751,0.98472068272507462527,100.000000000000000000,0.31521255489632721280,0.31521255489632721280,0.00000000000000001224,0.00000000000000000074,9971.83936412725597620,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -183 ,0 ,-4.2463543130187906271,-0.0000000000000001587,-28.597589473858338493,3.00000000000000000000,-0.0004230768575709328,0.17414054427590189288,0.98472071768865776508,100.000000000000000000,0.31521254000441933929,0.31521254000441933929,0.00000000000000001224,0.00000000000000000074,9971.83901109849830390,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -184 ,0 ,-3.4742898246760436364,0.00000000000000012246,-28.597588626770399145,3.00000000000000000000,-0.0003461537959717815,0.17414054941342116400,0.98472074682497745534,100.000000000000000000,0.31521252759449613911,0.31521252759449613911,0.00000000000000001224,0.00000000000000000074,9971.83871690788328123,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -185 ,0 ,-2.7022253770096229530,0.00000000000000018906,-28.597587949100656601,3.00000000000000000000,-0.0002692307323243828,0.17414055352343663085,0.98472077013403336298,100.000000000000000000,0.31521251766655811188,0.31521251766655811188,0.00000000000000001224,0.00000000000000000074,9971.83848155540363222,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -186 ,0 ,-1.9301609609803449529,-0.0000000000000000272,-28.597587440847583195,3.00000000000000000000,-0.0001923076670839029,0.17414055660594823793,0.98472078761582548800,100.000000000000000000,0.31521251022060436941,0.31521251022060436941,0.00000000000000001224,0.00000000000000000074,9971.83830504104844294,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -187 ,0 ,-1.1580965675490244581,-0.0000000000000001114,-28.597587102012713700,3.00000000000000000000,-0.0001153846007055078,0.17414055866095598523,0.98472079927035349733,100.000000000000000000,0.31521250525663524477,0.31521250525663524477,0.00000000000000001224,0.00000000000000000074,9971.83818736481407540,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -188 ,0 ,-0.3860321876764772897,-0.0000000000000002342,-28.597586932594509789,3.00000000000000000000,-0.0000384615336443635,0.17414055968845987276,0.98472080509761772404,100.000000000000000000,0.31521250277465029387,0.31521250277465029387,0.00000000000000001224,0.00000000000000000074,9971.83812852669871062,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -189 ,0 ,0.38603218767647728970,-0.0000000000000002342,-28.597586932594509789,3.00000000000000000000,0.00003846153364436359,0.17414055968845987276,0.98472080509761772404,100.000000000000000000,0.31521250277465029387,0.31521250277465029387,0.00000000000000001224,0.00000000000000000074,9971.83812852669871062,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -190 ,0 ,1.15809656754902445818,-0.0000000000000001114,-28.597587102012713700,1.00000000000000000000,0.00011538460070550785,0.17414055866095598523,0.98472079927035349733,100.000000000000000000,0.31521250525663524477,0.31521250525663524477,0.00000000000000001224,0.00000000000000000074,9971.83818736481407540,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -190 ,1 ,1.27673077486345043496,5.48000049494600904864,0.00000000000000000000,1.00000000000000000000,0.00011538460070550785,0.00049999997916671179,0.99999986834319842810,100.000000000000000000,0.31521250525663524477,0.31521250525663524477,0.00000000000000001224,0.00000000000000000074,11000.0014482250044238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -190 ,2 ,1.27673077486345043496,347.169659352672510976,10937.8183502312022028,0.00000000000000000000,0.00011538460070550785,0.34248994458720660727,0.93952148700444593210,100.000000000000000000,0.31521250525663524477,0.31521250525663524477,0.00000000000000001224,0.00000000000000000074,11000.0014482250044238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -191 ,0 ,1.93016096098034561912,-0.0000000000000000272,-28.597587440847583195,3.00000000000000000000,0.00019230766708390299,0.17414055660594823793,0.98472078761582548800,100.000000000000000000,0.31521251022060436941,0.31521251022060436941,0.00000000000000001224,0.00000000000000000074,9971.83830504104844294,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -192 ,0 ,2.70222537700962295303,0.00000000000000018906,-28.597587949100656601,3.00000000000000000000,0.00026923073232438285,0.17414055352343663085,0.98472077013403336298,100.000000000000000000,0.31521251766655811188,0.31521251766655811188,0.00000000000000001224,0.00000000000000000074,9971.83848155540363222,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -193 ,0 ,3.47428982467604363648,0.00000000000000012246,-28.597588626770399145,3.00000000000000000000,0.00034615379597178157,0.17414054941342116400,0.98472074682497745534,100.000000000000000000,0.31521252759449613911,0.31521252759449613911,0.00000000000000001224,0.00000000000000000074,9971.83871690788328123,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -194 ,0 ,4.24635431301879151533,-0.0000000000000001587,-28.597589473858338493,3.00000000000000000000,0.00042307685757093292,0.17414054427590189288,0.98472071768865776508,100.000000000000000000,0.31521254000441933929,0.31521254000441933929,0.00000000000000001224,0.00000000000000000074,9971.83901109849830390,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -195 ,0 ,5.01841885107705554247,0.00000000000000019325,-28.597590490362946979,3.00000000000000000000,0.00049999991666667084,0.17414053811087881751,0.98472068272507462527,100.000000000000000000,0.31521255489632721280,0.31521255489632721280,0.00000000000000001224,0.00000000000000000074,9971.83936412725597620,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -196 ,0 ,-5.0466620698997646243,-0.0000000000000002789,28.7602367255999062933,3.00000000000000000000,-0.0004999999166666708,0.17315573039890028161,0.98489433089550615374,100.000000000000000000,0.31759754053448807642,0.31759754053448807642,0.00000000000000001228,0.00000000000000000075,10028.3258111870818538,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -197 ,0 ,-4.2702524198358817741,0.00000000000000009323,28.7602356975238713232,3.00000000000000000000,-0.0004230768575709328,0.17315573656392332924,0.98489436585908940458,100.000000000000000000,0.31759752556571668735,0.31759752556571668735,0.00000000000000001228,0.00000000000000000075,10028.3254541393689578,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 -198 ,0 ,-3.4938428201962699048,0.00000000000000002199,28.7602348407912487004,1.00000000000000000000,-0.0003461537959717815,0.17315574170144260035,0.98489439499540898381,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,10028.3251565996197314,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -198 ,1 ,-3.8301924597747007972,-5.4800007878450722742,0.00000000000000000000,1.00000000000000000000,-0.0003461537959717815,-0.0004999999791666261,0.99999981508876789604,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,11000.0020340239261713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -198 ,2 ,-3.8301924597747007972,336.870627023429676683,10941.5668914407924603,0.00000000000000000000,-0.0003461537959717815,0.34155023379148657936,0.93986345709072538490,100.000000000000000000,0.31759751309174077960,0.31759751309174077960,0.00000000000000001228,0.00000000000000000075,11000.0020340239261713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -199 ,0 ,-2.7174332618128755889,0.00000000000000005224,28.7602341554067066908,3.00000000000000000000,-0.0002692307323243828,0.17315574581145806720,0.98489441830446500247,100.000000000000000000,0.31759750311255929844,0.31759750311255929844,0.00000000000000001228,0.00000000000000000075,10028.3249185678359935,0.00000000000000000000,1.00000000000000000000,0.00000000000000000000 diff --git a/Intern/RAY-Core/tests/output/PointSource_seeded.rayx.csv b/Intern/RAY-Core/tests/output/PointSource_seeded.rayx.csv deleted file mode 100644 index 33b5ecc03..000000000 --- a/Intern/RAY-Core/tests/output/PointSource_seeded.rayx.csv +++ /dev/null @@ -1,401 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-1.7903320893902066046,0.83611441621380255817,0.00000000000000000000,1.00000000000000000000,-0.0018170116945435889,0.00083114033415540903,0.99999800383513115509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.770001767253575053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -0 ,1 ,-1.7903320893902066046,0.83611441621380255817,1000.00000000000000000,0.00000000000000000000,-0.0018170116945435889,0.00083114033415540903,0.99999800383513115509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.770001767253575053,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -1 ,0 ,-0.3830814019361608036,-0.7210972937484624312,0.00000000000000000000,1.00000000000000000000,-0.0004846383878598668,-0.0006290090472399334,0.99999968473657607770,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.634138999235915434,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -1 ,1 ,-0.3830814019361608036,-0.7210972937484624312,1000.00000000000000000,0.00000000000000000000,-0.0004846383878598668,-0.0006290090472399334,0.99999968473657607770,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.634138999235915434,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -2 ,0 ,2.01352449880240058632,-1.7615669936310247578,0.00000000000000000000,1.00000000000000000000,0.00184424753055840605,-0.0017604158580713192,0.99999674983824460294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.670806455260617440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -2 ,1 ,2.01352449880240058632,-1.7615669936310247578,1000.00000000000000000,0.00000000000000000000,0.00184424753055840605,-0.0017604158580713192,0.99999674983824460294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.670806455260617440,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -3 ,0 ,-1.6402858072429191693,-1.3292548960560022219,0.00000000000000000000,1.00000000000000000000,-0.0015517666731649575,-0.0012821489412684855,0.99999797405508994430,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.977269462267940980,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -3 ,1 ,-1.6402858072429191693,-1.3292548960560022219,1000.00000000000000000,0.00000000000000000000,-0.0015517666731649575,-0.0012821489412684855,0.99999797405508994430,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.977269462267940980,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -4 ,0 ,1.00357544087991645831,-0.0771343848143010851,0.00000000000000000000,1.00000000000000000000,0.00105544701572107303,-0.0001531064967828895,0.99999943129483714887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.20842417606024810,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -4 ,1 ,1.00357544087991645831,-0.0771343848143010851,1000.00000000000000000,0.00000000000000000000,0.00105544701572107303,-0.0001531064967828895,0.99999943129483714887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.20842417606024810,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -5 ,0 ,1.54531010138667990183,0.94793746464542649743,0.00000000000000000000,1.00000000000000000000,0.00157859591959139274,0.00100104488861495156,0.99999825297050071171,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.987512571353363455,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -5 ,1 ,1.54531010138667990183,0.94793746464542649743,1000.00000000000000000,0.00000000000000000000,0.00157859591959139274,0.00100104488861495156,0.99999825297050071171,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.987512571353363455,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -6 ,0 ,-0.2714569659798616863,-0.3745661476704158499,0.00000000000000000000,1.00000000000000000000,-0.0002438350236688280,-0.0003028084339632207,0.99999992442576390860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.43502401281409674,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -6 ,1 ,-0.2714569659798616863,-0.3745661476704158499,1000.00000000000000000,0.00000000000000000000,-0.0002438350236688280,-0.0003028084339632207,0.99999992442576390860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.43502401281409674,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -7 ,0 ,-0.5536757354308237122,0.01224841014304983710,0.00000000000000000000,1.00000000000000000000,-0.0005215916611252036,-0.0000490972964520432,0.99999986276578778365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.40246517247874180,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -7 ,1 ,-0.5536757354308237122,0.01224841014304983710,1000.00000000000000000,0.00000000000000000000,-0.0005215916611252036,-0.0000490972964520432,0.99999986276578778365,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.40246517247874180,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -8 ,0 ,0.57670663071799399546,0.36163962509956976143,0.00000000000000000000,1.00000000000000000000,0.00067911592935621448,0.00033780569231646619,0.99999971234439299916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.46589926653450675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -8 ,1 ,0.57670663071799399546,0.36163962509956976143,1000.00000000000000000,0.00000000000000000000,0.00067911592935621448,0.00033780569231646619,0.99999971234439299916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.46589926653450675,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -9 ,0 ,1.80399368221311506843,0.94654532698218507569,0.00000000000000000000,1.00000000000000000000,0.00180203948281240796,0.00100100875754007175,0.99999787531532768891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.982056625634527335,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -9 ,1 ,1.80399368221311506843,0.94654532698218507569,1000.00000000000000000,0.00000000000000000000,0.00180203948281240796,0.00100100875754007175,0.99999787531532768891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.982056625634527335,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -10 ,0 ,-0.1354297711550078164,-0.4492112234203732290,0.00000000000000000000,1.00000000000000000000,-0.0001443446548242443,-0.0004222576897879662,0.99999990043152697793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.560600585650831817,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -10 ,1 ,-0.1354297711550078164,-0.4492112234203732290,1000.00000000000000000,0.00000000000000000000,-0.0001443446548242443,-0.0004222576897879662,0.99999990043152697793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.560600585650831817,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -11 ,0 ,0.82683613978170367175,-2.4950482565762244213,0.00000000000000000000,1.00000000000000000000,0.00083870667843186118,-0.0024147068646381644,0.99999673287559565082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.30728526463701655,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -11 ,1 ,0.82683613978170367175,-2.4950482565762244213,1000.00000000000000000,0.00000000000000000000,0.00083870667843186118,-0.0024147068646381644,0.99999673287559565082,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.30728526463701655,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -12 ,0 ,-1.2476277961299011565,-1.4638361817216087867,0.00000000000000000000,1.00000000000000000000,-0.0012465307828809888,-0.0014016873872770528,0.99999824071519016754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.673021199931099545,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -12 ,1 ,-1.2476277961299011565,-1.4638361817216087867,1000.00000000000000000,0.00000000000000000000,-0.0012465307828809888,-0.0014016873872770528,0.99999824071519016754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.673021199931099545,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -13 ,0 ,-0.1556663252481808590,-2.2897474866541163152,0.00000000000000000000,1.00000000000000000000,-0.0001440217948228577,-0.0022677268461958502,0.99999741833300426208,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.700383910517530239,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -13 ,1 ,-0.1556663252481808590,-2.2897474866541163152,1000.00000000000000000,0.00000000000000000000,-0.0001440217948228577,-0.0022677268461958502,0.99999741833300426208,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.700383910517530239,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -14 ,0 ,-0.2373469274248577176,-0.2213027829556896974,0.00000000000000000000,1.00000000000000000000,-0.0002003432061171753,-0.0002017980246750739,0.99999995957007770108,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.49451832754061797,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -14 ,1 ,-0.2373469274248577176,-0.2213027829556896974,1000.00000000000000000,0.00000000000000000000,-0.0002003432061171753,-0.0002017980246750739,0.99999995957007770108,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.49451832754061797,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -15 ,0 ,1.80047163078523708712,0.81178219094069581363,0.00000000000000000000,1.00000000000000000000,0.00178679960427859823,0.00083409740871731141,0.99999805581245349017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.42790037368399680,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -15 ,1 ,1.80047163078523708712,0.81178219094069581363,1000.00000000000000000,0.00000000000000000000,0.00178679960427859823,0.00083409740871731141,0.99999805581245349017,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.42790037368399680,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -16 ,0 ,-0.7254368893133745777,1.57920030017431933799,0.00000000000000000000,1.00000000000000000000,-0.0007460480046487706,0.00161587310664486403,0.99999841618198470616,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.17068606389921114,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -16 ,1 ,-0.7254368893133745777,1.57920030017431933799,1000.00000000000000000,0.00000000000000000000,-0.0007460480046487706,0.00161587310664486403,0.99999841618198470616,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.17068606389921114,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -17 ,0 ,-0.9572452276555470929,0.42670914588741781781,0.00000000000000000000,1.00000000000000000000,-0.0009082610451504131,0.00045344885496587187,0.99999948472287214507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.862957735426448380,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -17 ,1 ,-0.9572452276555470929,0.42670914588741781781,1000.00000000000000000,0.00000000000000000000,-0.0009082610451504131,0.00045344885496587187,0.99999948472287214507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.862957735426448380,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -18 ,0 ,0.10436128514304782166,-0.0753476891996055220,0.00000000000000000000,1.00000000000000000000,-0.0000274938995140157,-0.0000945192389796586,0.99999999515509951919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.739219800220439537,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -18 ,1 ,0.10436128514304782166,-0.0753476891996055220,1000.00000000000000000,0.00000000000000000000,-0.0000274938995140157,-0.0000945192389796586,0.99999999515509951919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.739219800220439537,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -19 ,0 ,0.70517857792753046997,2.50462461091878996199,0.00000000000000000000,1.00000000000000000000,0.00063039141656364826,0.00251558049831528346,0.99999663722505505170,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.07582200902572822,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -19 ,1 ,0.70517857792753046997,2.50462461091878996199,1000.00000000000000000,0.00000000000000000000,0.00063039141656364826,0.00251558049831528346,0.99999663722505505170,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.07582200902572822,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -20 ,0 ,0.41782372823360391933,0.35286249232938704523,0.00000000000000000000,1.00000000000000000000,0.00028216243403025658,0.00039036337680465498,0.99999988400039063751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.18576003978080279,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -20 ,1 ,0.41782372823360391933,0.35286249232938704523,1000.00000000000000000,0.00000000000000000000,0.00028216243403025658,0.00039036337680465498,0.99999988400039063751,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.18576003978080279,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -21 ,0 ,-1.9269250036527882929,-1.6592921244966489791,0.00000000000000000000,1.00000000000000000000,-0.0018415400574254634,-0.0016079756692825868,0.99999701156776654720,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.747436537930411759,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -21 ,1 ,-1.9269250036527882929,-1.6592921244966489791,1000.00000000000000000,0.00000000000000000000,-0.0018415400574254634,-0.0016079756692825868,0.99999701156776654720,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.747436537930411759,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -22 ,0 ,0.71819057674736930252,0.24038868057686563206,0.00000000000000000000,1.00000000000000000000,0.00075330027603372098,0.00018460705761746973,0.99999969922941900346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.570602993290890481,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -22 ,1 ,0.71819057674736930252,0.24038868057686563206,1000.00000000000000000,0.00000000000000000000,0.00075330027603372098,0.00018460705761746973,0.99999969922941900346,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.570602993290890481,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -23 ,0 ,-0.5333944448865763909,-0.3491162148992120739,0.00000000000000000000,1.00000000000000000000,-0.0005004043916503004,-0.0003542149766876076,0.99999981206357990703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31361793697305984,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -23 ,1 ,-0.5333944448865763909,-0.3491162148992120739,1000.00000000000000000,0.00000000000000000000,-0.0005004043916503004,-0.0003542149766876076,0.99999981206357990703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31361793697305984,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -24 ,0 ,-1.0004845293630568736,0.27965548998261069435,0.00000000000000000000,1.00000000000000000000,-0.0010309023807825096,0.00029120681483637569,0.99999942621927151442,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.18257041579749966,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -24 ,1 ,-1.0004845293630568736,0.27965548998261069435,1000.00000000000000000,0.00000000000000000000,-0.0010309023807825096,0.00029120681483637569,0.99999942621927151442,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.18257041579749966,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -25 ,0 ,-1.0475245727238207127,-1.6252015690166470296,0.00000000000000000000,1.00000000000000000000,-0.0011327159901788927,-0.0016105479018686105,0.99999806154309189842,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.641207178354989082,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -25 ,1 ,-1.0475245727238207127,-1.6252015690166470296,1000.00000000000000000,0.00000000000000000000,-0.0011327159901788927,-0.0016105479018686105,0.99999806154309189842,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.641207178354989082,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -26 ,0 ,0.08293425913302394925,-0.0789550597434337947,0.00000000000000000000,1.00000000000000000000,0.00016840245556516079,-0.0000543813850827478,0.99999998434163883676,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.38015029476855488,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -26 ,1 ,0.08293425913302394925,-0.0789550597434337947,1000.00000000000000000,0.00000000000000000000,0.00016840245556516079,-0.0000543813850827478,0.99999998434163883676,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.38015029476855488,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -27 ,0 ,0.01316612190347112368,-1.3483435538680108578,0.00000000000000000000,1.00000000000000000000,-0.0000058856042086105,-0.0013058015290100481,0.99999914742349982343,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.797833446225013176,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -27 ,1 ,0.01316612190347112368,-1.3483435538680108578,1000.00000000000000000,0.00000000000000000000,-0.0000058856042086105,-0.0013058015290100481,0.99999914742349982343,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.797833446225013176,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -28 ,0 ,1.58501814641925853344,-0.9479911811010655053,0.00000000000000000000,1.00000000000000000000,0.00158465814080821975,-0.0009259965140188350,0.99999831569309793888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00443581343927235,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -28 ,1 ,1.58501814641925853344,-0.9479911811010655053,1000.00000000000000000,0.00000000000000000000,0.00158465814080821975,-0.0009259965140188350,0.99999831569309793888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00443581343927235,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -29 ,0 ,-0.9167279291628699366,-2.3441055475799839058,0.00000000000000000000,1.00000000000000000000,-0.0008991533767250880,-0.0023834752788065701,0.99999675527913600703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00056570218316664,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -29 ,1 ,-0.9167279291628699366,-2.3441055475799839058,1000.00000000000000000,0.00000000000000000000,-0.0008991533767250880,-0.0023834752788065701,0.99999675527913600703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00056570218316664,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -30 ,0 ,-0.1797181128960924634,1.10350129359520043870,0.00000000000000000000,1.00000000000000000000,-0.0001607173333056111,0.00113161890575448165,0.99999934680408208986,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.35575855989600313,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -30 ,1 ,-0.1797181128960924634,1.10350129359520043870,1000.00000000000000000,0.00000000000000000000,-0.0001607173333056111,0.00113161890575448165,0.99999934680408208986,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.35575855989600313,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -31 ,0 ,0.16950431700712983995,-0.0523025034678316694,0.00000000000000000000,1.00000000000000000000,0.00026100702396103373,-0.0000834773157025421,0.99999996245343492073,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.738417921663199194,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -31 ,1 ,0.16950431700712983995,-0.0523025034678316694,1000.00000000000000000,0.00000000000000000000,0.00026100702396103373,-0.0000834773157025421,0.99999996245343492073,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.738417921663199194,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -32 ,0 ,0.56553865649371493073,-0.4147385932787036044,0.00000000000000000000,1.00000000000000000000,0.00065596589530285322,-0.0004528904915224072,0.99999968229942304276,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.866787949154513626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -32 ,1 ,0.56553865649371493073,-0.4147385932787036044,1000.00000000000000000,0.00000000000000000000,0.00065596589530285322,-0.0004528904915224072,0.99999968229942304276,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.866787949154513626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -33 ,0 ,-0.4485652701366859007,-1.6530440751237360785,0.00000000000000000000,1.00000000000000000000,-0.0004711956062625525,-0.0015923036003770889,0.99999862127102201458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31486065666217655,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -33 ,1 ,-0.4485652701366859007,-1.6530440751237360785,1000.00000000000000000,0.00000000000000000000,-0.0004711956062625525,-0.0015923036003770889,0.99999862127102201458,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31486065666217655,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -34 ,0 ,0.78105532412396039276,0.97356690375945098558,0.00000000000000000000,1.00000000000000000000,0.00077040280388320653,0.00100125865035467363,0.99999920197999903059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.988704958134462685,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -34 ,1 ,0.78105532412396039276,0.97356690375945098558,1000.00000000000000000,0.00000000000000000000,0.00077040280388320653,0.00100125865035467363,0.99999920197999903059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.988704958134462685,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -35 ,0 ,-0.7836334710378285439,-0.2168541122606920945,0.00000000000000000000,1.00000000000000000000,-0.0008966323682086169,-0.0001893176076927331,0.99999958010453171564,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.11368459345305836,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -35 ,1 ,-0.7836334710378285439,-0.2168541122606920945,1000.00000000000000000,0.00000000000000000000,-0.0008966323682086169,-0.0001893176076927331,0.99999958010453171564,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.11368459345305836,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -36 ,0 ,0.21225987736993512378,0.19207157739838517929,0.00000000000000000000,1.00000000000000000000,0.00022119708182556045,0.00017092002168079842,0.99999996092909781975,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.575345434728433247,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -36 ,1 ,0.21225987736993512378,0.19207157739838517929,1000.00000000000000000,0.00000000000000000000,0.00022119708182556045,0.00017092002168079842,0.99999996092909781975,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.575345434728433247,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -37 ,0 ,1.71124919276443021587,0.10190353922986197798,0.00000000000000000000,1.00000000000000000000,0.00168442302812935929,0.00007665241349480921,0.99999857842072448210,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.946220689356664479,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -37 ,1 ,1.71124919276443021587,0.10190353922986197798,1000.00000000000000000,0.00000000000000000000,0.00168442302812935929,0.00007665241349480921,0.99999857842072448210,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.946220689356664479,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -38 ,0 ,-0.1269411358338376760,-0.3764478417177709590,0.00000000000000000000,1.00000000000000000000,-0.0002653531611246259,-0.0003591975689766601,0.99999990028239815753,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.599681625954985975,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -38 ,1 ,-0.1269411358338376760,-0.3764478417177709590,1000.00000000000000000,0.00000000000000000000,-0.0002653531611246259,-0.0003591975689766601,0.99999990028239815753,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.599681625954985975,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -39 ,0 ,0.50783166221466424783,0.42212588908461795567,0.00000000000000000000,1.00000000000000000000,0.00053697948549918331,0.00040401671790679649,0.99999977421173635860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.603115444404693334,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -39 ,1 ,0.50783166221466424783,0.42212588908461795567,1000.00000000000000000,0.00000000000000000000,0.00053697948549918331,0.00040401671790679649,0.99999977421173635860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.603115444404693334,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -40 ,0 ,-0.8384072931463998346,0.30729520301197282838,0.00000000000000000000,1.00000000000000000000,-0.0008743664504504158,0.00022539894884708019,0.99999959233922897094,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.33877908896727149,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -40 ,1 ,-0.8384072931463998346,0.30729520301197282838,1000.00000000000000000,0.00000000000000000000,-0.0008743664504504158,0.00022539894884708019,0.99999959233922897094,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.33877908896727149,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -41 ,0 ,-0.7899393467840394311,0.76723135621776172854,0.00000000000000000000,1.00000000000000000000,-0.0006517192778375967,0.00068775993822289924,0.99999955112402438839,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.836947040311315504,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -41 ,1 ,-0.7899393467840394311,0.76723135621776172854,1000.00000000000000000,0.00000000000000000000,-0.0006517192778375967,0.00068775993822289924,0.99999955112402438839,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.836947040311315504,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -42 ,0 ,0.74757061350202702598,-0.8084556387039879554,0.00000000000000000000,1.00000000000000000000,0.00081861611342077329,-0.0007760288684307970,0.99999936382322474059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.848674824768181679,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -42 ,1 ,0.74757061350202702598,-0.8084556387039879554,1000.00000000000000000,0.00000000000000000000,0.00081861611342077329,-0.0007760288684307970,0.99999936382322474059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.848674824768181679,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -43 ,0 ,-0.2139615585003428743,0.05992546375144839482,0.00000000000000000000,1.00000000000000000000,-0.0001038115510734464,0.00003401273033540993,0.99999999403314809853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.753514558396091160,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -43 ,1 ,-0.2139615585003428743,0.05992546375144839482,1000.00000000000000000,0.00000000000000000000,-0.0001038115510734464,0.00003401273033540993,0.99999999403314809853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.753514558396091160,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -44 ,0 ,-0.0259617457223818223,0.88588997594541118996,0.00000000000000000000,1.00000000000000000000,-0.0000047276659541162,0.00092652710465491506,0.99999957076249468279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.40675464547962292,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -44 ,1 ,-0.0259617457223818223,0.88588997594541118996,1000.00000000000000000,0.00000000000000000000,-0.0000047276659541162,0.00092652710465491506,0.99999957076249468279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.40675464547962292,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -45 ,0 ,-0.9713664266712692674,-0.3879490312881589408,0.00000000000000000000,1.00000000000000000000,-0.0008790426328031954,-0.0003971812050399908,0.99999953476546177277,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10736756056360263,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -45 ,1 ,-0.9713664266712692674,-0.3879490312881589408,1000.00000000000000000,0.00000000000000000000,-0.0008790426328031954,-0.0003971812050399908,0.99999953476546177277,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10736756056360263,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -46 ,0 ,0.19852324774040031041,-0.8110501106401933890,0.00000000000000000000,1.00000000000000000000,0.00022445089431004437,-0.0007823781246552961,0.99999966875307821911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.923427335494125145,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -46 ,1 ,0.19852324774040031041,-0.8110501106401933890,1000.00000000000000000,0.00000000000000000000,0.00022445089431004437,-0.0007823781246552961,0.99999966875307821911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.923427335494125145,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -47 ,0 ,1.80801825985799857754,-0.9585792106883930241,0.00000000000000000000,1.00000000000000000000,0.00185954213099227242,-0.0009008081146911684,0.99999786532162326935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47781973719145298,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -47 ,1 ,1.80801825985799857754,-0.9585792106883930241,1000.00000000000000000,0.00000000000000000000,0.00185954213099227242,-0.0009008081146911684,0.99999786532162326935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47781973719145298,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -48 ,0 ,2.73967015752784304183,0.01792996819285708545,0.00000000000000000000,1.00000000000000000000,0.00276317660115505585,0.00002020699536371607,0.99999618221608632673,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.588951826112975140,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -48 ,1 ,2.73967015752784304183,0.01792996819285708545,1000.00000000000000000,0.00000000000000000000,0.00276317660115505585,0.00002020699536371607,0.99999618221608632673,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.588951826112975140,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -49 ,0 ,0.48945419975328074979,-0.3193027228559736641,0.00000000000000000000,1.00000000000000000000,0.00050186940267031056,-0.0002701673572949503,0.99999983756833754622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.533507536227716627,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -49 ,1 ,0.48945419975328074979,-0.3193027228559736641,1000.00000000000000000,0.00000000000000000000,0.00050186940267031056,-0.0002701673572949503,0.99999983756833754622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.533507536227716627,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -50 ,0 ,-1.3471564098272750253,1.52902220345004002943,0.00000000000000000000,1.00000000000000000000,-0.0013127657516968141,0.00150950123607214176,0.99999799902404773455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.650863602501658533,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -50 ,1 ,-1.3471564098272750253,1.52902220345004002943,1000.00000000000000000,0.00000000000000000000,-0.0013127657516968141,0.00150950123607214176,0.99999799902404773455,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.650863602501658533,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -51 ,0 ,0.49558075392898193189,-0.9498188443236809108,0.00000000000000000000,1.00000000000000000000,0.00055118516153753534,-0.0009581135850559639,0.99999938910645136402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.804580978439958016,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -51 ,1 ,0.49558075392898193189,-0.9498188443236809108,1000.00000000000000000,0.00000000000000000000,0.00055118516153753534,-0.0009581135850559639,0.99999938910645136402,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.804580978439958016,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -52 ,0 ,-0.2557343463800159089,0.31839950798907895590,0.00000000000000000000,1.00000000000000000000,-0.0002251812763279580,0.00032185154431477777,0.99999992285248517909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.35999316167908546,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -52 ,1 ,-0.2557343463800159089,0.31839950798907895590,1000.00000000000000000,0.00000000000000000000,-0.0002251812763279580,0.00032185154431477777,0.99999992285248517909,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.35999316167908546,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -53 ,0 ,-0.4216889763453134376,1.37431653696732136715,0.00000000000000000000,1.00000000000000000000,-0.0004510359085725458,0.00135237467899688513,0.99999898382415208786,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.798531889923651760,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -53 ,1 ,-0.4216889763453134376,1.37431653696732136715,1000.00000000000000000,0.00000000000000000000,-0.0004510359085725458,0.00135237467899688513,0.99999898382415208786,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.798531889923651760,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -54 ,0 ,1.12014432126193441696,-0.3721451184583185467,0.00000000000000000000,1.00000000000000000000,0.00115758704346757813,-0.0003712690067350706,0.99999926107550762832,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.633666333985615892,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -54 ,1 ,1.12014432126193441696,-0.3721451184583185467,1000.00000000000000000,0.00000000000000000000,0.00115758704346757813,-0.0003712690067350706,0.99999926107550762832,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.633666333985615892,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -55 ,0 ,0.58869468921998990840,0.67958205016432982059,0.00000000000000000000,1.00000000000000000000,0.00064179749339880103,0.00067047227829122163,0.99999956928135802503,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.850466723834642834,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -55 ,1 ,0.58869468921998990840,0.67958205016432982059,1000.00000000000000000,0.00000000000000000000,0.00064179749339880103,0.00067047227829122163,0.99999956928135802503,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.850466723834642834,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -56 ,0 ,-0.4688057571369460552,2.07249872204422835864,0.00000000000000000000,1.00000000000000000000,-0.0004924910138135828,0.00201421236181962290,0.99999785019827058807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12656711912268292,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -56 ,1 ,-0.4688057571369460552,2.07249872204422835864,1000.00000000000000000,0.00000000000000000000,-0.0004924910138135828,0.00201421236181962290,0.99999785019827058807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12656711912268292,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -57 ,0 ,0.57685328936845792213,-0.8103843964160919455,0.00000000000000000000,1.00000000000000000000,0.00065593180329993742,-0.0008382090037037597,0.99999943357940734856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.957921762255068642,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -57 ,1 ,0.57685328936845792213,-0.8103843964160919455,1000.00000000000000000,0.00000000000000000000,0.00065593180329993742,-0.0008382090037037597,0.99999943357940734856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.957921762255068642,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -58 ,0 ,-0.9408871378345998737,1.48953737914822759158,0.00000000000000000000,1.00000000000000000000,-0.0009409181307578014,0.00139045561530202056,0.99999859065213336783,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.678808335439839538,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -58 ,1 ,-0.9408871378345998737,1.48953737914822759158,1000.00000000000000000,0.00000000000000000000,-0.0009409181307578014,0.00139045561530202056,0.99999859065213336783,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.678808335439839538,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -59 ,0 ,1.24764877075773461534,0.93451929437038616654,0.00000000000000000000,1.00000000000000000000,0.00121248222199622735,0.00093815426768459190,0.99999882487602531622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.28535443638509150,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -59 ,1 ,1.24764877075773461534,0.93451929437038616654,1000.00000000000000000,0.00000000000000000000,0.00121248222199622735,0.00093815426768459190,0.99999882487602531622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.28535443638509150,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -60 ,0 ,0.59171738784053651283,-0.6506155605881595027,0.00000000000000000000,1.00000000000000000000,0.00053756356162720818,-0.0006124564436113300,0.99999966796120576262,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.959696905628220520,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -60 ,1 ,0.59171738784053651283,-0.6506155605881595027,1000.00000000000000000,0.00000000000000000000,0.00053756356162720818,-0.0006124564436113300,0.99999966796120576262,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.959696905628220520,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -61 ,0 ,-1.4635139042672069553,0.53470839520275903478,0.00000000000000000000,1.00000000000000000000,-0.0014773600400536099,0.00054475863018046814,0.99999876032190504471,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.17828341964661831,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -61 ,1 ,-1.4635139042672069553,0.53470839520275903478,1000.00000000000000000,0.00000000000000000000,-0.0014773600400536099,0.00054475863018046814,0.99999876032190504471,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.17828341964661831,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -62 ,0 ,-0.5422612966631934483,-0.2416637075114057842,0.00000000000000000000,1.00000000000000000000,-0.0005388840563157253,-0.0002410612880775294,0.99999982574669943335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47482359306093258,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -62 ,1 ,-0.5422612966631934483,-0.2416637075114057842,1000.00000000000000000,0.00000000000000000000,-0.0005388840563157253,-0.0002410612880775294,0.99999982574669943335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47482359306093258,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -63 ,0 ,0.08591421232759309523,1.85175436147774408190,0.00000000000000000000,1.00000000000000000000,0.00010673566705110033,0.00180120791867362283,0.99999837212744058234,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32833408793237595,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -63 ,1 ,0.08591421232759309523,1.85175436147774408190,1000.00000000000000000,0.00000000000000000000,0.00010673566705110033,0.00180120791867362283,0.99999837212744058234,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32833408793237595,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -64 ,0 ,-0.2430691772559476493,1.04372760174422318790,0.00000000000000000000,1.00000000000000000000,-0.0003022533785151572,0.00103046643067751238,0.99999942339074887609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.840379145674432947,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -64 ,1 ,-0.2430691772559476493,1.04372760174422318790,1000.00000000000000000,0.00000000000000000000,-0.0003022533785151572,0.00103046643067751238,0.99999942339074887609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.840379145674432947,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -65 ,0 ,-1.5565802006859368322,-1.2989388232442971027,0.00000000000000000000,1.00000000000000000000,-0.0015288205757833291,-0.0012591285889789931,0.99999803864949821097,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.890240389397604303,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -65 ,1 ,-1.5565802006859368322,-1.2989388232442971027,1000.00000000000000000,0.00000000000000000000,-0.0015288205757833291,-0.0012591285889789931,0.99999803864949821097,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.890240389397604303,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -66 ,0 ,2.11153608544163917670,-1.7187514664914442796,0.00000000000000000000,1.00000000000000000000,0.00205980031063825999,-0.0017395932412820887,0.99999636551241277704,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.48924277406024430,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -66 ,1 ,2.11153608544163917670,-1.7187514664914442796,1000.00000000000000000,0.00000000000000000000,0.00205980031063825999,-0.0017395932412820887,0.99999636551241277704,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.48924277406024430,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -67 ,0 ,0.11890747152019708055,-1.1921153847567595995,0.00000000000000000000,1.00000000000000000000,0.00018084119877233612,-0.0012145278895877474,0.99999924610894896925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.797095875421973687,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -67 ,1 ,0.11890747152019708055,-1.1921153847567595995,1000.00000000000000000,0.00000000000000000000,0.00018084119877233612,-0.0012145278895877474,0.99999924610894896925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.797095875421973687,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -68 ,0 ,1.32265381648594892993,0.73352131742713910789,0.00000000000000000000,1.00000000000000000000,0.00129511654073349554,0.00076109576389209979,0.99999887170255563617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32792680095519699,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -68 ,1 ,1.32265381648594892993,0.73352131742713910789,1000.00000000000000000,0.00000000000000000000,0.00129511654073349554,0.00076109576389209979,0.99999887170255563617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32792680095519699,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -69 ,0 ,0.94584093436695526602,-1.3666366437469541494,0.00000000000000000000,1.00000000000000000000,0.00088467575533312864,-0.0013948554369992089,0.99999863586262849324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.45606075142950430,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -69 ,1 ,0.94584093436695526602,-1.3666366437469541494,1000.00000000000000000,0.00000000000000000000,0.00088467575533312864,-0.0013948554369992089,0.99999863586262849324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.45606075142950430,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -70 ,0 ,2.08453918437952667730,1.40035435615291636857,0.00000000000000000000,1.00000000000000000000,0.00216105894451558595,0.00142216208391018699,0.99999665363402368001,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.844652218518149311,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -70 ,1 ,2.08453918437952667730,1.40035435615291636857,1000.00000000000000000,0.00000000000000000000,0.00216105894451558595,0.00142216208391018699,0.99999665363402368001,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.844652218518149311,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -71 ,0 ,-0.4069753088334398527,-0.0380850055988729910,0.00000000000000000000,1.00000000000000000000,-0.0004644513129295223,-0.0001104810191282935,0.99999988603945466625,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.914338366897368359,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -71 ,1 ,-0.4069753088334398527,-0.0380850055988729910,1000.00000000000000000,0.00000000000000000000,-0.0004644513129295223,-0.0001104810191282935,0.99999988603945466625,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.914338366897368359,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -72 ,0 ,-0.3242418849809126646,-0.4467221357914749613,0.00000000000000000000,1.00000000000000000000,-0.0002441435275330030,-0.0004726796610111265,0.99999985848392802800,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.04188863744548143,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -72 ,1 ,-0.3242418849809126646,-0.4467221357914749613,1000.00000000000000000,0.00000000000000000000,-0.0002441435275330030,-0.0004726796610111265,0.99999985848392802800,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.04188863744548143,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -73 ,0 ,0.54795736024740759884,0.26422237465476122730,0.00000000000000000000,1.00000000000000000000,0.00050976502655702613,0.00027086213819938235,0.99999983338664599763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.594815903122594136,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -73 ,1 ,0.54795736024740759884,0.26422237465476122730,1000.00000000000000000,0.00000000000000000000,0.00050976502655702613,0.00027086213819938235,0.99999983338664599763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.594815903122594136,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -74 ,0 ,-1.3838907911750455426,0.56183783660451214192,0.00000000000000000000,1.00000000000000000000,-0.0012835147329476723,0.00045182009547032854,0.99999907422383726984,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.40648319211277339,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -74 ,1 ,-1.3838907911750455426,0.56183783660451214192,1000.00000000000000000,0.00000000000000000000,-0.0012835147329476723,0.00045182009547032854,0.99999907422383726984,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.40648319211277339,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -75 ,0 ,-1.6655895380302467856,0.03336220469314755965,0.00000000000000000000,1.00000000000000000000,-0.0015909603563935301,0.00004301689647944952,0.99999873349654355703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47799516981490342,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -75 ,1 ,-1.6655895380302467856,0.03336220469314755965,1000.00000000000000000,0.00000000000000000000,-0.0015909603563935301,0.00004301689647944952,0.99999873349654355703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47799516981490342,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -76 ,0 ,-0.7296919625333230241,-0.5155082677398084012,0.00000000000000000000,1.00000000000000000000,-0.0006826033172506007,-0.0004958732562483936,0.99999964408114916381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.871413030342637284,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -76 ,1 ,-0.7296919625333230241,-0.5155082677398084012,1000.00000000000000000,0.00000000000000000000,-0.0006826033172506007,-0.0004958732562483936,0.99999964408114916381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.871413030342637284,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -77 ,0 ,-0.5401182505938457723,0.62777631819664181378,0.00000000000000000000,1.00000000000000000000,-0.0005820398418553848,0.00068832697304810276,0.99999959371771773852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32296687073653629,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -77 ,1 ,-0.5401182505938457723,0.62777631819664181378,1000.00000000000000000,0.00000000000000000000,-0.0005820398418553848,0.00068832697304810276,0.99999959371771773852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32296687073653629,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -78 ,0 ,0.98397114436807853188,0.65933452354979948939,0.00000000000000000000,1.00000000000000000000,0.00098487746168404786,0.00062226109014273587,0.99999932140353031684,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12866059580369437,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -78 ,1 ,0.98397114436807853188,0.65933452354979948939,1000.00000000000000000,0.00000000000000000000,0.00098487746168404786,0.00062226109014273587,0.99999932140353031684,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12866059580369437,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -79 ,0 ,0.03264102177293599915,0.04955095577989235278,0.00000000000000000000,1.00000000000000000000,0.00005542406252287200,0.00004796526416486207,0.99999999731375333045,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.07100866030236829,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -79 ,1 ,0.03264102177293599915,0.04955095577989235278,1000.00000000000000000,0.00000000000000000000,0.00005542406252287200,0.00004796526416486207,0.99999999731375333045,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.07100866030236829,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -80 ,0 ,-0.5447107265508674966,0.45709242085101681185,0.00000000000000000000,1.00000000000000000000,-0.0004450758993624834,0.00047478836824383296,0.99999978824170221436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.994959381612602555,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -80 ,1 ,-0.5447107265508674966,0.45709242085101681185,1000.00000000000000000,0.00000000000000000000,-0.0004450758993624834,0.00047478836824383296,0.99999978824170221436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.994959381612602555,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -81 ,0 ,-1.3159830892265409474,-0.2038041873885136912,0.00000000000000000000,1.00000000000000000000,-0.0013400320074743615,-0.0002555568776573170,0.99999906950201766786,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.49009330711078291,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -81 ,1 ,-1.3159830892265409474,-0.2038041873885136912,1000.00000000000000000,0.00000000000000000000,-0.0013400320074743615,-0.0002555568776573170,0.99999906950201766786,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.49009330711078291,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -82 ,0 ,0.92426414986894955827,1.04744241302273821681,0.00000000000000000000,1.00000000000000000000,0.00083001729408805973,0.00105360167614902818,0.99999910049699525238,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.550291947709524720,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -82 ,1 ,0.92426414986894955827,1.04744241302273821681,1000.00000000000000000,0.00000000000000000000,0.00083001729408805973,0.00105360167614902818,0.99999910049699525238,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.550291947709524720,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -83 ,0 ,0.78080121015752335100,-0.2568587679963587055,0.00000000000000000000,1.00000000000000000000,0.00071165003959696880,-0.0002067030863929171,0.99999972541398995939,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.17161008622281315,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -83 ,1 ,0.78080121015752335100,-0.2568587679963587055,1000.00000000000000000,0.00000000000000000000,0.00071165003959696880,-0.0002067030863929171,0.99999972541398995939,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.17161008622281315,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -84 ,0 ,2.39842212411325306220,-1.1510856808509866144,0.00000000000000000000,1.00000000000000000000,0.00238875458607482700,-0.0011713998243742561,0.99999646083072657454,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.41233452966719141,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -84 ,1 ,2.39842212411325306220,-1.1510856808509866144,1000.00000000000000000,0.00000000000000000000,0.00238875458607482700,-0.0011713998243742561,0.99999646083072657454,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.41233452966719141,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -85 ,0 ,2.09719206044459616222,0.39217859604741583945,0.00000000000000000000,1.00000000000000000000,0.00203118663636463192,0.00039649320596414730,0.99999785853469991270,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.614436455609165932,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -85 ,1 ,2.09719206044459616222,0.39217859604741583945,1000.00000000000000000,0.00000000000000000000,0.00203118663636463192,0.00039649320596414730,0.99999785853469991270,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.614436455609165932,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -86 ,0 ,-2.0379453778828944265,-1.1142956025783143925,0.00000000000000000000,1.00000000000000000000,-0.0019895104228308596,-0.0011297691256858671,0.99999738273157490198,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.884398906303204057,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -86 ,1 ,-2.0379453778828944265,-1.1142956025783143925,1000.00000000000000000,0.00000000000000000000,-0.0019895104228308596,-0.0011297691256858671,0.99999738273157490198,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.884398906303204057,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -87 ,0 ,-2.2221363543113361593,-0.5772824515812883250,0.00000000000000000000,1.00000000000000000000,-0.0022322434790677000,-0.0005045075194250165,0.99999738127717763269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.680757830020866094,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -87 ,1 ,-2.2221363543113361593,-0.5772824515812883250,1000.00000000000000000,0.00000000000000000000,-0.0022322434790677000,-0.0005045075194250165,0.99999738127717763269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.680757830020866094,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -88 ,0 ,0.06899502188641938593,-1.0350850553824955113,0.00000000000000000000,1.00000000000000000000,0.00005380118861179269,-0.0010292321202283365,0.99999946889319635268,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12626038095640979,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -88 ,1 ,0.06899502188641938593,-1.0350850553824955113,1000.00000000000000000,0.00000000000000000000,0.00005380118861179269,-0.0010292321202283365,0.99999946889319635268,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12626038095640979,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -89 ,0 ,-2.1951824614942032631,0.35745149730564490520,0.00000000000000000000,1.00000000000000000000,-0.0022136378953403314,0.00036317053236873645,0.99999748395405108070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.749137231243025780,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -89 ,1 ,-2.1951824614942032631,0.35745149730564490520,1000.00000000000000000,0.00000000000000000000,-0.0022136378953403314,0.00036317053236873645,0.99999748395405108070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.749137231243025780,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -90 ,0 ,-1.9540578361717375610,0.20224266990360870166,0.00000000000000000000,1.00000000000000000000,-0.0019206639383721631,0.00021425101281859413,0.99999813257152603274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.07764555992525856,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -90 ,1 ,-1.9540578361717375610,0.20224266990360870166,1000.00000000000000000,0.00000000000000000000,-0.0019206639383721631,0.00021425101281859413,0.99999813257152603274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.07764555992525856,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -91 ,0 ,0.22078146898190109670,0.03687690546975989913,0.00000000000000000000,1.00000000000000000000,0.00022256382620524053,0.00013596715162152224,0.99999996598913787337,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.03137336779730048,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -91 ,1 ,0.22078146898190109670,0.03687690546975989913,1000.00000000000000000,0.00000000000000000000,0.00022256382620524053,0.00013596715162152224,0.99999996598913787337,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.03137336779730048,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -92 ,0 ,-0.1654499813753515791,-0.0827465214174573776,0.00000000000000000000,1.00000000000000000000,-0.0002249006518194522,-0.0000814146187858942,0.99999997139567797788,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.753983722919997489,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -92 ,1 ,-0.1654499813753515791,-0.0827465214174573776,1000.00000000000000000,0.00000000000000000000,-0.0002249006518194522,-0.0000814146187858942,0.99999997139567797788,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.753983722919997489,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -93 ,0 ,-0.0021580378342530830,1.64854046404500431677,0.00000000000000000000,1.00000000000000000000,0.00008803766096529720,0.00159420542139942860,0.99999872537840994723,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.632675023579508888,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -93 ,1 ,-0.0021580378342530830,1.64854046404500431677,1000.00000000000000000,0.00000000000000000000,0.00008803766096529720,0.00159420542139942860,0.99999872537840994723,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.632675023579508888,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -94 ,0 ,1.19793906877164912927,-0.4718622440529978145,0.00000000000000000000,1.00000000000000000000,0.00100629528758512860,-0.0004623640534316621,0.99999938679445010691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.45745356998736497,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -94 ,1 ,1.19793906877164912927,-0.4718622440529978145,1000.00000000000000000,0.00000000000000000000,0.00100629528758512860,-0.0004623640534316621,0.99999938679445010691,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.45745356998736497,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -95 ,0 ,0.57871398906186477528,-0.2238900879201877469,0.00000000000000000000,1.00000000000000000000,0.00057199701723625027,-0.0002221862834076512,0.99999981172631613457,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.946333983765384800,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -95 ,1 ,0.57871398906186477528,-0.2238900879201877469,1000.00000000000000000,0.00000000000000000000,0.00057199701723625027,-0.0002221862834076512,0.99999981172631613457,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.946333983765384800,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -96 ,0 ,-0.7612365363911161031,0.30659328003550390118,0.00000000000000000000,1.00000000000000000000,-0.0007741508019879976,0.00031598031540485419,0.99999965042342686682,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.04580852814774516,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -96 ,1 ,-0.7612365363911161031,0.30659328003550390118,1000.00000000000000000,0.00000000000000000000,-0.0007741508019879976,0.00031598031540485419,0.99999965042342686682,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.04580852814774516,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -97 ,0 ,-0.3825729369826243453,-0.2124654565857720389,0.00000000000000000000,1.00000000000000000000,-0.0003800887565084805,-0.0002980886823312195,0.99999988333783051963,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.21915350266044697,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -97 ,1 ,-0.3825729369826243453,-0.2124654565857720389,1000.00000000000000000,0.00000000000000000000,-0.0003800887565084805,-0.0002980886823312195,0.99999988333783051963,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.21915350266044697,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -98 ,0 ,-0.8829789714450672066,1.08370584632762767540,0.00000000000000000000,1.00000000000000000000,-0.0009466077942127096,0.00110350338890192155,0.99999894310641879169,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22367594657157496,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -98 ,1 ,-0.8829789714450672066,1.08370584632762767540,1000.00000000000000000,0.00000000000000000000,-0.0009466077942127096,0.00110350338890192155,0.99999894310641879169,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22367594657157496,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -99 ,0 ,-0.1474668622954377894,0.01008611097185791762,0.00000000000000000000,1.00000000000000000000,-0.0001595040788485187,0.00001422993553839629,0.99999998717797877745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.42227818685103102,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -99 ,1 ,-0.1474668622954377894,0.01008611097185791762,1000.00000000000000000,0.00000000000000000000,-0.0001595040788485187,0.00001422993553839629,0.99999998717797877745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.42227818685103102,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -100 ,0 ,-0.0603262639038006226,0.50446361388396288027,0.00000000000000000000,1.00000000000000000000,-0.0001142735496553844,0.00051267018153745326,0.99999986205541091521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.19061035758807065,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -100 ,1 ,-0.0603262639038006226,0.50446361388396288027,1000.00000000000000000,0.00000000000000000000,-0.0001142735496553844,0.00051267018153745326,0.99999986205541091521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.19061035758807065,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -101 ,0 ,-0.6156483108968968664,0.29316741609214913566,0.00000000000000000000,1.00000000000000000000,-0.0006988564399292118,0.00027792160833836051,0.99999971717958802130,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.677745486645449091,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -101 ,1 ,-0.6156483108968968664,0.29316741609214913566,1000.00000000000000000,0.00000000000000000000,-0.0006988564399292118,0.00027792160833836051,0.99999971717958802130,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.677745486645449091,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -102 ,0 ,1.32456890192451814947,0.55396745248067802425,0.00000000000000000000,1.00000000000000000000,0.00126896438936705056,0.00050835114686429512,0.99999906565380858314,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.568205460351236979,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -102 ,1 ,1.32456890192451814947,0.55396745248067802425,1000.00000000000000000,0.00000000000000000000,0.00126896438936705056,0.00050835114686429512,0.99999906565380858314,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.568205460351236979,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -103 ,0 ,-1.5396019109354142084,-0.1496533342816879219,0.00000000000000000000,1.00000000000000000000,-0.0013913073566147135,-0.0001593510202706875,0.99999901943506508406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.690426933986827862,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -103 ,1 ,-1.5396019109354142084,-0.1496533342816879219,1000.00000000000000000,0.00000000000000000000,-0.0013913073566147135,-0.0001593510202706875,0.99999901943506508406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.690426933986827862,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -104 ,0 ,0.54678213455293844802,0.48814011557159348031,0.00000000000000000000,1.00000000000000000000,0.00054721486465063133,0.00053187034154602620,0.99999970883487354633,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.530376631636499951,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -104 ,1 ,0.54678213455293844802,0.48814011557159348031,1000.00000000000000000,0.00000000000000000000,0.00054721486465063133,0.00053187034154602620,0.99999970883487354633,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.530376631636499951,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -105 ,0 ,-0.1152209066197300568,-2.0994739425787463105,0.00000000000000000000,1.00000000000000000000,-0.0001930662768033853,-0.0021343629824942780,0.99999770360739914654,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22888984632936626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -105 ,1 ,-0.1152209066197300568,-2.0994739425787463105,1000.00000000000000000,0.00000000000000000000,-0.0001930662768033853,-0.0021343629824942780,0.99999770360739914654,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22888984632936626,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -106 ,0 ,-0.1491554478290753327,0.93244407003061557936,0.00000000000000000000,1.00000000000000000000,-0.0001083420673039859,0.00093290750811767626,0.99999955897269154903,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.503803976805897946,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -106 ,1 ,-0.1491554478290753327,0.93244407003061557936,1000.00000000000000000,0.00000000000000000000,-0.0001083420673039859,0.00093290750811767626,0.99999955897269154903,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.503803976805897946,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -107 ,0 ,-0.0173663832416336497,-0.3684789010119428054,0.00000000000000000000,1.00000000000000000000,-0.0000183363254805070,-0.0003519573512776842,0.99999993789489916018,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25271401706584128,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -107 ,1 ,-0.0173663832416336497,-0.3684789010119428054,1000.00000000000000000,0.00000000000000000000,-0.0000183363254805070,-0.0003519573512776842,0.99999993789489916018,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25271401706584128,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -108 ,0 ,0.93577121833889109758,-0.0286036256160615703,0.00000000000000000000,1.00000000000000000000,0.00093860170741715432,-0.0000392201299542482,0.99999955874421075918,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.27179856995644513,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -108 ,1 ,0.93577121833889109758,-0.0286036256160615703,1000.00000000000000000,0.00000000000000000000,0.00093860170741715432,-0.0000392201299542482,0.99999955874421075918,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.27179856995644513,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -109 ,0 ,0.34075089129921343200,1.21278330064369566088,0.00000000000000000000,1.00000000000000000000,0.00035171408412968600,0.00113035054813297500,0.99999929930217523743,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.829127380236513999,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -109 ,1 ,0.34075089129921343200,1.21278330064369566088,1000.00000000000000000,0.00000000000000000000,0.00035171408412968600,0.00113035054813297500,0.99999929930217523743,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.829127380236513999,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -110 ,0 ,0.10687739901674066234,-0.9044179142900956591,0.00000000000000000000,1.00000000000000000000,0.00013327452176803520,-0.0009136305780599550,0.99999957375844339413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.948519383032930818,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -110 ,1 ,0.10687739901674066234,-0.9044179142900956591,1000.00000000000000000,0.00000000000000000000,0.00013327452176803520,-0.0009136305780599550,0.99999957375844339413,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.948519383032930818,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -111 ,0 ,-0.7002075067655183504,-0.2416104847479868533,0.00000000000000000000,1.00000000000000000000,-0.0006259573049297531,-0.0001619677993512259,0.99999979097192037702,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47142645017459017,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -111 ,1 ,-0.7002075067655183504,-0.2416104847479868533,1000.00000000000000000,0.00000000000000000000,-0.0006259573049297531,-0.0001619677993512259,0.99999979097192037702,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.47142645017459017,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -112 ,0 ,-1.1085517044286259391,-2.8302387579938095285,0.00000000000000000000,1.00000000000000000000,-0.0011265952731726901,-0.0028868975308952811,0.99999519829134009274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.36843200557927957,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -112 ,1 ,-1.1085517044286259391,-2.8302387579938095285,1000.00000000000000000,0.00000000000000000000,-0.0011265952731726901,-0.0028868975308952811,0.99999519829134009274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.36843200557927957,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -113 ,0 ,-1.4321251743169440828,0.01482061266824478799,0.00000000000000000000,1.00000000000000000000,-0.0013883939739688824,0.00006632721506343647,0.99999903398097023110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.06349115286241158,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -113 ,1 ,-1.4321251743169440828,0.01482061266824478799,1000.00000000000000000,0.00000000000000000000,-0.0013883939739688824,0.00006632721506343647,0.99999903398097023110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.06349115286241158,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -114 ,0 ,-0.2472896183592099561,0.98737930139752494440,0.00000000000000000000,1.00000000000000000000,-0.0001758175652766191,0.00096365224998128465,0.99999952023114735411,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10393703223826378,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -114 ,1 ,-0.2472896183592099561,0.98737930139752494440,1000.00000000000000000,0.00000000000000000000,-0.0001758175652766191,0.00096365224998128465,0.99999952023114735411,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10393703223826378,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -115 ,0 ,1.51043377551021396065,-0.2169311989335328816,0.00000000000000000000,1.00000000000000000000,0.00150505175241432884,-0.0001412135882759790,0.99999885743831984363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.574554451124072329,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -115 ,1 ,1.51043377551021396065,-0.2169311989335328816,1000.00000000000000000,0.00000000000000000000,0.00150505175241432884,-0.0001412135882759790,0.99999885743831984363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.574554451124072329,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -116 ,0 ,-0.7607180071865433657,-0.3846649619431722344,0.00000000000000000000,1.00000000000000000000,-0.0008384697626784454,-0.0003788335151369918,0.99999957672672279418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00780518040505739,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -116 ,1 ,-0.7607180071865433657,-0.3846649619431722344,1000.00000000000000000,0.00000000000000000000,-0.0008384697626784454,-0.0003788335151369918,0.99999957672672279418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.00780518040505739,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -117 ,0 ,-1.6330979464376105259,1.65895347479569199578,0.00000000000000000000,1.00000000000000000000,-0.0015727734524358632,0.00174666367128369689,0.99999723777102833555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.37388353762310089,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -117 ,1 ,-1.6330979464376105259,1.65895347479569199578,1000.00000000000000000,0.00000000000000000000,-0.0015727734524358632,0.00174666367128369689,0.99999723777102833555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.37388353762310089,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -118 ,0 ,0.28702839616850639448,1.25521152545001446476,0.00000000000000000000,1.00000000000000000000,0.00032863511558845875,0.00123876511087269857,0.99999917872964327880,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31894145141211538,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -118 ,1 ,0.28702839616850639448,1.25521152545001446476,1000.00000000000000000,0.00000000000000000000,0.00032863511558845875,0.00123876511087269857,0.99999917872964327880,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31894145141211538,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -119 ,0 ,1.02367781838379978687,-0.2616809369357491754,0.00000000000000000000,1.00000000000000000000,0.00110238149033753721,-0.0002970326596745579,0.99999934826311198676,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32833208015904347,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -119 ,1 ,1.02367781838379978687,-0.2616809369357491754,1000.00000000000000000,0.00000000000000000000,0.00110238149033753721,-0.0002970326596745579,0.99999934826311198676,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32833208015904347,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -120 ,0 ,-2.0783712518146324477,2.06268688814147260757,0.00000000000000000000,1.00000000000000000000,-0.0020087605156341244,0.00209881107487270906,0.99999577992772692436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32721096252669212,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -120 ,1 ,-2.0783712518146324477,2.06268688814147260757,1000.00000000000000000,0.00000000000000000000,-0.0020087605156341244,0.00209881107487270906,0.99999577992772692436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32721096252669212,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -121 ,0 ,-0.4242820676737372176,0.62108500633306584770,0.00000000000000000000,1.00000000000000000000,-0.0003742399542581290,0.00056506960190200498,0.99999977032037457025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.13595985044628378,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -121 ,1 ,-0.4242820676737372176,0.62108500633306584770,1000.00000000000000000,0.00000000000000000000,-0.0003742399542581290,0.00056506960190200498,0.99999977032037457025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.13595985044628378,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -122 ,0 ,0.42516837882992075670,2.20498683036771003784,0.00000000000000000000,1.00000000000000000000,0.00028687047624722535,0.00223184502898915665,0.99999746828334334924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.874631009157155858,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -122 ,1 ,0.42516837882992075670,2.20498683036771003784,1000.00000000000000000,0.00000000000000000000,0.00028687047624722535,0.00223184502898915665,0.99999746828334334924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.874631009157155858,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -123 ,0 ,-0.6427675255254926556,-0.4715472174206579158,0.00000000000000000000,1.00000000000000000000,-0.0006236996913295527,-0.0005659911019849165,0.99999964532632090730,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22347710537758302,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -123 ,1 ,-0.6427675255254926556,-0.4715472174206579158,1000.00000000000000000,0.00000000000000000000,-0.0006236996913295527,-0.0005659911019849165,0.99999964532632090730,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22347710537758302,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -124 ,0 ,0.18036590550494269180,-0.1737701892963341709,0.00000000000000000000,1.00000000000000000000,0.00006130244453754971,-0.0001048789176421406,0.99999999262121141985,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12953527676654630,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -124 ,1 ,0.18036590550494269180,-0.1737701892963341709,1000.00000000000000000,0.00000000000000000000,0.00006130244453754971,-0.0001048789176421406,0.99999999262121141985,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.12953527676654630,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -125 ,0 ,1.02164219992728022567,-1.5494571188910311043,0.00000000000000000000,1.00000000000000000000,0.00111194454540221462,-0.0015406862648384648,0.99999819493095154498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.754333684966582040,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -125 ,1 ,1.02164219992728022567,-1.5494571188910311043,1000.00000000000000000,0.00000000000000000000,0.00111194454540221462,-0.0015406862648384648,0.99999819493095154498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.754333684966582040,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -126 ,0 ,1.39900747398519786912,-1.0922357013441630346,0.00000000000000000000,1.00000000000000000000,0.00141957046160898063,-0.0011027711683089522,0.99999838435642218748,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.989938187644952449,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -126 ,1 ,1.39900747398519786912,-1.0922357013441630346,1000.00000000000000000,0.00000000000000000000,0.00141957046160898063,-0.0011027711683089522,0.99999838435642218748,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.989938187644952449,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -127 ,0 ,0.52627552313479031287,0.09224830652260497532,0.00000000000000000000,1.00000000000000000000,0.00057630421925416270,0.00012806267406872135,0.99999982573668388941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25770380205483434,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -127 ,1 ,0.52627552313479031287,0.09224830652260497532,1000.00000000000000000,0.00000000000000000000,0.00057630421925416270,0.00012806267406872135,0.99999982573668388941,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25770380205483434,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -128 ,0 ,0.04966782196664952520,1.49040844754269263816,0.00000000000000000000,1.00000000000000000000,0.00021685630376955947,0.00145749671723349001,0.99999891433774201754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.28963796892878690,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -128 ,1 ,0.04966782196664952520,1.49040844754269263816,1000.00000000000000000,0.00000000000000000000,0.00021685630376955947,0.00145749671723349001,0.99999891433774201754,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.28963796892878690,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -129 ,0 ,-1.1874054217342067119,0.36820714322833242304,0.00000000000000000000,1.00000000000000000000,-0.0011703594787441187,0.00040858821713569173,0.99999923165688453519,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.821665888738380090,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -129 ,1 ,-1.1874054217342067119,0.36820714322833242304,1000.00000000000000000,0.00000000000000000000,-0.0011703594787441187,0.00040858821713569173,0.99999923165688453519,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.821665888738380090,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -130 ,0 ,-1.3153011062132182740,0.65224169109521834553,0.00000000000000000000,1.00000000000000000000,-0.0011913735163205996,0.00065598641242377352,0.99999907515505803701,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.914083651247779016,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -130 ,1 ,-1.3153011062132182740,0.65224169109521834553,1000.00000000000000000,0.00000000000000000000,-0.0011913735163205996,0.00065598641242377352,0.99999907515505803701,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.914083651247779016,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -131 ,0 ,-0.0578833854356642710,0.69642178075324812080,0.00000000000000000000,1.00000000000000000000,0.00003756605077242365,0.00072947559678418873,0.99999973322703716860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.13718451861541325,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -131 ,1 ,-0.0578833854356642710,0.69642178075324812080,1000.00000000000000000,0.00000000000000000000,0.00003756605077242365,0.00072947559678418873,0.99999973322703716860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.13718451861541325,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -132 ,0 ,0.23655954399227599460,-1.6974229447520072788,0.00000000000000000000,1.00000000000000000000,0.00032999638911670694,-0.0016944116407554288,0.99999851003467743471,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.895714996468768731,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -132 ,1 ,0.23655954399227599460,-1.6974229447520072788,1000.00000000000000000,0.00000000000000000000,0.00032999638911670694,-0.0016944116407554288,0.99999851003467743471,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.895714996468768731,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -133 ,0 ,0.46140041453821339922,-1.6274262969414239332,0.00000000000000000000,1.00000000000000000000,0.00054473895926402369,-0.0015600963940617651,0.99999863467842164954,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.34068441906561020,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -133 ,1 ,0.46140041453821339922,-1.6274262969414239332,1000.00000000000000000,0.00000000000000000000,0.00054473895926402369,-0.0015600963940617651,0.99999863467842164954,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.34068441906561020,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -134 ,0 ,-0.3224463755724100155,-1.1188216529804293486,0.00000000000000000000,1.00000000000000000000,-0.0004365826953249883,-0.0011285806606543147,0.99999926785035320175,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.42049870709684000,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -134 ,1 ,-0.3224463755724100155,-1.1188216529804293486,1000.00000000000000000,0.00000000000000000000,-0.0004365826953249883,-0.0011285806606543147,0.99999926785035320175,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.42049870709684000,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -135 ,0 ,0.54948684184325191637,-0.1496011492484608795,0.00000000000000000000,1.00000000000000000000,0.00053717693976299441,-0.0002162250248606715,0.99999983234382294750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10231207825052024,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -135 ,1 ,0.54948684184325191637,-0.1496011492484608795,1000.00000000000000000,0.00000000000000000000,0.00053717693976299441,-0.0002162250248606715,0.99999983234382294750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10231207825052024,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -136 ,0 ,-0.0345708724237000011,-0.4522761606790504096,0.00000000000000000000,1.00000000000000000000,-0.0000753576101162860,-0.0003864076782100584,0.99999992250516533953,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32918993294606480,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -136 ,1 ,-0.0345708724237000011,-0.4522761606790504096,1000.00000000000000000,0.00000000000000000000,-0.0000753576101162860,-0.0003864076782100584,0.99999992250516533953,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32918993294606480,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -137 ,0 ,1.72592087793923498750,-0.2435202456849825114,0.00000000000000000000,1.00000000000000000000,0.00179417075950594564,-0.0002016259117035014,0.99999837014781056687,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22165112177958690,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -137 ,1 ,1.72592087793923498750,-0.2435202456849825114,1000.00000000000000000,0.00000000000000000000,0.00179417075950594564,-0.0002016259117035014,0.99999837014781056687,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22165112177958690,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -138 ,0 ,-0.5760998064593531031,1.67032349258729517771,0.00000000000000000000,1.00000000000000000000,-0.0005523899245112957,0.00165401927701125427,0.99999847954164544638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.993910075778103418,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -138 ,1 ,-0.5760998064593531031,1.67032349258729517771,1000.00000000000000000,0.00000000000000000000,-0.0005523899245112957,0.00165401927701125427,0.99999847954164544638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.993910075778103418,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -139 ,0 ,-0.5122060777761603400,-1.7054535968306800963,0.00000000000000000000,1.00000000000000000000,-0.0005194447268289061,-0.0017594029672487699,0.99999831733777166942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.920444309644494751,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -139 ,1 ,-0.5122060777761603400,-1.7054535968306800963,1000.00000000000000000,0.00000000000000000000,-0.0005194447268289061,-0.0017594029672487699,0.99999831733777166942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.920444309644494751,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -140 ,0 ,-2.2998120460417958987,1.84475737879524737117,0.00000000000000000000,1.00000000000000000000,-0.0022388042909037716,0.00191071509547904232,0.99999566845220433375,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.16772799547175054,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -140 ,1 ,-2.2998120460417958987,1.84475737879524737117,1000.00000000000000000,0.00000000000000000000,-0.0022388042909037716,0.00191071509547904232,0.99999566845220433375,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.16772799547175054,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -141 ,0 ,0.87809365492342905668,-1.0874219316685163061,0.00000000000000000000,1.00000000000000000000,0.00087560637382764680,-0.0010636979090274795,0.99999905092966778763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.691074331518620965,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -141 ,1 ,0.87809365492342905668,-1.0874219316685163061,1000.00000000000000000,0.00000000000000000000,0.00087560637382764680,-0.0010636979090274795,0.99999905092966778763,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.691074331518620965,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -142 ,0 ,1.17294337967185335891,-0.4060547722081594423,0.00000000000000000000,1.00000000000000000000,0.00113714893279738007,-0.0003659030960984761,0.99999928650336000757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.02913732793012968,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -142 ,1 ,1.17294337967185335891,-0.4060547722081594423,1000.00000000000000000,0.00000000000000000000,0.00113714893279738007,-0.0003659030960984761,0.99999928650336000757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.02913732793012968,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -143 ,0 ,0.80490734205957281677,-1.8632321568375183051,0.00000000000000000000,1.00000000000000000000,0.00079057540889227741,-0.0018634786037395746,0.99999795121690926436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.537020924138232658,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -143 ,1 ,0.80490734205957281677,-1.8632321568375183051,1000.00000000000000000,0.00000000000000000000,0.00079057540889227741,-0.0018634786037395746,0.99999795121690926436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.537020924138232658,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -144 ,0 ,1.01209888758879862358,0.08382509522847159111,0.00000000000000000000,1.00000000000000000000,0.00100519304958020618,0.00013741150855588654,0.99999948535237281888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.43401861004849706,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -144 ,1 ,1.01209888758879862358,0.08382509522847159111,1000.00000000000000000,0.00000000000000000000,0.00100519304958020618,0.00013741150855588654,0.99999948535237281888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.43401861004849706,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -145 ,0 ,0.87243440763819013472,-0.5105776814637036364,0.00000000000000000000,1.00000000000000000000,0.00086518587207238975,-0.0005480645946984032,0.99999947553916579412,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.705256997936999141,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -145 ,1 ,0.87243440763819013472,-0.5105776814637036364,1000.00000000000000000,0.00000000000000000000,0.00086518587207238975,-0.0005480645946984032,0.99999947553916579412,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.705256997936999141,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -146 ,0 ,-0.5303079211674113224,-0.9505139623341494203,0.00000000000000000000,1.00000000000000000000,-0.0005784653185793286,-0.0009529707974413657,0.99999937861207410794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.835424063477489653,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -146 ,1 ,-0.5303079211674113224,-0.9505139623341494203,1000.00000000000000000,0.00000000000000000000,-0.0005784653185793286,-0.0009529707974413657,0.99999937861207410794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.835424063477489653,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -147 ,0 ,1.09975504878559982024,0.26697717018781080833,0.00000000000000000000,1.00000000000000000000,0.00112839324811603064,0.00028943128983041329,0.99999932147887282685,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.684078868843812415,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -147 ,1 ,1.09975504878559982024,0.26697717018781080833,1000.00000000000000000,0.00000000000000000000,0.00112839324811603064,0.00028943128983041329,0.99999932147887282685,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.684078868843812415,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -148 ,0 ,-1.1075701713126491210,0.97623855959239458357,0.00000000000000000000,1.00000000000000000000,-0.0010504439730581712,0.00103652087768188981,0.99999891109537197841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.753479253986824915,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -148 ,1 ,-1.1075701713126491210,0.97623855959239458357,1000.00000000000000000,0.00000000000000000000,-0.0010504439730581712,0.00103652087768188981,0.99999891109537197841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.753479253986824915,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -149 ,0 ,-0.9590031313109312893,-0.1124766118144637089,0.00000000000000000000,1.00000000000000000000,-0.0009358249929737988,-0.0000582338713146863,0.99999956042010273993,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.956886697174581968,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -149 ,1 ,-0.9590031313109312893,-0.1124766118144637089,1000.00000000000000000,0.00000000000000000000,-0.0009358249929737988,-0.0000582338713146863,0.99999956042010273993,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.956886697174581968,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -150 ,0 ,0.86958353310342051400,0.50516188875780876355,0.00000000000000000000,1.00000000000000000000,0.00099211273074085743,0.00051223305761451034,0.99999937666461791163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.872915206994207437,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -150 ,1 ,0.86958353310342051400,0.50516188875780876355,1000.00000000000000000,0.00000000000000000000,0.00099211273074085743,0.00051223305761451034,0.99999937666461791163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.872915206994207437,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -151 ,0 ,0.72102636353709592675,0.38538567169104409604,0.00000000000000000000,1.00000000000000000000,0.00068912931584655520,0.00042449033566020169,0.99999967245431686801,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.966866443830326716,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -151 ,1 ,0.72102636353709592675,0.38538567169104409604,1000.00000000000000000,0.00000000000000000000,0.00068912931584655520,0.00042449033566020169,0.99999967245431686801,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.966866443830326716,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -152 ,0 ,0.73625883515161882897,-0.4949540857609284194,0.00000000000000000000,1.00000000000000000000,0.00073416782473513303,-0.0004785254966934466,0.99999961600540332451,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25189495632014313,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -152 ,1 ,0.73625883515161882897,-0.4949540857609284194,1000.00000000000000000,0.00000000000000000000,0.00073416782473513303,-0.0004785254966934466,0.99999961600540332451,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25189495632014313,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -153 ,0 ,-0.6263524085509929451,-1.1980117384462851681,0.00000000000000000000,1.00000000000000000000,-0.0006111498823232647,-0.0011690127246862180,0.99999912995215689548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.624104083398606235,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -153 ,1 ,-0.6263524085509929451,-1.1980117384462851681,1000.00000000000000000,0.00000000000000000000,-0.0006111498823232647,-0.0011690127246862180,0.99999912995215689548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.624104083398606235,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -154 ,0 ,-0.7510724184302915995,1.33685438994740724005,0.00000000000000000000,1.00000000000000000000,-0.0006520965043689225,0.00135860532607777494,0.99999886448021368945,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.37364728085310616,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -154 ,1 ,-0.7510724184302915995,1.33685438994740724005,1000.00000000000000000,0.00000000000000000000,-0.0006520965043689225,0.00135860532607777494,0.99999886448021368945,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.37364728085310616,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -155 ,0 ,-0.8941736353637003142,-0.8656612108649162085,0.00000000000000000000,1.00000000000000000000,-0.0007681781898507246,-0.0008081164258645607,0.99999937842486230632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.778368872006012679,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -155 ,1 ,-0.8941736353637003142,-0.8656612108649162085,1000.00000000000000000,0.00000000000000000000,-0.0007681781898507246,-0.0008081164258645607,0.99999937842486230632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.778368872006012679,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -156 ,0 ,1.73592983449858406785,-0.6858358870394097861,0.00000000000000000000,1.00000000000000000000,0.00178640585047315329,-0.0006763397859771539,0.99999817565765158899,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25002574165023361,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -156 ,1 ,1.73592983449858406785,-0.6858358870394097861,1000.00000000000000000,0.00000000000000000000,0.00178640585047315329,-0.0006763397859771539,0.99999817565765158899,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25002574165023361,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -157 ,0 ,-0.2626041840059392673,0.29928702777356902542,0.00000000000000000000,1.00000000000000000000,-0.0002469378147658386,0.00029336826224570796,0.99999992647838642501,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.09922211357786636,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -157 ,1 ,-0.2626041840059392673,0.29928702777356902542,1000.00000000000000000,0.00000000000000000000,-0.0002469378147658386,0.00029336826224570796,0.99999992647838642501,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.09922211357786636,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -158 ,0 ,-0.3167609494714722084,0.06400787546781348813,0.00000000000000000000,1.00000000000000000000,-0.0004238190662400125,0.00003748094959009653,0.99999990948628469933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.994201828187101455,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -158 ,1 ,-0.3167609494714722084,0.06400787546781348813,1000.00000000000000000,0.00000000000000000000,-0.0004238190662400125,0.00003748094959009653,0.99999990948628469933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.994201828187101455,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -159 ,0 ,0.36908190689264908090,-0.1998650961692860772,0.00000000000000000000,1.00000000000000000000,0.00039747276604974192,-0.0002118889387020046,0.99999989855923376858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.934968256595425373,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -159 ,1 ,0.36908190689264908090,-0.1998650961692860772,1000.00000000000000000,0.00000000000000000000,0.00039747276604974192,-0.0002118889387020046,0.99999989855923376858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.934968256595425373,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -160 ,0 ,1.12668363282676353698,-0.8970225128427931071,0.00000000000000000000,1.00000000000000000000,0.00115819362913016556,-0.0009074153397321589,0.99999891759187353734,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.924793962925264168,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -160 ,1 ,1.12668363282676353698,-0.8970225128427931071,1000.00000000000000000,0.00000000000000000000,0.00115819362913016556,-0.0009074153397321589,0.99999891759187353734,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.924793962925264168,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -161 ,0 ,0.22483569004246750644,-0.8964250664117614508,0.00000000000000000000,1.00000000000000000000,0.00018459310523905755,-0.0009047415515184491,0.99999957368396441559,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.574857623563957531,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -161 ,1 ,0.22483569004246750644,-0.8964250664117614508,1000.00000000000000000,0.00000000000000000000,0.00018459310523905755,-0.0009047415515184491,0.99999957368396441559,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.574857623563957531,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -162 ,0 ,-0.1931323151243086733,0.20974211374092835424,0.00000000000000000000,1.00000000000000000000,-0.0001988089006670074,0.00020043168407771737,0.99999996015107972535,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.37537718399676123,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -162 ,1 ,-0.1931323151243086733,0.20974211374092835424,1000.00000000000000000,0.00000000000000000000,-0.0001988089006670074,0.00020043168407771737,0.99999996015107972535,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.37537718399676123,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -163 ,0 ,0.41790482346332769036,0.05513614526546858213,0.00000000000000000000,1.00000000000000000000,0.00040732352448121688,0.00008706625596953004,0.99999991325350301440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10108404947220606,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -163 ,1 ,0.41790482346332769036,0.05513614526546858213,1000.00000000000000000,0.00000000000000000000,0.00040732352448121688,0.00008706625596953004,0.99999991325350301440,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.10108404947220606,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -164 ,0 ,0.73944978209545086933,1.06189627253040486110,0.00000000000000000000,1.00000000000000000000,0.00072919568824619199,0.00116596892517173054,0.99999905439460978762,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.16744659094854341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -164 ,1 ,0.73944978209545086933,1.06189627253040486110,1000.00000000000000000,0.00000000000000000000,0.00072919568824619199,0.00116596892517173054,0.99999905439460978762,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.16744659094854341,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -165 ,0 ,-1.0526156847951111394,-0.7371665148604780171,0.00000000000000000000,1.00000000000000000000,-0.0010759665801535641,-0.0006801597715372904,0.99999918983897351232,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.15385708332269132,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -165 ,1 ,-1.0526156847951111394,-0.7371665148604780171,1000.00000000000000000,0.00000000000000000000,-0.0010759665801535641,-0.0006801597715372904,0.99999918983897351232,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.15385708332269132,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -166 ,0 ,0.70764957455189481105,1.68917335263883572338,0.00000000000000000000,1.00000000000000000000,0.00059748215510562277,0.00164558447850564424,0.99999846753222509931,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.36067599774537484,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -166 ,1 ,0.70764957455189481105,1.68917335263883572338,1000.00000000000000000,0.00000000000000000000,0.00059748215510562277,0.00164558447850564424,0.99999846753222509931,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.36067599774537484,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -167 ,0 ,0.26268498720822108793,0.17351716657381893726,0.00000000000000000000,1.00000000000000000000,0.00017885175482876348,0.00017984984618626666,0.99999996783304079261,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.13763827427555952,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -167 ,1 ,0.26268498720822108793,0.17351716657381893726,1000.00000000000000000,0.00000000000000000000,0.00017885175482876348,0.00017984984618626666,0.99999996783304079261,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.13763827427555952,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -168 ,0 ,-1.7833910721284178535,0.23652686230887556839,0.00000000000000000000,1.00000000000000000000,-0.0018272706020346287,0.00027250318638620649,0.99999829341062396181,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32367118070987999,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -168 ,1 ,-1.7833910721284178535,0.23652686230887556839,1000.00000000000000000,0.00000000000000000000,-0.0018272706020346287,0.00027250318638620649,0.99999829341062396181,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32367118070987999,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -169 ,0 ,-0.3190867513532913979,0.27307757631366497141,0.00000000000000000000,1.00000000000000000000,-0.0003745147221899521,0.00035985293913503972,0.99999986512228344892,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.503260553494442319,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -169 ,1 ,-0.3190867513532913979,0.27307757631366497141,1000.00000000000000000,0.00000000000000000000,-0.0003745147221899521,0.00035985293913503972,0.99999986512228344892,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.503260553494442319,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -170 ,0 ,-1.8658197946872974171,0.24401852596303333364,0.00000000000000000000,1.00000000000000000000,-0.0017445823091439059,0.00027112917851608076,0.99999844145955307794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.29165340176143672,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -170 ,1 ,-1.8658197946872974171,0.24401852596303333364,1000.00000000000000000,0.00000000000000000000,-0.0017445823091439059,0.00027112917851608076,0.99999844145955307794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.29165340176143672,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -171 ,0 ,-0.7212577688069411463,0.83752651953835688392,0.00000000000000000000,1.00000000000000000000,-0.0006375530281022329,0.00091149957211580879,0.99999938134714172477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.02855172478268741,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -171 ,1 ,-0.7212577688069411463,0.83752651953835688392,1000.00000000000000000,0.00000000000000000000,-0.0006375530281022329,0.00091149957211580879,0.99999938134714172477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.02855172478268741,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -172 ,0 ,-1.3624272544388282835,1.22142138540378675237,0.00000000000000000000,1.00000000000000000000,-0.0013520803212153666,0.00127101108527204469,0.99999827820333075933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.977331491938116414,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -172 ,1 ,-1.3624272544388282835,1.22142138540378675237,1000.00000000000000000,0.00000000000000000000,-0.0013520803212153666,0.00127101108527204469,0.99999827820333075933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.977331491938116414,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -173 ,0 ,0.01353739544861685614,-0.4237527656726442493,0.00000000000000000000,1.00000000000000000000,0.00000678829595763770,-0.0004851990063404724,0.99999988226791469703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31818964149999828,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -173 ,1 ,0.01353739544861685614,-0.4237527656726442493,1000.00000000000000000,0.00000000000000000000,0.00000678829595763770,-0.0004851990063404724,0.99999988226791469703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31818964149999828,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -174 ,0 ,2.67371116717622214764,-0.3676033882395243201,0.00000000000000000000,1.00000000000000000000,0.00268683260780566875,-0.0004193537040725902,0.99999630252966864585,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.859697409074328788,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -174 ,1 ,2.67371116717622214764,-0.3676033882395243201,1000.00000000000000000,0.00000000000000000000,0.00268683260780566875,-0.0004193537040725902,0.99999630252966864585,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.859697409074328788,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -175 ,0 ,0.02459844599824614549,2.56731284750729882304,0.00000000000000000000,1.00000000000000000000,-0.0000423874168204936,0.00254578000255407553,0.99999675859848935477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.844316951336168131,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -175 ,1 ,0.02459844599824614549,2.56731284750729882304,1000.00000000000000000,0.00000000000000000000,-0.0000423874168204936,0.00254578000255407553,0.99999675859848935477,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.844316951336168131,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -176 ,0 ,-0.5689354848898595662,1.09642598622943454600,0.00000000000000000000,1.00000000000000000000,-0.0006055999232185845,0.00113153236326868291,0.99999917644128277771,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.48111341509763860,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -176 ,1 ,-0.5689354848898595662,1.09642598622943454600,1000.00000000000000000,0.00000000000000000000,-0.0006055999232185845,0.00113153236326868291,0.99999917644128277771,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.48111341509763860,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -177 ,0 ,1.76961319770709568643,-0.7666202034943432330,0.00000000000000000000,1.00000000000000000000,0.00167744068256197339,-0.0007318029083495808,0.99999832532722765510,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.26349233504436142,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -177 ,1 ,1.76961319770709568643,-0.7666202034943432330,1000.00000000000000000,0.00000000000000000000,0.00167744068256197339,-0.0007318029083495808,0.99999832532722765510,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.26349233504436142,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -178 ,0 ,0.52580761212979276741,-1.2686540527361578334,0.00000000000000000000,1.00000000000000000000,0.00056778664841427033,-0.0012768826469575216,0.99999902359403725071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.670756224571050552,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -178 ,1 ,0.52580761212979276741,-1.2686540527361578334,1000.00000000000000000,0.00000000000000000000,0.00056778664841427033,-0.0012768826469575216,0.99999902359403725071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.670756224571050552,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -179 ,0 ,-0.2923529042405514921,1.94438582133221005143,0.00000000000000000000,1.00000000000000000000,-0.0001961528976255865,0.00197325755463025661,0.99999803388739905152,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.605629515649525274,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -179 ,1 ,-0.2923529042405514921,1.94438582133221005143,1000.00000000000000000,0.00000000000000000000,-0.0001961528976255865,0.00197325755463025661,0.99999803388739905152,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.605629515649525274,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -180 ,0 ,-0.3086215062055968072,0.72476563901371571230,0.00000000000000000000,1.00000000000000000000,-0.0003751187601797995,0.00064729839471593022,0.99999972014531290920,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31884450879590531,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -180 ,1 ,-0.3086215062055968072,0.72476563901371571230,1000.00000000000000000,0.00000000000000000000,-0.0003751187601797995,0.00064729839471593022,0.99999972014531290920,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.31884450879590531,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -181 ,0 ,-0.8814667034052865446,-0.7648785614257626042,0.00000000000000000000,1.00000000000000000000,-0.0009075395184941109,-0.0007467742297933565,0.99999930934989755826,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.15887340612960088,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -181 ,1 ,-0.8814667034052865446,-0.7648785614257626042,1000.00000000000000000,0.00000000000000000000,-0.0009075395184941109,-0.0007467742297933565,0.99999930934989755826,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.15887340612960088,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -182 ,0 ,-0.6439925250011047097,-0.1678659957010294467,0.00000000000000000000,1.00000000000000000000,-0.0007092832525992439,-0.0001993934485842573,0.99999972857972330153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.876122480299954986,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -182 ,1 ,-0.6439925250011047097,-0.1678659957010294467,1000.00000000000000000,0.00000000000000000000,-0.0007092832525992439,-0.0001993934485842573,0.99999972857972330153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.876122480299954986,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -183 ,0 ,1.54655297447042761049,-0.1245570105420309159,0.00000000000000000000,1.00000000000000000000,0.00149341283062951434,-0.0001365273799193438,0.99999887553856381394,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.552670654085886781,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -183 ,1 ,1.54655297447042761049,-0.1245570105420309159,1000.00000000000000000,0.00000000000000000000,0.00149341283062951434,-0.0001365273799193438,0.99999887553856381394,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.552670654085886781,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -184 ,0 ,-1.3329193804921237731,-0.2286652937479626834,0.00000000000000000000,1.00000000000000000000,-0.0013018178875449034,-0.0002765251364048309,0.99999911440162614351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.606333023123511338,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -184 ,1 ,-1.3329193804921237731,-0.2286652937479626834,1000.00000000000000000,0.00000000000000000000,-0.0013018178875449034,-0.0002765251364048309,0.99999911440162614351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.606333023123511338,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -185 ,0 ,0.15000362360782232284,0.77853052941398059871,0.00000000000000000000,1.00000000000000000000,0.00032855782265182767,0.00078194856397054233,0.99999964030303556405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.958725470908234456,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -185 ,1 ,0.15000362360782232284,0.77853052941398059871,1000.00000000000000000,0.00000000000000000000,0.00032855782265182767,0.00078194856397054233,0.99999964030303556405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.958725470908234456,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -186 ,0 ,-0.7563893916945209072,-0.9405955851449694371,0.00000000000000000000,1.00000000000000000000,-0.0006776593335579426,-0.0009198627224375874,0.99999934731498674178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.516250188631374840,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -186 ,1 ,-0.7563893916945209072,-0.9405955851449694371,1000.00000000000000000,0.00000000000000000000,-0.0006776593335579426,-0.0009198627224375874,0.99999934731498674178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.516250188631374840,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -187 ,0 ,-1.0917483323401608874,-0.7719766219255630446,0.00000000000000000000,1.00000000000000000000,-0.0010494489394910616,-0.0008221179929434755,0.99999911138906971697,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.586589436784038298,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -187 ,1 ,-1.0917483323401608874,-0.7719766219255630446,1000.00000000000000000,0.00000000000000000000,-0.0010494489394910616,-0.0008221179929434755,0.99999911138906971697,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.586589436784038298,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -188 ,0 ,1.48797525363940508214,0.07771899093101182487,0.00000000000000000000,1.00000000000000000000,0.00139277864426614900,0.00011371991506157912,0.99999902361723780330,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.849555845486065663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -188 ,1 ,1.48797525363940508214,0.07771899093101182487,1000.00000000000000000,0.00000000000000000000,0.00139277864426614900,0.00011371991506157912,0.99999902361723780330,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.849555845486065663,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -189 ,0 ,0.11976349854686918483,0.05112685162775231634,0.00000000000000000000,1.00000000000000000000,-0.0000046598493032417,0.00005800022031752912,0.99999999830713015569,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.599983046532656771,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -189 ,1 ,0.11976349854686918483,0.05112685162775231634,1000.00000000000000000,0.00000000000000000000,-0.0000046598493032417,0.00005800022031752912,0.99999999830713015569,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.599983046532656771,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -190 ,0 ,-1.1327254351856947955,-0.2585808753439884921,0.00000000000000000000,1.00000000000000000000,-0.0010883746343630003,-0.0002224026824093203,0.99999938298866075658,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32524593622986230,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -190 ,1 ,-1.1327254351856947955,-0.2585808753439884921,1000.00000000000000000,0.00000000000000000000,-0.0010883746343630003,-0.0002224026824093203,0.99999938298866075658,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.32524593622986230,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -191 ,0 ,0.32431671587864413508,-1.8718525438505440039,0.00000000000000000000,1.00000000000000000000,0.00031237875729571358,-0.0018305909119021180,0.99999827567672594508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.45475913605855566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -191 ,1 ,0.32431671587864413508,-1.8718525438505440039,1000.00000000000000000,0.00000000000000000000,0.00031237875729571358,-0.0018305909119021180,0.99999827567672594508,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.45475913605855566,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -192 ,0 ,-1.3331937119878281006,-0.7095084348704514543,0.00000000000000000000,1.00000000000000000000,-0.0014551620659826831,-0.0007146138818031683,0.99999868591431750886,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25596530699226605,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -192 ,1 ,-1.3331937119878281006,-0.7095084348704514543,1000.00000000000000000,0.00000000000000000000,-0.0014551620659826831,-0.0007146138818031683,0.99999868591431750886,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.25596530699226605,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -193 ,0 ,-0.8899978158793553362,-1.0186073360776866092,0.00000000000000000000,1.00000000000000000000,-0.0009703997640205161,-0.0010126209311497776,0.99999901646109012887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.20386202687438981,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -193 ,1 ,-0.8899978158793553362,-1.0186073360776866092,1000.00000000000000000,0.00000000000000000000,-0.0009703997640205161,-0.0010126209311497776,0.99999901646109012887,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.20386202687438981,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -194 ,0 ,-2.4944757955006613414,0.22830832438270431961,0.00000000000000000000,1.00000000000000000000,-0.0025514864183554890,0.00021880240996159563,0.99999672101590530992,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.770706137536080859,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -194 ,1 ,-2.4944757955006613414,0.22830832438270431961,1000.00000000000000000,0.00000000000000000000,-0.0025514864183554890,0.00021880240996159563,0.99999672101590530992,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,999.770706137536080859,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -195 ,0 ,0.62889122764706373303,-1.1154250979477629002,0.00000000000000000000,1.00000000000000000000,0.00057279140119570969,-0.0011370816524773541,0.99999918947733468232,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.44938507738379485,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -195 ,1 ,0.62889122764706373303,-1.1154250979477629002,1000.00000000000000000,0.00000000000000000000,0.00057279140119570969,-0.0011370816524773541,0.99999918947733468232,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.44938507738379485,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -196 ,0 ,-0.7489040295563595961,1.32717851469182979151,0.00000000000000000000,1.00000000000000000000,-0.0006798817059735764,0.00135512108206687644,0.99999885070319882718,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.39455149500838615,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -196 ,1 ,-0.7489040295563595961,1.32717851469182979151,1000.00000000000000000,0.00000000000000000000,-0.0006798817059735764,0.00135512108206687644,0.99999885070319882718,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.39455149500838615,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -197 ,0 ,0.53632557043256889883,-1.5151579779707222694,0.00000000000000000000,1.00000000000000000000,0.00055781382481424077,-0.0014868773894378586,0.99999873901888780558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.06643372750829712,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -197 ,1 ,0.53632557043256889883,-1.5151579779707222694,1000.00000000000000000,0.00000000000000000000,0.00055781382481424077,-0.0014868773894378586,0.99999873901888780558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.06643372750829712,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -198 ,0 ,-0.5202647065843338802,-0.7856201136795475381,0.00000000000000000000,1.00000000000000000000,-0.0005636253851618358,-0.0008188746940756027,0.99999950588520825078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22834908361619454,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -198 ,1 ,-0.5202647065843338802,-0.7856201136795475381,1000.00000000000000000,0.00000000000000000000,-0.0005636253851618358,-0.0008188746940756027,0.99999950588520825078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.22834908361619454,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -199 ,0 ,-1.2096803958756046082,0.13276527669827406508,0.00000000000000000000,1.00000000000000000000,-0.0012594018072288333,0.00011657322022616087,0.99999920015856635924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.36398150097727466,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 -199 ,1 ,-1.2096803958756046082,0.13276527669827406508,1000.00000000000000000,0.00000000000000000000,-0.0012594018072288333,0.00011657322022616087,0.99999920015856635924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1000.36398150097727466,0.00000000000000000000,1.00000000000000000000,1.00000000000000000000 diff --git a/Intern/RAY-Core/tests/output/ReflectionZonePlateAzim200.rayui.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateAzim200.rayui.csv deleted file mode 100644 index a9ca42020..000000000 --- a/Intern/RAY-Core/tests/output/ReflectionZonePlateAzim200.rayui.csv +++ /dev/null @@ -1,15 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-8.9599739734591192785,1.67771261492637990819,0.00000000000000000000,-1.0000000000000000000,-0.0118803690051839001,0.00342799379183963016,0.99992354992312504347,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06925866044866779702,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-12.707840597712799279,-5.0703658170219103595,0.00000000000000000000,-1.0000000000000000000,-0.0166979216646072001,-0.0043076242986307298,0.99985130083677198342,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.13576744601857598793,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,15.1969586268777003823,-2.2594488076645498075,0.00000000000000000000,-1.0000000000000000000,0.01914019386066699926,-0.0002579998403834959,0.99981677642208999223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.16671164143724601092,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,10.1099302239370008038,2.78723745986969984045,0.00000000000000000000,-1.0000000000000000000,0.01261664227877950031,0.00496456415300861996,0.99990808249577600719,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.08438340017892190236,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,5.18794859621119996972,5.12884931083820028163,0.00000000000000000000,-1.0000000000000000000,0.00638257850664135026,0.00716893638899606007,0.99995393346026595349,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.04265636190609709693,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,0.25166980579117098626,5.49535823099255971158,0.00000000000000000000,-1.0000000000000000000,0.00023865038706325601,0.00721495441984985018,0.99997394339988299183,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02432945090492920001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,-4.7223706356930401639,3.68422490456313989071,0.00000000000000000000,-1.0000000000000000000,-0.0058421785719250003,0.00494063492160288966,0.99997072910966000591,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02754993411633679945,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,-9.6035146720404895859,-1.4449857992817600749,0.00000000000000000000,-1.0000000000000000000,-0.0117230804334901000,-0.0008014553671677600,0.99993096114404000918,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06547859907811930113,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,15.8335388551438995818,-6.8796493359152002255,0.00000000000000000000,-1.0000000000000000000,0.01827492356920720067,-0.0061028375469746902,0.99981437404270900870,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.17823470122164100648,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,8.81512369891106040142,1.22398514405746006161,0.00000000000000000000,-1.0000000000000000000,0.01011464537746139917,0.00205185301076854986,0.99994674050576803914,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.05156413784197869804,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,2.22214327007654999235,3.24207058182740004426,0.00000000000000000000,-1.0000000000000000000,0.00251978213580882981,0.00383353321889997981,0.99998947730515996834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.01026899582916489944,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,-4.3741676737565695631,0.84197729580890301459,0.00000000000000000000,-1.0000000000000000000,-0.0049579926831593403,0.00108932904638898010,0.99998711575238896642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.01266997130528580046,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-10.302892349891099144,-10.752116048837899953,0.00000000000000000000,-1.0000000000000000000,-0.0116422156069831000,-0.0108977462030554004,0.99987284088700700834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.12596867829938698801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,7.35820292099250039541,-7.6626238402778197311,0.00000000000000000000,-1.0000000000000000000,0.00771486257576458039,-0.0077518752715507602,0.99994019287415902841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.06088592635808250108,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/ReflectionZonePlateAzim200.rayx.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateAzim200.rayx.csv deleted file mode 100644 index 9debd568e..000000000 --- a/Intern/RAY-Core/tests/output/ReflectionZonePlateAzim200.rayx.csv +++ /dev/null @@ -1,15 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-8.9599739734605137186,1.67771261493484491467,0.00000000000000000000,1.00000000000000000000,-0.0118803690051855013,0.00342799379184913948,0.99992354992312482142,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0692586604491225,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-12.707840597712770858,-5.0703658170216776568,0.00000000000000000000,1.00000000000000000000,-0.0166979216646072417,-0.0043076242986304106,0.99985130083677176138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1357674460159614,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,15.1969586268775262993,-2.2594488076637673223,0.00000000000000000000,1.00000000000000000000,0.01914019386066685354,-0.0002579998403825820,0.99981677642208954814,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1667116414373595,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,10.1099302239380328671,2.78723745986376325589,0.00000000000000000000,1.00000000000000000000,0.01261664227878065043,0.00496456415300216852,0.99990808249577634025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0843834001789218,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,5.18794859621193005239,5.12884931083400896767,0.00000000000000000000,1.00000000000000000000,0.00638257850664214736,0.00716893638899159576,0.99995393346026562042,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0426563619039370,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,0.25166980579060010958,5.49535823099566833604,0.00000000000000000000,1.00000000000000000000,0.00023865038706264078,0.00721495441985327886,0.99997394339988299183,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0243294509036786,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,-4.7223706356938386363,3.68422490456765761024,0.00000000000000000000,1.00000000000000000000,-0.0058421785719258590,0.00494063492160775469,0.99997072910966011694,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0275499341150862,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,-9.6035146720433797185,-1.4449857992653591942,0.00000000000000000000,1.00000000000000000000,-0.0117230804334931913,-0.0008014553671504243,0.99993096114404045327,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0654785990791424,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,15.8335388551413274171,-6.8796493359010604251,0.00000000000000000000,1.00000000000000000000,0.01827492356920461594,-0.0061028375469599060,0.99981437404270967483,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1782347012194804,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,8.81512369891018110479,1.22398514406204284021,0.00000000000000000000,1.00000000000000000000,0.01011464537746048497,0.00205185301077335331,0.99994674050576848323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0515641378406144,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,2.22214327007824330451,3.24207058181801421881,0.00000000000000000000,1.00000000000000000000,0.00251978213581058232,0.00383353321889031610,0.99998947730516041243,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0102689958257542,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,-4.3741676737563066623,0.84197729580774882673,0.00000000000000000000,1.00000000000000000000,-0.0049579926831590966,0.00108932904638789807,0.99998711575238941051,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0126699713055131,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,-10.302892349891331846,-10.752116048835061334,0.00000000000000000000,1.00000000000000000000,-0.0116422156069833880,-0.0108977462030524687,0.99987284088700734141,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1259686782977951,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,7.35820292099287165399,-7.6626238402800517235,0.00000000000000000000,1.00000000000000000000,0.00771486257576496550,-0.0077518752715529165,0.99994019287415958352,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0608859263556951,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault.rayui.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault.rayui.csv deleted file mode 100644 index ebf8856c8..000000000 --- a/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault.rayui.csv +++ /dev/null @@ -1,3 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,9.75569707296813959374,2.11970938699472988275,0.00000000000000000000,-1.0000000000000000000,0.01266417136081150057,0.00419850753241713010,0.99991099168788200035,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.08074950591174000213,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-9.7556970729681395937,2.11970938699472988275,0.00000000000000000000,-1.0000000000000000000,-0.0126641713608115005,0.00419850753241713010,0.99991099168788200035,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.08074950591174000213,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault.rayx.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault.rayx.csv deleted file mode 100644 index a44bf9e31..000000000 --- a/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault.rayx.csv +++ /dev/null @@ -1,3 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,9.75569707296806498675,2.11970938699392918991,0.00000000000000000000,1.00000000000000000000,0.01266417136081148149,0.00419850753241636336,0.99991099168788244444,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0807495059107168,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-9.7556970729680578813,2.11970938699392918991,0.00000000000000000000,1.00000000000000000000,-0.0126641713608114728,0.00419850753241636336,0.99991099168788244444,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0807495059107168,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200.rayui.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200.rayui.csv deleted file mode 100644 index c3f64de8e..000000000 --- a/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200.rayui.csv +++ /dev/null @@ -1,13 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,13.0080819586263007892,-3.5503919801268302158,0.00000000000000000000,-1.0000000000000000000,0.01601593322748499914,-0.0025630730077266699,0.99986845161731596753,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.12309898994396900606,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,7.80445985461448987763,2.59017501256695981126,0.00000000000000000000,-1.0000000000000000000,0.00960988610078064922,0.00401280898007983985,0.99994577225628600292,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.05077042844129660281,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,2.60145640654500986954,5.04038185693976004131,0.00000000000000000000,-1.0000000000000000000,0.00320334973277054983,0.00663697382099598040,0.99997284419577603387,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02543112852811189872,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,-2.6014564065450098695,5.04038185693976004131,0.00000000000000000000,-1.0000000000000000000,-0.0032033497327705498,0.00663697382099598040,0.99997284419577603387,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02543112852811189872,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-7.8044598546144898776,2.59017501256695981126,0.00000000000000000000,-1.0000000000000000000,-0.0096098861007806492,0.00401280898007983985,0.99994577225628600292,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.05077042844129660281,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-13.008081958626300789,-3.5503919801268302158,0.00000000000000000000,-1.0000000000000000000,-0.0160159332274849991,-0.0025630730077266699,0.99986845161731596753,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.12309898994396900606,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,10.4355735762951002953,-3.4096204136531600425,0.00000000000000000000,-1.0000000000000000000,0.01185943375028319923,-0.0030935118344583702,0.99992488918700894728,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.07353840126222620232,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,3.47840647835211003169,2.27303879243129003384,0.00000000000000000000,-1.0000000000000000000,0.00395327534486990001,0.00271668438306806991,0.99998849555382895992,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.01126636159415280065,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-3.4784064783521100316,2.27303879243129003384,0.00000000000000000000,-1.0000000000000000000,-0.0039532753448699000,0.00271668438306806991,0.99998849555382895992,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.01126636159415280065,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-10.435573576295100295,-3.4096204136531600425,0.00000000000000000000,-1.0000000000000000000,-0.0118594337502831992,-0.0030935118344583702,0.99992488918700894728,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.07353840126222620232,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,5.38521177718623000885,-11.823373455207999427,0.00000000000000000000,-1.0000000000000000000,0.00564731516336466031,-0.0119430123866902000,0.99991273233546595911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.08920121381493119339,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,-5.3852117771862300088,-11.823373455207999427,0.00000000000000000000,-1.0000000000000000000,-0.0056473151633646603,-0.0119430123866902000,0.99991273233546595911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.08920121381493119339,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200.rayx.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200.rayx.csv deleted file mode 100644 index 3f58d509c..000000000 --- a/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200.rayx.csv +++ /dev/null @@ -1,13 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,13.0080819586261267062,-3.5503919801114514065,0.00000000000000000000,1.00000000000000000000,0.01601593322748488118,-0.0025630730077101241,0.99986845161731663367,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1230989899377163,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,7.80445985461447211406,2.59017501257744298115,0.00000000000000000000,1.00000000000000000000,0.00960988610078065789,0.00401280898009115979,0.99994577225628578087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0507704284391365,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,2.60145640654496901333,5.04038185694019524873,0.00000000000000000000,1.00000000000000000000,0.00320334973277052554,0.00663697382099662138,0.99997284419577570080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0254311285279982,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,-2.6014564065449650165,5.04038185694019524873,0.00000000000000000000,1.00000000000000000000,-0.0032033497327705212,0.00663697382099662138,0.99997284419577570080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0254311285279982,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-7.8044598546144667849,2.59017501257744298115,0.00000000000000000000,1.00000000000000000000,-0.0096098861007806526,0.00401280898009115979,0.99994577225628578087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0507704284391365,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-13.008081958626124929,-3.5503919801114451892,0.00000000000000000000,1.00000000000000000000,-0.0160159332274848811,-0.0025630730077101171,0.99986845161731663367,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1230989899377163,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,10.4355735762951109535,-3.4096204136546734986,0.00000000000000000000,1.00000000000000000000,0.01185943375028315413,-0.0030935118344598637,0.99992488918700939137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0735384012587019,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,3.47840647835212601890,2.27303879243029971490,0.00000000000000000000,1.00000000000000000000,0.00395327534486992430,0.00271668438306714270,0.99998849555382929299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0112663615909696,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-3.4784064783521220221,2.27303879243029971490,0.00000000000000000000,1.00000000000000000000,-0.0039532753448699199,0.00271668438306714270,0.99998849555382929299,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0112663615909696,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,-10.435573576295105624,-3.4096204136546734986,0.00000000000000000000,1.00000000000000000000,-0.0118594337502831489,-0.0030935118344598637,0.99992488918700939137,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0735384012587019,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,5.38521177718620247532,-11.823373455206832360,0.00000000000000000000,1.00000000000000000000,0.00564731516336463863,-0.0119430123866890378,0.99991273233546595911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0892012138119753,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,-5.3852117771862006989,-11.823373455206832360,0.00000000000000000000,1.00000000000000000000,-0.0056473151633646368,-0.0119430123866890378,0.99991273233546595911,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0892012138119753,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv deleted file mode 100644 index 95842d2ce..000000000 --- a/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200Toroid.rayui.csv +++ /dev/null @@ -1,111 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,340.062081529643990052,641.905974507241012361,0.00000000000000000000,-1.0000000000000000000,0.28136383983097801309,0.52292271489269703810,0.80460314682756395310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,238.690210924663006153,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,301.010109141200985050,700.585894649469992145,0.00000000000000000000,-1.0000000000000000000,0.24467644943960800696,0.56120044852155803738,0.79068798629347403217,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,260.203724153947007380,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,255.633568603312994582,751.212145862446050159,0.00000000000000000000,-1.0000000000000000000,0.20462015552100198956,0.59297738222383600259,0.77878650227487100643,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,279.206367310794973946,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,204.816435082061985895,792.939516606975985268,0.00000000000000000000,-1.0000000000000000000,0.16187235004146299788,0.61832696888045601824,0.76907028407497401989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,295.150935751003999030,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,149.582742046203009067,824.997982701635010016,0.00000000000000000000,-1.0000000000000000000,0.11706873047590900249,0.63730010065545195097,0.76167151321899195792,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,307.562396391503000359,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,91.0866379008823940921,846.751390671625017603,0.00000000000000000000,-1.0000000000000000000,0.07081579668367379842,0.64993117278117096269,0.75668658874553096360,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,316.060070888085022033,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,30.5874090036708992101,857.746109070220995818,0.00000000000000000000,-1.0000000000000000000,0.02370066317814059977,0.65624157111315994939,0.75417854577536702631,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,320.377523719652003819,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,-30.587409003670899210,857.746109070220995818,0.00000000000000000000,-1.0000000000000000000,-0.0237006631781405997,0.65624157111315994939,0.75417854577536702631,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,320.377523719652003819,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-91.086637900882394092,846.751390671625017603,0.00000000000000000000,-1.0000000000000000000,-0.0708157966836737984,0.64993117278117096269,0.75668658874553096360,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,316.060070888085022033,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-149.58274204620300906,824.997982701635010016,0.00000000000000000000,-1.0000000000000000000,-0.1170687304759090024,0.63730010065545195097,0.76167151321899195792,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,307.562396391503000359,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,-204.81643508206198589,792.939516606975985268,0.00000000000000000000,-1.0000000000000000000,-0.1618723500414629978,0.61832696888045601824,0.76907028407497401989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,295.150935751003999030,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,-255.63356860331299458,751.212145862446050159,0.00000000000000000000,-1.0000000000000000000,-0.2046201555210019895,0.59297738222383600259,0.77878650227487100643,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,279.206367310794973946,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-301.01010914120098505,700.585894649469992145,0.00000000000000000000,-1.0000000000000000000,-0.2446764494396080069,0.56120044852155803738,0.79068798629347403217,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,260.203724153947007380,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-340.06208152964399005,641.905974507241012361,0.00000000000000000000,-1.0000000000000000000,-0.2813638398309780130,0.52292271489269703810,0.80460314682756395310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,238.690210924663006153,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,299.305310576971976388,530.445561181835046227,0.00000000000000000000,-1.0000000000000000000,0.26185916625822902581,0.45613950692848598267,0.85050956917931397338,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,172.948815639711000358,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,265.051233508937002625,584.263004966324047018,0.00000000000000000000,-1.0000000000000000000,0.22842377262557600481,0.49541588047279000450,0.83808453360915202701,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,190.129529273482006601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,225.114174166443007152,630.370426716134943490,0.00000000000000000000,-1.0000000000000000000,0.19148099704098200946,0.52796830824703200324,0.82739621298321097686,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,205.314469226912990507,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,180.344677332318013895,668.160025808909949773,0.00000000000000000000,-1.0000000000000000000,0.15174596149996399940,0.55390638728382701749,0.81863354273730504218,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,218.054693406210986950,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,131.687152325104989358,697.067453851801019482,0.00000000000000000000,-1.0000000000000000000,0.10988329038682199956,0.57330438313001497174,0.81194072861119503947,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,227.967969440307996364,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,80.1763473601431968518,716.622228908277975278,0.00000000000000000000,-1.0000000000000000000,0.06652305805536469496,0.58621151410564698025,0.80742228324274500916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,234.752216930981006726,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -20 ,0 ,26.9211410184916992704,726.487428602462955495,0.00000000000000000000,-1.0000000000000000000,0.02227278564359510062,0.59265791234922404751,0.80514627363574997609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,238.197987341561002949,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -21 ,0 ,-26.921141018491699270,726.487428602462955495,0.00000000000000000000,-1.0000000000000000000,-0.0222727856435951006,0.59265791234922404751,0.80514627363574997609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,238.197987341561002949,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -22 ,0 ,-80.176347360143196851,716.622228908277975278,0.00000000000000000000,-1.0000000000000000000,-0.0665230580553646949,0.58621151410564698025,0.80742228324274500916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,234.752216930981006726,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -23 ,0 ,-131.68715232510498935,697.067453851801019482,0.00000000000000000000,-1.0000000000000000000,-0.1098832903868219995,0.57330438313001497174,0.81194072861119503947,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,227.967969440307996364,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -24 ,0 ,-180.34467733231801389,668.160025808909949773,0.00000000000000000000,-1.0000000000000000000,-0.1517459614999639994,0.55390638728382701749,0.81863354273730504218,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,218.054693406210986950,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -25 ,0 ,-225.11417416644300715,630.370426716134943490,0.00000000000000000000,-1.0000000000000000000,-0.1914809970409820094,0.52796830824703200324,0.82739621298321097686,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,205.314469226912990507,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -26 ,0 ,-265.05123350893700262,584.263004966324047018,0.00000000000000000000,-1.0000000000000000000,-0.2284237726255760048,0.49541588047279000450,0.83808453360915202701,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,190.129529273482006601,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -27 ,0 ,-299.30531057697197638,530.445561181835046227,0.00000000000000000000,-1.0000000000000000000,-0.2618591662582290258,0.45613950692848598267,0.85050956917931397338,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,172.948815639711000358,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -28 ,0 ,261.488571438839983329,421.017155857004013341,0.00000000000000000000,-1.0000000000000000000,0.24043204854906599643,0.37967684517475297489,0.89332968341404994649,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,117.616618181703003642,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -29 ,0 ,231.980604126351011018,471.422090622955010985,0.00000000000000000000,-1.0000000000000000000,0.21063866064935199418,0.42034572408663301024,0.88257624423158598236,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,131.093559521745987694,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -30 ,0 ,197.243708224097986203,514.259479652023969720,0.00000000000000000000,-1.0000000000000000000,0.17714328835382900373,0.45395538021186099264,0.87323809363076698719,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,143.059091611403005117,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -31 ,0 ,158.120300114683004721,549.155516341344991815,0.00000000000000000000,-1.0000000000000000000,0.14071834423612999964,0.48068606227924398632,0.86552831099041305229,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,153.128128859838994912,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -32 ,0 ,115.501327437667995923,575.724981691031985064,0.00000000000000000000,-1.0000000000000000000,0.10206936871307199787,0.50064980637304801192,0.85961131643850796635,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,160.975614800932987691,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -33 ,0 ,70.3350613567096019096,593.639406186420046651,0.00000000000000000000,-1.0000000000000000000,0.06185898161873319700,0.51392160161689004471,0.85560391173990302249,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,166.350868522526013748,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -34 ,0 ,23.6185426387862982267,602.659502305665000676,0.00000000000000000000,-1.0000000000000000000,0.02072205433419689948,0.52054679561784300556,0.85358164813693504502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,169.082174834446988143,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -35 ,0 ,-23.618542638786298226,602.659502305665000676,0.00000000000000000000,-1.0000000000000000000,-0.0207220543341968994,0.52054679561784300556,0.85358164813693504502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,169.082174834446988143,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -36 ,0 ,-70.335061356709601909,593.639406186420046651,0.00000000000000000000,-1.0000000000000000000,-0.0618589816187331970,0.51392160161689004471,0.85560391173990302249,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,166.350868522526013748,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -37 ,0 ,-115.50132743766799592,575.724981691031985064,0.00000000000000000000,-1.0000000000000000000,-0.1020693687130719978,0.50064980637304801192,0.85961131643850796635,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,160.975614800932987691,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -38 ,0 ,-158.12030011468300472,549.155516341344991815,0.00000000000000000000,-1.0000000000000000000,-0.1407183442361299996,0.48068606227924398632,0.86552831099041305229,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,153.128128859838994912,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -39 ,0 ,-197.24370822409798620,514.259479652023969720,0.00000000000000000000,-1.0000000000000000000,-0.1771432883538290037,0.45395538021186099264,0.87323809363076698719,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,143.059091611403005117,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -40 ,0 ,-231.98060412635101101,471.422090622955010985,0.00000000000000000000,-1.0000000000000000000,-0.2106386606493519941,0.42034572408663301024,0.88257624423158598236,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,131.093559521745987694,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -41 ,0 ,-261.48857143883998332,421.017155857004013341,0.00000000000000000000,-1.0000000000000000000,-0.2404320485490659964,0.37967684517475297489,0.89332968341404994649,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,117.616618181703003642,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -42 ,0 ,225.467321965357001545,309.840185742436005966,0.00000000000000000000,-1.0000000000000000000,0.21648363175465298868,0.29095316789562397641,0.93192332907477803960,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,72.0060259197801002528,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -43 ,0 ,200.815353385434008259,358.396733024937987011,0.00000000000000000000,-1.0000000000000000000,0.19088155417259300428,0.33370827050230500443,0.92314842927614604306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,82.1175399782136992143,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -44 ,0 ,171.197535118959990541,399.249576374846014914,0.00000000000000000000,-1.0000000000000000000,0.16128651345771899405,0.36887519992600997786,0.91537847224861002004,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,91.2258827734977018053,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -45 ,0 ,137.481247692358010681,432.271622774958018453,0.00000000000000000000,-1.0000000000000000000,0.12856055770323898679,0.39674791892309402285,0.90888022964152204163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,98.9585139328158049920,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -46 ,0 ,100.538650145980000161,457.273248593435994280,0.00000000000000000000,-1.0000000000000000000,0.09347321292365179390,0.41751651156080099580,0.90384883749431699229,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,105.019403809240003511,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -47 ,0 ,61.2645669154697003477,474.065556853169994155,0.00000000000000000000,-1.0000000000000000000,0.05673494510757300102,0.43130254915332399967,0.90042171069865095667,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,109.185310092408002446,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -48 ,0 ,20.5790932319645989423,482.501538610824979969,0.00000000000000000000,-1.0000000000000000000,0.01901950756339669881,0.43817857889492101142,0.89868670365688196888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,111.306072698879006566,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -49 ,0 ,-20.579093231964598942,482.501538610824979969,0.00000000000000000000,-1.0000000000000000000,-0.0190195075633966988,0.43817857889492101142,0.89868670365688196888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,111.306072698879006566,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -50 ,0 ,-61.264566915469700347,474.065556853169994155,0.00000000000000000000,-1.0000000000000000000,-0.0567349451075730010,0.43130254915332399967,0.90042171069865095667,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,109.185310092408002446,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -51 ,0 ,-100.53865014598000016,457.273248593435994280,0.00000000000000000000,-1.0000000000000000000,-0.0934732129236517939,0.41751651156080099580,0.90384883749431699229,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,105.019403809240003511,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -52 ,0 ,-137.48124769235801068,432.271622774958018453,0.00000000000000000000,-1.0000000000000000000,-0.1285605577032389867,0.39674791892309402285,0.90888022964152204163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,98.9585139328158049920,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -53 ,0 ,-171.19753511895999054,399.249576374846014914,0.00000000000000000000,-1.0000000000000000000,-0.1612865134577189940,0.36887519992600997786,0.91537847224861002004,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,91.2258827734977018053,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -54 ,0 ,-200.81535338543400825,358.396733024937987011,0.00000000000000000000,-1.0000000000000000000,-0.1908815541725930042,0.33370827050230500443,0.92314842927614604306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,82.1175399782136992143,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -55 ,0 ,-225.46732196535700154,309.840185742436005966,0.00000000000000000000,-1.0000000000000000000,-0.2164836317546529886,0.29095316789562397641,0.93192332907477803960,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,72.0060259197801002528,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -56 ,0 ,189.829501918221012601,191.314931797112990352,0.00000000000000000000,-1.0000000000000000000,0.18893666105558198919,0.18543104330935600287,0.96432269821174099178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,36.4485672634318973450,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -57 ,0 ,170.442777546207992145,240.197805611137994219,0.00000000000000000000,-1.0000000000000000000,0.16839252441664701032,0.23165282096157899238,0.95811321265345894548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,43.1438669143423965124,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -58 ,0 ,146.092845294433004710,280.685167757046997394,0.00000000000000000000,-1.0000000000000000000,0.14336796993660799737,0.26931583399851799498,0.95232064282674200317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,49.4603382310568022717,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -59 ,0 ,117.749215929932006474,313.048107608268026069,0.00000000000000000000,-1.0000000000000000000,0.11489190094252800522,0.29897904297463301359,0.94731799463526800142,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,54.9726421940576983615,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -60 ,0 ,86.3153801579562980350,337.358209748146975925,0.00000000000000000000,-1.0000000000000000000,0.08384223931010009733,0.32098816972805899183,0.94336476179794803709,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,59.3671679863153016754,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -61 ,0 ,52.6739581813190014258,353.600155890305984485,0.00000000000000000000,-1.0000000000000000000,0.05100644694201399848,0.33555780575311600077,0.94063770994390094593,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,62.4188572657230977824,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -62 ,0 ,17.7056218900038011554,361.734897698170016155,0.00000000000000000000,-1.0000000000000000000,0.01711809069229930022,0.34281353760219701598,0.93924749103083404744,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,63.9810053745749982567,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -63 ,0 ,-17.705621890003801155,361.734897698170016155,0.00000000000000000000,-1.0000000000000000000,-0.0171180906922993002,0.34281353760219701598,0.93924749103083404744,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,63.9810053745749982567,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -64 ,0 ,-52.673958181319001425,353.600155890305984485,0.00000000000000000000,-1.0000000000000000000,-0.0510064469420139984,0.33555780575311600077,0.94063770994390094593,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,62.4188572657230977824,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -65 ,0 ,-86.315380157956298035,337.358209748146975925,0.00000000000000000000,-1.0000000000000000000,-0.0838422393101000973,0.32098816972805899183,0.94336476179794803709,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,59.3671679863153016754,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -66 ,0 ,-117.74921592993200647,313.048107608268026069,0.00000000000000000000,-1.0000000000000000000,-0.1148919009425280052,0.29897904297463301359,0.94731799463526800142,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,54.9726421940576983615,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -67 ,0 ,-146.09284529443300471,280.685167757046997394,0.00000000000000000000,-1.0000000000000000000,-0.1433679699366079973,0.26931583399851799498,0.95232064282674200317,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,49.4603382310568022717,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -68 ,0 ,-170.44277754620799214,240.197805611137994219,0.00000000000000000000,-1.0000000000000000000,-0.1683925244166470103,0.23165282096157899238,0.95811321265345894548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,43.1438669143423965124,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -69 ,0 ,-189.82950191822101260,191.314931797112990352,0.00000000000000000000,-1.0000000000000000000,-0.1889366610555819891,0.18543104330935600287,0.96432269821174099178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,36.4485672634318973450,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -70 ,0 ,152.133386063647009223,54.2437959204128006263,0.00000000000000000000,-1.0000000000000000000,0.15543433699995298780,0.05337208445305469811,0.98640335942378098987,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,13.4980429036186002633,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -71 ,0 ,139.163184853031992815,107.845899946561999627,0.00000000000000000000,-1.0000000000000000000,0.14162228348110000863,0.10647356540320100648,0.98417808789462901675,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,15.8180204187747008859,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -72 ,0 ,120.702782759041994609,150.856044470479986330,0.00000000000000000000,-1.0000000000000000000,0.12233471959934300032,0.14878350242164700700,0.98127350203075303092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,18.8401660505352985808,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -73 ,0 ,98.0423477363290061248,184.534091292079011736,0.00000000000000000000,-1.0000000000000000000,0.09899732206273349766,0.18164581954713898692,0.97836819575528699566,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,21.8720282029924995015,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -74 ,0 ,72.2311845249146955438,209.486614379454010759,0.00000000000000000000,-1.0000000000000000000,0.07271223390985440127,0.20581071718897700484,0.97588671459857301293,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,24.4716582585716011521,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -75 ,0 ,44.2126864682890001745,226.011085937964992353,0.00000000000000000000,-1.0000000000000000000,0.04441146022882320326,0.22171788954725699105,0.97409896810080498497,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,26.3509294762284014268,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -76 ,0 ,14.8826940022194005308,234.246329050369013202,0.00000000000000000000,-1.0000000000000000000,0.01493302664162439973,0.22961523198923600164,0.97316691782748698802,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,27.3329279012510006907,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -77 ,0 ,-14.882694002219400530,234.246329050369013202,0.00000000000000000000,-1.0000000000000000000,-0.0149330266416243997,0.22961523198923600164,0.97316691782748698802,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,27.3329279012510006907,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -78 ,0 ,-44.212686468289000174,226.011085937964992353,0.00000000000000000000,-1.0000000000000000000,-0.0444114602288232032,0.22171788954725699105,0.97409896810080498497,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,26.3509294762284014268,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -79 ,0 ,-72.231184524914695543,209.486614379454010759,0.00000000000000000000,-1.0000000000000000000,-0.0727122339098544012,0.20581071718897700484,0.97588671459857301293,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,24.4716582585716011521,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -80 ,0 ,-98.042347736329006124,184.534091292079011736,0.00000000000000000000,-1.0000000000000000000,-0.0989973220627334976,0.18164581954713898692,0.97836819575528699566,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,21.8720282029924995015,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -81 ,0 ,-120.70278275904199460,150.856044470479986330,0.00000000000000000000,-1.0000000000000000000,-0.1223347195993430003,0.14878350242164700700,0.98127350203075303092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,18.8401660505352985808,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -82 ,0 ,-139.16318485303199281,107.845899946561999627,0.00000000000000000000,-1.0000000000000000000,-0.1416222834811000086,0.10647356540320100648,0.98417808789462901675,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,15.8180204187747008859,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -83 ,0 ,-152.13338606364700922,54.2437959204128006263,0.00000000000000000000,-1.0000000000000000000,-0.1554343369999529878,0.05337208445305469811,0.98640335942378098987,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,13.4980429036186002633,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -84 ,0 ,104.704277371206003977,-139.57778053898900338,0.00000000000000000000,-1.0000000000000000000,0.10787607600416500297,-0.1381470041063619924,0.98451925196127099138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,15.5136883350714995799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -85 ,0 ,102.782910521675006521,-63.321946045016098025,0.00000000000000000000,-1.0000000000000000000,0.10618566561346100274,-0.0633359706696253049,0.99232714325345494632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,7.57559098017475029962,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -86 ,0 ,92.4256006764792061858,-8.7889253026111404665,0.00000000000000000000,-1.0000000000000000000,0.09551547712748560681,-0.0089763077169375295,0.99538747205742894585,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.52505163463399995293,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -87 ,0 ,76.6735770104831999560,31.4285908688415993594,0.00000000000000000000,-1.0000000000000000000,0.07918204727153589639,0.03133986667892919852,0.99636741021895902647,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.57308123791914988842,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -88 ,0 ,57.2151183251659034567,60.1999842254590973311,0.00000000000000000000,-1.0000000000000000000,0.05902941968988439924,0.06021775366855239980,0.99643833213811494609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.52663652851629016993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -89 ,0 ,35.2821701913818017715,78.8599500164194040507,0.00000000000000000000,-1.0000000000000000000,0.03637031714324519965,0.07893847484478209997,0.99621579851961794549,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.76629060612925004036,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -90 ,0 ,11.9173163214140007681,88.0558030792993946533,0.00000000000000000000,-1.0000000000000000000,0.01227902527454480079,0.08815754725735309993,0.99603085916043498926,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.96002714316251003268,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -91 ,0 ,-11.917316321414000768,88.0558030792993946533,0.00000000000000000000,-1.0000000000000000000,-0.0122790252745448007,0.08815754725735309993,0.99603085916043498926,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.96002714316251003268,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -92 ,0 ,-35.282170191381801771,78.8599500164194040507,0.00000000000000000000,-1.0000000000000000000,-0.0363703171432451996,0.07893847484478209997,0.99621579851961794549,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.76629060612925004036,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -93 ,0 ,-57.215118325165903456,60.1999842254590973311,0.00000000000000000000,-1.0000000000000000000,-0.0590294196898845033,0.06021775366855239980,0.99643833213811494609,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.52663652851629016993,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -94 ,0 ,-76.673577010483199956,31.4285908688415993594,0.00000000000000000000,-1.0000000000000000000,-0.0791820472715358963,0.03133986667892919852,0.99636741021895902647,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,3.57308123791914988842,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -95 ,0 ,-92.425600676479206185,-8.7889253026111404665,0.00000000000000000000,-1.0000000000000000000,-0.0955154771274856068,-0.0089763077169375295,0.99538747205742894585,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,4.52505163463399995293,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -96 ,0 ,-102.78291052167500652,-63.321946045015998549,0.00000000000000000000,-1.0000000000000000000,-0.1061856656134610027,-0.0633359706696253049,0.99232714325345494632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,7.57559098017475029962,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -97 ,0 ,-104.70427737120600397,-139.57778053898900338,0.00000000000000000000,-1.0000000000000000000,-0.1078760760041650029,-0.1381470041063619924,0.98451925196127099138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,15.5136883350714995799,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -98 ,0 ,45.8699450065199982873,-224.72548027632001321,0.00000000000000000000,-1.0000000000000000000,0.04710673871611530116,-0.2192764612999970053,0.97452490408777203700,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,26.0917502723131988773,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -99 ,0 ,37.3447902405020002447,-165.23434478108001144,0.00000000000000000000,-1.0000000000000000000,0.03858360052800909739,-0.1632012136759619924,0.98583805446177996678,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,14.3245021893970996273,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -100 ,0 ,23.9156669137871986663,-133.36276348868500463,0.00000000000000000000,-1.0000000000000000000,0.02477395397021980166,-0.1324256668709800077,0.99088328977658002294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9.17562937381319088103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -101 ,0 ,8.20485620587808028858,-118.71485344218899626,0.00000000000000000000,-1.0000000000000000000,0.00850830844429397055,-0.1181344902474800034,0.99296115276549701267,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,7.07328228868436958975,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -102 ,0 ,-8.2048562058780802885,-118.71485344218899626,0.00000000000000000000,-1.0000000000000000000,-0.0085083084442939705,-0.1181344902474800034,0.99296115276549701267,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,7.07328228868436958975,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -103 ,0 ,-23.915666913787198666,-133.36276348868500463,0.00000000000000000000,-1.0000000000000000000,-0.0247739539702198016,-0.1324256668709800077,0.99088328977658002294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,9.17562937381319088103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -104 ,0 ,-37.344790240502000244,-165.23434478108001144,0.00000000000000000000,-1.0000000000000000000,-0.0385836005280090973,-0.1632012136759619924,0.98583805446177996678,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,14.3245021893970996273,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -105 ,0 ,-45.869945006519998287,-224.72548027632001321,0.00000000000000000000,-1.0000000000000000000,-0.0471067387161153011,-0.2192764612999970053,0.97452490408777203700,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,26.0917502723131988773,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -106 ,0 ,340.062081529643990052,641.905974507241012361,0.00000000000000000000,-1.0000000000000000000,0.28136383983097801309,0.52292271489269703810,0.80460314682756395310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,238.690210924663006153,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -107 ,0 ,301.010109141200985050,700.585894649469992145,0.00000000000000000000,-1.0000000000000000000,0.24467644943960800696,0.56120044852155803738,0.79068798629347403217,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,260.203724153947007380,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -108 ,0 ,255.633568603312994582,751.212145862446050159,0.00000000000000000000,-1.0000000000000000000,0.20462015552100198956,0.59297738222383600259,0.77878650227487100643,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,279.206367310794973946,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -109 ,0 ,204.816435082061985895,792.939516606975985268,0.00000000000000000000,-1.0000000000000000000,0.16187235004146299788,0.61832696888045601824,0.76907028407497401989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,295.150935751003999030,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv deleted file mode 100644 index 473c99cce..000000000 --- a/Intern/RAY-Core/tests/output/ReflectionZonePlateDefault200Toroid.rayx.csv +++ /dev/null @@ -1,111 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,340.062081529641375254,641.905974507232372161,0.00000000000000000000,1.00000000000000000000,0.28136383983097623673,0.52292271489269159800,0.80460314682756783888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11238.6902109246584586,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,301.010109141215764338,700.585894649511942589,0.00000000000000000000,1.00000000000000000000,0.24467644943961505688,0.56120044852157879855,0.79068798629345693473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11260.2037241539746901,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,255.633568603311033484,751.212145862438092080,0.00000000000000000000,1.00000000000000000000,0.20462015552100118465,0.59297738222383089556,0.77878650227487500323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11279.2063673107913928,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,204.816435082061900629,792.939516606974962087,0.00000000000000000000,1.00000000000000000000,0.16187235004146308114,0.61832696888045501903,0.76907028407497479705,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11295.1509357510039990,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,149.582742046199484775,824.997982701603859823,0.00000000000000000000,1.00000000000000000000,0.11706873047590775349,0.63730010065543729602,0.76167151321900461447,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11307.5623963914822525,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,91.0866379008865152400,846.751390671680496780,0.00000000000000000000,1.00000000000000000000,0.07081579668367499191,0.64993117278119527657,0.75668658874550964732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11316.0600708881247555,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,30.5874090036709844753,857.746109070227930715,0.00000000000000000000,1.00000000000000000000,0.02370066317814056161,0.65624157111316283597,0.75417854577536458382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11320.3775237196568923,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,-30.587409003670835261,857.746109070227930715,0.00000000000000000000,1.00000000000000000000,-0.0237006631781404471,0.65624157111316283597,0.75417854577536458382,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11320.3775237196568923,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-91.086637900886373131,846.751390671680496780,0.00000000000000000000,1.00000000000000000000,-0.0708157966836748808,0.64993117278119527657,0.75668658874550964732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11316.0600708881247555,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,-149.58274204619937108,824.997982701603859823,0.00000000000000000000,1.00000000000000000000,-0.1170687304759076563,0.63730010065543729602,0.76167151321900461447,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11307.5623963914822525,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,-204.81643508206181536,792.939516606975075774,0.00000000000000000000,1.00000000000000000000,-0.1618723500414629978,0.61832696888045513006,0.76907028407497490807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11295.1509357510039990,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,-255.63356860331086295,751.212145862438092080,0.00000000000000000000,1.00000000000000000000,-0.2046201555210010458,0.59297738222383089556,0.77878650227487500323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11279.2063673107913928,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,-301.01010914121565065,700.585894649511942589,0.00000000000000000000,1.00000000000000000000,-0.2446764494396149736,0.56120044852157879855,0.79068798629345693473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11260.2037241539746901,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-340.06208152964131841,641.905974507232372161,0.00000000000000000000,1.00000000000000000000,-0.2813638398309761812,0.52292271489269159800,0.80460314682756783888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11238.6902109246584586,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,299.305310576974932246,530.445561181847438092,0.00000000000000000000,1.00000000000000000000,0.26185916625823002501,0.45613950692849503099,0.85050956917930897738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11172.9488156397164857,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,265.051233508936093130,584.263004966323251210,0.00000000000000000000,1.00000000000000000000,0.22842377262557514439,0.49541588047278933837,0.83808453360915224905,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11190.1295292734830582,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,225.114174166450851544,630.370426716169276915,0.00000000000000000000,1.00000000000000000000,0.19148099704098500706,0.52796830824705276441,0.82739621298319643294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11205.3144692269306688,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,180.344677332320429741,668.160025808925752244,0.00000000000000000000,1.00000000000000000000,0.15174596149996430471,0.55390638728383523314,0.81863354273729871390,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11218.0546934062203945,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,131.687152325102800887,697.067453851789082364,0.00000000000000000000,1.00000000000000000000,0.10988329038682019545,0.57330438313000797734,0.81194072861120003548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11227.9679694403021130,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,80.1763473601438363402,716.622228908284796489,0.00000000000000000000,1.00000000000000000000,0.06652305805536500027,0.58621151410564931172,0.80742228324274301076,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11234.7522169309850141,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -20 ,0 ,26.9211410184910562293,726.487428602422482981,0.00000000000000000000,1.00000000000000000000,0.02227278564359500001,0.59265791234920206509,0.80514627363576574126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11238.1979873415366455,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,0 ,-26.921141018490921226,726.487428602422482981,0.00000000000000000000,1.00000000000000000000,-0.0222727856435948889,0.59265791234920206509,0.80514627363576574126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11238.1979873415366455,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,0 ,-80.176347360143680020,716.622228908284796489,0.00000000000000000000,1.00000000000000000000,-0.0665230580553648753,0.58621151410564931172,0.80742228324274301076,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11234.7522169309850141,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -23 ,0 ,-131.68715232510291457,697.067453851789082364,0.00000000000000000000,1.00000000000000000000,-0.1098832903868202925,0.57330438313000797734,0.81194072861120003548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11227.9679694403021130,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -24 ,0 ,-180.34467733232031605,668.160025808925752244,0.00000000000000000000,1.00000000000000000000,-0.1517459614999642214,0.55390638728383523314,0.81863354273729871390,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11218.0546934062185755,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,0 ,-225.11417416645073785,630.370426716169276915,0.00000000000000000000,1.00000000000000000000,-0.1914809970409849237,0.52796830824705276441,0.82739621298319643294,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11205.3144692269306688,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,0 ,-265.05123350893603628,584.263004966323478583,0.00000000000000000000,1.00000000000000000000,-0.2284237726255750611,0.49541588047278950490,0.83808453360915202701,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11190.1295292734830582,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -27 ,0 ,-299.30531057697481855,530.445561181847438092,0.00000000000000000000,1.00000000000000000000,-0.2618591662582299139,0.45613950692849503099,0.85050956917930897738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11172.9488156397164857,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -28 ,0 ,261.488571438837766436,421.017155856996964757,0.00000000000000000000,1.00000000000000000000,0.24043204854906496947,0.37967684517474753480,0.89332968341405205592,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11117.6166181817006872,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -29 ,0 ,231.980604126349476246,471.422090622957284722,0.00000000000000000000,1.00000000000000000000,0.21063866064935027333,0.42034572408663439802,0.88257624423158498316,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11131.0935595217488298,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,0 ,197.243708224108360127,514.259479652063532739,0.00000000000000000000,1.00000000000000000000,0.17714328835383452709,0.45395538021188835964,0.87323809363075177714,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11143.0590916114233550,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,0 ,158.120300114684454229,549.155516341351130904,0.00000000000000000000,1.00000000000000000000,0.14071834423613088782,0.48068606227924792761,0.86552831099041049878,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11153.1281288598402170,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -32 ,0 ,115.501327437671619691,575.724981691054153998,0.00000000000000000000,1.00000000000000000000,0.10206936871307410730,0.50064980637306255584,0.85961131643849897354,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11160.9756148009455500,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -33 ,0 ,70.3350613567116909052,593.639406186444830382,0.00000000000000000000,1.00000000000000000000,0.06185898161873430722,0.51392160161690603192,0.85560391173989314150,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11166.3508685225388035,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -34 ,0 ,23.6185426387878152354,602.659502305719911419,0.00000000000000000000,1.00000000000000000000,0.02072205433419772174,0.52054679561787819963,0.85358164813691317363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11169.0821748344751540,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -35 ,0 ,-23.618542638787694443,602.659502305719911419,0.00000000000000000000,1.00000000000000000000,-0.0207220543341976176,0.52054679561787819963,0.85358164813691317363,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11169.0821748344751540,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,0 ,-70.335061356711563007,593.639406186444830382,0.00000000000000000000,1.00000000000000000000,-0.0618589816187341962,0.51392160161690603192,0.85560391173989314150,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11166.3508685225388035,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,0 ,-115.50132743767149179,575.724981691054153998,0.00000000000000000000,1.00000000000000000000,-0.1020693687130740240,0.50064980637306266686,0.85961131643849908456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11160.9756148009455500,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -38 ,0 ,-158.12030011468434054,549.155516341351130904,0.00000000000000000000,1.00000000000000000000,-0.1407183442361307768,0.48068606227924792761,0.86552831099041049878,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11153.1281288598402170,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -39 ,0 ,-197.24370822410818959,514.259479652063532739,0.00000000000000000000,1.00000000000000000000,-0.1771432883538343883,0.45395538021188835964,0.87323809363075177714,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11143.0590916114233550,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -40 ,0 ,-231.98060412634941940,471.422090622957284722,0.00000000000000000000,1.00000000000000000000,-0.2106386606493502178,0.42034572408663439802,0.88257624423158498316,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11131.0935595217488298,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,0 ,-261.48857143883765274,421.017155856996964757,0.00000000000000000000,1.00000000000000000000,-0.2404320485490648862,0.37967684517474753480,0.89332968341405205592,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11117.6166181817006872,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -42 ,0 ,225.467321965355949942,309.840185742433334326,0.00000000000000000000,1.00000000000000000000,0.21648363175465251684,0.29095316789562147841,0.93192332907477848369,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.0060259197798586,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -43 ,0 ,200.815353385420479526,358.396733024889215357,0.00000000000000000000,1.00000000000000000000,0.19088155417258348411,0.33370827050226470333,0.92314842927616247436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11082.1175399781968735,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,0 ,171.197535118961553735,399.249576374851585569,0.00000000000000000000,1.00000000000000000000,0.16128651345772032632,0.36887519992601408569,0.91537847224860791062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11091.2258827734985970,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,0 ,137.481247692358834910,432.271622774959212165,0.00000000000000000000,1.00000000000000000000,0.12856055770323904230,0.39674791892309457796,0.90888022964152181959,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.9585139328155491,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,0 ,100.538650145982771277,457.273248593454525234,0.00000000000000000000,1.00000000000000000000,0.09347321292365319556,0.41751651156081553972,0.90384883749431044197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11105.0194038092486152,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -47 ,0 ,61.2645669154670144962,474.065556853140151361,0.00000000000000000000,1.00000000000000000000,0.05673494510757112058,0.43130254915330085152,0.90042171069866194788,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11109.1853100923963211,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -48 ,0 ,20.5790932319637818181,482.501538610793829775,0.00000000000000000000,1.00000000000000000000,0.01901950756339614370,0.43817857889489808531,0.89868670365689362622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11111.3060726988660462,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -49 ,0 ,-20.579093231963675236,482.501538610793829775,0.00000000000000000000,1.00000000000000000000,-0.0190195075633960465,0.43817857889489808531,0.89868670365689362622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11111.3060726988660462,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -50 ,0 ,-61.264566915466907914,474.065556853140151361,0.00000000000000000000,1.00000000000000000000,-0.0567349451075710234,0.43130254915330085152,0.90042171069866194788,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11109.1853100923963211,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -51 ,0 ,-100.53865014598268601,457.273248593454525234,0.00000000000000000000,1.00000000000000000000,-0.0934732129236531261,0.41751651156081553972,0.90384883749431044197,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11105.0194038092486152,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,0 ,-137.48124769235872122,432.271622774959212165,0.00000000000000000000,1.00000000000000000000,-0.1285605577032389312,0.39674791892309457796,0.90888022964152181959,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.9585139328155491,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -53 ,0 ,-171.19753511896146846,399.249576374851585569,0.00000000000000000000,1.00000000000000000000,-0.1612865134577202430,0.36887519992601408569,0.91537847224860791062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11091.2258827734985970,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -54 ,0 ,-200.81535338542042268,358.396733024889215357,0.00000000000000000000,1.00000000000000000000,-0.1908815541725834286,0.33370827050226470333,0.92314842927616247436,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11082.1175399781968735,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -55 ,0 ,-225.46732196535594994,309.840185742433618543,0.00000000000000000000,1.00000000000000000000,-0.2164836317546524613,0.29095316789562164494,0.93192332907477837267,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11072.0060259197798586,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -56 ,0 ,189.829501918214134548,191.314931797095823640,0.00000000000000000000,1.00000000000000000000,0.18893666105557643808,0.18543104330934043200,0.96432269821174454449,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11036.4485672634255024,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -57 ,0 ,170.442777546207338446,240.197805611132423564,0.00000000000000000000,1.00000000000000000000,0.16839252441664676052,0.23165282096157344127,0.95811321265345994468,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11043.1438669143408333,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -58 ,0 ,146.092845294434482639,280.685167757054102821,0.00000000000000000000,1.00000000000000000000,0.14336796993660966270,0.26931583399852482285,0.95232064282673933863,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11049.4603382310579036,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -59 ,0 ,117.749215929928055857,313.048107608245118171,0.00000000000000000000,1.00000000000000000000,0.11489190094252572926,0.29897904297461291855,0.94731799463527399662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11054.9726421940504224,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -60 ,0 ,86.3153801579585149283,337.358209748164938446,0.00000000000000000000,1.00000000000000000000,0.08384223931010165165,0.32098816972807486802,0.94336476179794193086,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11059.3671679863218741,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -61 ,0 ,52.6739581813208772587,353.600155890335088315,0.00000000000000000000,1.00000000000000000000,0.05100644694201526829,0.33555780575314031466,0.94063770994389150903,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11062.4188572657330951,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,0 ,17.7056218900040605035,361.734897698176609992,0.00000000000000000000,1.00000000000000000000,0.01711809069229951532,0.34281353760220228954,0.93924749103083216006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11063.9810053745786717,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -63 ,0 ,-17.705621890003971685,361.734897698176609992,0.00000000000000000000,1.00000000000000000000,-0.0171180906922994320,0.34281353760220228954,0.93924749103083216006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11063.9810053745786717,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -64 ,0 ,-52.673958181320791993,353.600155890335088315,0.00000000000000000000,1.00000000000000000000,-0.0510064469420151850,0.33555780575314031466,0.94063770994389150903,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11062.4188572657330951,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -65 ,0 ,-86.315380157958443874,337.358209748164938446,0.00000000000000000000,1.00000000000000000000,-0.0838422393101015822,0.32098816972807486802,0.94336476179794193086,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11059.3671679863218741,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -66 ,0 ,-117.74921592992797059,313.048107608245118171,0.00000000000000000000,1.00000000000000000000,-0.1148919009425256460,0.29897904297461291855,0.94731799463527399662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11054.9726421940504224,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,0 ,-146.09284529443439737,280.685167757054102821,0.00000000000000000000,1.00000000000000000000,-0.1433679699366095794,0.26931583399852482285,0.95232064282673933863,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11049.4603382310579036,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -68 ,0 ,-170.44277754620728160,240.197805611132423564,0.00000000000000000000,1.00000000000000000000,-0.1683925244166467050,0.23165282096157344127,0.95811321265345994468,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11043.1438669143408333,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -69 ,0 ,-189.82950191821410612,191.314931797095823640,0.00000000000000000000,1.00000000000000000000,-0.1889366610555764103,0.18543104330934043200,0.96432269821174454449,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11036.4485672634255024,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -70 ,0 ,152.133386063648288200,54.2437959204190605078,0.00000000000000000000,1.00000000000000000000,0.15543433699995390373,0.05337208445306104026,0.98640335942378032374,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11013.4980429036186251,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -71 ,0 ,139.163184853043389921,107.845899946611211817,0.00000000000000000000,1.00000000000000000000,0.14162228348111099984,0.10647356540324959262,0.98417808789462257745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11015.8180204187810886,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -72 ,0 ,120.702782759042506199,150.856044470483425357,0.00000000000000000000,1.00000000000000000000,0.12233471959934390238,0.14878350242165105932,0.98127350203075192069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11018.8401660505351173,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -73 ,0 ,98.0423477363292192876,184.534091292069803103,0.00000000000000000000,1.00000000000000000000,0.09899732206273360868,0.18164581954712952227,0.97836819575528854997,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11021.8720282029880763,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -74 ,0 ,72.2311845249172534977,209.486614379478140790,0.00000000000000000000,1.00000000000000000000,0.07271223390985659396,0.20581071718899998646,0.97588671459856823897,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11024.4716582585770083,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -75 ,0 ,44.2126864682877069867,226.011085937936400114,0.00000000000000000000,1.00000000000000000000,0.04441146022882219018,0.22171788954723087305,0.97409896810081131324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11026.3509294762206991,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -76 ,0 ,14.8826940022209797120,234.246329050444558106,0.00000000000000000000,1.00000000000000000000,0.01493302664162572679,0.22961523198930527955,0.97316691782746989058,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11027.3329279012705228,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -77 ,0 ,-14.882694002220908657,234.246329050444558106,0.00000000000000000000,1.00000000000000000000,-0.0149330266416256574,0.22961523198930527955,0.97316691782746989058,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11027.3329279012705228,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -78 ,0 ,-44.212686468287635932,226.011085937936400114,0.00000000000000000000,1.00000000000000000000,-0.0444114602288221207,0.22171788954723087305,0.97409896810081131324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11026.3509294762206991,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -79 ,0 ,-72.231184524917324552,209.486614379478140790,0.00000000000000000000,1.00000000000000000000,-0.0727122339098566633,0.20581071718899998646,0.97588671459856823897,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11024.4716582585770083,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -80 ,0 ,-98.042347736329162444,184.534091292069803103,0.00000000000000000000,1.00000000000000000000,-0.0989973220627335531,0.18164581954712952227,0.97836819575528854997,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11021.8720282029880763,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -81 ,0 ,-120.70278275904243514,150.856044470483425357,0.00000000000000000000,1.00000000000000000000,-0.1223347195993438329,0.14878350242165105932,0.98127350203075192069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11018.8401660505351173,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -82 ,0 ,-139.16318485304333307,107.845899946611211817,0.00000000000000000000,1.00000000000000000000,-0.1416222834811109443,0.10647356540324959262,0.98417808789462257745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11015.8180204187810886,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -83 ,0 ,-152.13338606364825977,54.2437959204190605078,0.00000000000000000000,1.00000000000000000000,-0.1554343369999538482,0.05337208445306104026,0.98640335942378032374,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11013.4980429036186251,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -84 ,0 ,104.704277371219291126,-139.57778053893343894,0.00000000000000000000,1.00000000000000000000,0.10787607600417913056,-0.1381470041063079245,0.98451925196127665351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11015.5136883350660355,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -85 ,0 ,102.782910521688194194,-63.321946044953818955,0.00000000000000000000,1.00000000000000000000,0.10618566561347535237,-0.0633359706695636598,0.99232714325345705574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11007.5755909801719099,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -86 ,0 ,92.4256006764772592987,-8.7889253026205764740,0.00000000000000000000,1.00000000000000000000,0.09551547712748369167,-0.0089763077169466142,0.99538747205742927892,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11004.5250516346332005,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -87 ,0 ,76.6735770104845926198,31.4285908688529680432,0.00000000000000000000,1.00000000000000000000,0.07918204727153715927,0.03133986667894034933,0.99636741021895836034,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.5730812379206327,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -88 ,0 ,57.2151183251668626894,60.1999842254680004316,0.00000000000000000000,1.00000000000000000000,0.05902941968988534987,0.06021775366856126077,0.99643833213811461302,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.5266365285151550,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -89 ,0 ,35.2821701913862710853,78.8599500165020828035,0.00000000000000000000,1.00000000000000000000,0.03637031714324943237,0.07893847484486506138,0.99621579851961072904,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.7662906061359535,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -90 ,0 ,11.9173163214155231059,88.0558030793668820024,0.00000000000000000000,1.00000000000000000000,0.01227902527454624234,0.08815754725741943576,0.99603085916042888303,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.9600271431700093,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,0 ,-11.917316321415468038,88.0558030793668820024,0.00000000000000000000,1.00000000000000000000,-0.0122790252745461868,0.08815754725741943576,0.99603085916042888303,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.9600271431700093,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -92 ,0 ,-35.282170191386214241,78.8599500165020828035,0.00000000000000000000,1.00000000000000000000,-0.0363703171432493768,0.07893847484486506138,0.99621579851961072904,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.7662906061359535,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -93 ,0 ,-57.215118325166827162,60.1999842254680004316,0.00000000000000000000,1.00000000000000000000,-0.0590294196898853151,0.06021775366856126077,0.99643833213811461302,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.5266365285151550,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -94 ,0 ,-76.673577010484549987,31.4285908688529680432,0.00000000000000000000,1.00000000000000000000,-0.0791820472715371176,0.03133986667894034933,0.99636741021895836034,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11003.5730812379206327,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -95 ,0 ,-92.425600676477202455,-8.7889253026205764740,0.00000000000000000000,1.00000000000000000000,-0.0955154771274836361,-0.0089763077169466142,0.99538747205742927892,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11004.5250516346332005,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -96 ,0 ,-102.78291052168815156,-63.321946044953818955,0.00000000000000000000,1.00000000000000000000,-0.1061856656134753107,-0.0633359706695636598,0.99232714325345705574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11007.5755909801719099,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -97 ,0 ,-104.70427737121926270,-139.57778053893341052,0.00000000000000000000,1.00000000000000000000,-0.1078760760041791028,-0.1381470041063078968,0.98451925196127665351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11015.5136883350660355,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -98 ,0 ,45.8699450064920881686,-224.72548027658478986,0.00000000000000000000,1.00000000000000000000,0.04710673871608525575,-0.2192764613002423645,0.97452490408771863528,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11026.0917502723714278,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -99 ,0 ,37.3447902404988738567,-165.23434478111806811,0.00000000000000000000,1.00000000000000000000,0.03858360052800579448,-0.1632012136759980469,0.98583805446177419362,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11014.3245021894017554,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -100 ,0 ,23.9156669137862394336,-133.36276348870393348,0.00000000000000000000,1.00000000000000000000,0.02477395397021868450,-0.1324256668709981599,0.99088328977657724738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11009.1756293738162639,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -101 ,0 ,8.20485620587934327829,-118.71485344211288293,0.00000000000000000000,1.00000000000000000000,0.00850830844429532190,-0.1181344902474044805,0.99296115276550600547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11007.0732822886748181,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -102 ,0 ,-8.2048562058793130802,-118.71485344211288293,0.00000000000000000000,1.00000000000000000000,-0.0085083084442952924,-0.1181344902474044805,0.99296115276550600547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11007.0732822886748181,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -103 ,0 ,-23.915666913786214564,-133.36276348870393348,0.00000000000000000000,1.00000000000000000000,-0.0247739539702186602,-0.1324256668709981599,0.99088328977657724738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11009.1756293738162639,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -104 ,0 ,-37.344790240498859645,-165.23434478111806811,0.00000000000000000000,1.00000000000000000000,-0.0385836005280057806,-0.1632012136759980469,0.98583805446177419362,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11014.3245021894017554,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -105 ,0 ,-45.869945006492073957,-224.72548027658478986,0.00000000000000000000,1.00000000000000000000,-0.0471067387160852418,-0.2192764613002423645,0.97452490408771863528,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11026.0917502723714278,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -106 ,0 ,340.062081529641375254,641.905974507232372161,0.00000000000000000000,1.00000000000000000000,0.28136383983097623673,0.52292271489269159800,0.80460314682756783888,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11238.6902109246584586,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -107 ,0 ,301.010109141215764338,700.585894649511942589,0.00000000000000000000,1.00000000000000000000,0.24467644943961505688,0.56120044852157879855,0.79068798629345693473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11260.2037241539746901,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -108 ,0 ,255.633568603311033484,751.212145862438092080,0.00000000000000000000,1.00000000000000000000,0.20462015552100118465,0.59297738222383089556,0.77878650227487500323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11279.2063673107913928,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -109 ,0 ,204.816435082061900629,792.939516606974962087,0.00000000000000000000,1.00000000000000000000,0.16187235004146308114,0.61832696888045501903,0.76907028407497479705,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11295.1509357510039990,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/ReflectionZonePlateMis.rayui.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateMis.rayui.csv deleted file mode 100644 index 03913c969..000000000 --- a/Intern/RAY-Core/tests/output/ReflectionZonePlateMis.rayui.csv +++ /dev/null @@ -1,15 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,15.2178846039660999878,-2.2781223527609300028,0.00000000000000000000,-1.0000000000000000000,0.01801031008177090067,-0.0028696582942683498,0.99983368306535502778,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.08548053346885349512,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,10.5356142692881000755,3.22360224458875022079,0.00000000000000000000,-1.0000000000000000000,0.01200577740199199917,0.00317035935313347014,0.99992290209322898242,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00414843359169481031,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,5.85697712580689966443,5.70436228240112974674,0.00000000000000000000,-1.0000000000000000000,0.00600582222306174015,0.00589002174837695031,0.99996461824567994813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0338995273151568021,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,1.17835572213446004852,6.17807172890308997637,0.00000000000000000000,-1.0000000000000000000,0.00000732386857076085,0.00640402904698393962,0.99997949396891394613,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0474636050861362984,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-3.5008625479243900002,4.77471689655129960527,0.00000000000000000000,-1.0000000000000000000,-0.0059899248630945400,0.00485607872113914991,0.99997026920783405046,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0390290010429907990,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-8.1796149684990808736,1.04297328415851997540,0.00000000000000000000,-1.0000000000000000000,-0.0119842157841875008,0.00075171074130780902,0.99992790415259402703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003513366642664549,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,-12.851394139853800524,-7.5843055842549498279,0.00000000000000000000,-1.0000000000000000000,-0.0179668778842042992,-0.0087250165668843991,0.99980051279492798688,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.11586225743985799352,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,12.6303461839353996509,-1.8455126533041998904,0.00000000000000000000,-1.0000000000000000000,0.01359180796431270002,-0.0032001557375974901,0.99990250612723097223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.02546090943735630079,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,6.50259241149318967245,3.30995668397339981581,0.00000000000000000000,-1.0000000000000000000,0.00638233486785381998,0.00217673719702160019,0.99997726354993199393,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0462311679958702023,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,0.37679136305520199989,4.05224882264321983882,0.00000000000000000000,-1.0000000000000000000,-0.0008239413548985220,0.00294602904564546979,0.99999532100580601490,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0635554096902524040,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,-5.7493518876707501163,0.94312262777681798997,0.00000000000000000000,-1.0000000000000000000,-0.0080282803259114805,-0.0003043487660956450,0.99996772652262999603,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0370802485830381972,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,-11.864444523540699449,-10.379961418191300026,0.00000000000000000000,-1.0000000000000000000,-0.0152165351013050995,-0.0121224721236540995,0.99981073345364801507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.11350310222178500163,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,8.05906768193255018672,-5.0389736197698100639,0.00000000000000000000,-1.0000000000000000000,0.00763188827595532009,-0.0070993922429208400,0.99994567497995801019,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0152301159480430006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-1.1121151417453500886,-3.0317463656366898661,0.00000000000000000000,-1.0000000000000000000,-0.0022606721257867100,-0.0051070991385341801,0.99998440332833604671,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0541880045740298979,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/ReflectionZonePlateMis.rayx.csv b/Intern/RAY-Core/tests/output/ReflectionZonePlateMis.rayx.csv deleted file mode 100644 index fd7f3d990..000000000 --- a/Intern/RAY-Core/tests/output/ReflectionZonePlateMis.rayx.csv +++ /dev/null @@ -1,15 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,15.2178846039658832722,-2.2781223527475913392,0.00000000000000000000,1.00000000000000000000,0.01801031008177082434,-0.0028696582942535722,0.99983368306535491676,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0854805334656703,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,10.5356142692880236921,3.22360224458786026602,0.00000000000000000000,1.00000000000000000000,0.01200577740199196795,0.00317035935313263097,0.99992290209322920446,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0041484335888526,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,5.85697712580690055261,5.70436228240900788932,0.00000000000000000000,1.00000000000000000000,0.00600582222306175056,0.00589002174838571326,0.99996461824567994813,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9661004726876853,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,1.17835572213448580569,6.17807172890279598931,0.00000000000000000000,1.00000000000000000000,0.00000732386857079109,0.00640402904698373406,0.99997949396891450124,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9525363949160237,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-3.5008625479244934730,4.77471689656922571032,0.00000000000000000000,1.00000000000000000000,-0.0059899248630946484,0.00485607872115882948,0.99997026920783416148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9609709989581460,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-8.1796149684991714678,1.04297328416468837453,0.00000000000000000000,1.00000000000000000000,-0.0119842157841875875,0.00075171074131466909,0.99992790415259402703,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996486633335734,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,-12.851394139854226850,-7.5843055842325419746,0.00000000000000000000,1.00000000000000000000,-0.0179668778842046981,-0.0087250165668598441,0.99980051279492854199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1158622574384935,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,12.6303461839353943219,-1.8455126532956118712,0.00000000000000000000,1.00000000000000000000,0.01359180796431275206,-0.0032001557375884986,0.99990250612723052814,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0254609094408806,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,6.50259241149330957654,3.30995668396919651144,0.00000000000000000000,1.00000000000000000000,0.00638233486785394314,0.00217673719701724473,0.99997726354993177189,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9537688320051529,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,0.37679136305527860528,4.05224882263998154030,0.00000000000000000000,1.00000000000000000000,-0.0008239413548984486,0.00294602904564223930,0.99999532100580645899,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9364445903102023,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,-5.7493518876706453113,0.94312262777744770847,0.00000000000000000000,1.00000000000000000000,-0.0080282803259114042,-0.0003043487660948860,0.99996772652262988501,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9629197514132101,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,-11.864444523540672804,-10.379961418208287327,0.00000000000000000000,1.00000000000000000000,-0.0152165351013050318,-0.0121224721236717295,0.99981073345364801507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.1135031022240582,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,8.05906768193266742628,-5.0389736197813146389,0.00000000000000000000,1.00000000000000000000,0.00763188827595545453,-0.0070993922429322293,0.99994567497995823224,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9847698840494558,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-1.1121151417451260456,-3.0317463656277139349,0.00000000000000000000,1.00000000000000000000,-0.0022606721257864953,-0.0051070991385251214,0.99998440332833637977,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9458119954251742,-1.0000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/SphereMirrorDefault.rayui.csv b/Intern/RAY-Core/tests/output/SphereMirrorDefault.rayui.csv deleted file mode 100644 index 17de43482..000000000 --- a/Intern/RAY-Core/tests/output/SphereMirrorDefault.rayui.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-5.3677600809735999121,-0.1037555071667379952,0.00000000000000000000,-1.0000000000000000000,-0.0003304987204870929,0.00495040181985787006,0.99998769207046600548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054554176574583802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-1.7892534737681700107,-0.1051007603064399997,0.00000000000000000000,-1.0000000000000000000,-0.0001101660900611579,0.00495120725985893038,0.99998773662985596111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002423567834739519,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,1.78925347376817001077,-0.1051007603064399997,0.00000000000000000000,-1.0000000000000000000,0.00011016609006115799,0.00495120725985893038,0.99998773662985596111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002423567834739519,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,5.36776008097359991211,-0.1037555071667379952,0.00000000000000000000,-1.0000000000000000000,0.00033049872048709297,0.00495040181985787006,0.99998769207046600548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054554176574583802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-5.3662915670945299240,-0.0107400390678278005,0.00000000000000000000,-1.0000000000000000000,-0.0003322156226594500,0.00165543136278764992,0.99999857458887597694,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087295457876734904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-1.7887639640940800056,-0.0120574697188244994,0.00000000000000000000,-1.0000000000000000000,-0.0001107383900938309,0.00165624250690260999,0.99999862229793501366,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008565552877826120,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,1.78876396409408000565,-0.0120574697188244994,0.00000000000000000000,-1.0000000000000000000,0.00011073839009383099,0.00165624250690260999,0.99999862229793501366,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008565552877826120,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,5.36629156709452992402,-0.0107400390678278005,0.00000000000000000000,-1.0000000000000000000,0.00033221562265945000,0.00165543136278764992,0.99999857458887597694,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00087295457876734904,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-5.3648740126439697917,-0.0095215269232784595,0.00000000000000000000,-1.0000000000000000000,-0.0003339409603230389,-0.0016632660373079900,0.99999856101372697203,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00089813820113704401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-1.7882914408035099906,-0.0108106189879443991,0.00000000000000000000,-1.0000000000000000000,-0.0001113135019370409,-0.0016624490408288800,0.99999861193528194469,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011125960816116300,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,1.78829144080350999068,-0.0108106189879443991,0.00000000000000000000,-1.0000000000000000000,0.00011131350193704099,-0.0016624490408288800,0.99999861193528194469,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011125960816116300,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,5.36487401264396979172,-0.0095215269232784595,0.00000000000000000000,-1.0000000000000000000,0.00033394096032303898,-0.0016632660373079900,0.99999856101372697203,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00089813820113704401,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-5.3635084652299900298,-0.1020911435198449956,0.00000000000000000000,-1.0000000000000000000,-0.0003356749640682820,-0.0050062701380803303,0.99998741221158504721,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00123704682664538007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-1.7878362530949301056,-0.1033513574504929949,0.00000000000000000000,-1.0000000000000000000,-0.0001118915024533910,-0.0050054471345558904,0.99998746641109204080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045040229451842600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,1.78783625309493010568,-0.1033513574504929949,0.00000000000000000000,-1.0000000000000000000,0.00011189150245339100,-0.0050054471345558904,0.99998746641109204080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045040229451842600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,5.36350846522999002985,-0.1020911435198449956,0.00000000000000000000,-1.0000000000000000000,0.00033567496406828201,-0.0050062701380803303,0.99998741221158504721,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00123704682664538007,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-5.3677600809735999121,-0.1037555071667379952,0.00000000000000000000,-1.0000000000000000000,-0.0003304987204870929,0.00495040181985787006,0.99998769207046600548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054554176574583802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-1.7892534737681700107,-0.1051007603064399997,0.00000000000000000000,-1.0000000000000000000,-0.0001101660900611579,0.00495120725985893038,0.99998773662985596111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002423567834739519,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,1.78925347376817001077,-0.1051007603064399997,0.00000000000000000000,-1.0000000000000000000,0.00011016609006115799,0.00495120725985893038,0.99998773662985596111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002423567834739519,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,5.36776008097359991211,-0.1037555071667379952,0.00000000000000000000,-1.0000000000000000000,0.00033049872048709297,0.00495040181985787006,0.99998769207046600548,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00054554176574583802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/SphereMirrorDefault.rayx.csv b/Intern/RAY-Core/tests/output/SphereMirrorDefault.rayx.csv deleted file mode 100644 index 24112bac4..000000000 --- a/Intern/RAY-Core/tests/output/SphereMirrorDefault.rayx.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-5.3677600809741425891,-0.1037555071836690490,0.00000000000000000000,1.00000000000000000000,-0.0003304987204876499,0.00495040181984041007,0.99998769207046633855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005455417667690,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-1.7892534737683509771,-0.1051007603238170440,0.00000000000000000000,1.00000000000000000000,-0.0001101660900613439,0.00495120725984135763,0.99998773662985618315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997576432160713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,1.78925347376835031099,-0.1051007603238170440,0.00000000000000000000,1.00000000000000000000,0.00011016609006134393,0.00495120725984135763,0.99998773662985618315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997576432160713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,5.36776008097414258912,-0.1037555071836690490,0.00000000000000000000,1.00000000000000000000,0.00033049872048764998,0.00495040181984041007,0.99998769207046633855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005455417667690,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-5.3662915670950717128,-0.0107400390736730189,0.00000000000000000000,1.00000000000000000000,-0.0003322156226599957,0.00165543136278176509,0.99999857458887575489,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008729545788810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-1.7887639640942578633,-0.0120574697248357568,0.00000000000000000000,1.00000000000000000000,-0.0001107383900940133,0.00165624250689649248,0.99999862229793456958,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000856555288919,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,1.78876396409425741929,-0.0120574697248357568,0.00000000000000000000,1.00000000000000000000,0.00011073839009401330,0.00165624250689649248,0.99999862229793456958,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000856555288919,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,5.36629156709507171285,-0.0107400390736730189,0.00000000000000000000,1.00000000000000000000,0.00033221562265999579,0.00165543136278176509,0.99999857458887575489,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008729545788810,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-5.3648740126445080278,-0.0095215269172568509,0.00000000000000000000,1.00000000000000000000,-0.0003339409603235738,-0.0016632660373021757,0.99999856101372663896,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008981382034107,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,-1.7882914408036891806,-0.0108106189822164168,0.00000000000000000000,1.00000000000000000000,-0.0001113135019372191,-0.0016624490408229330,0.99999861193528216674,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001112596073653,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,1.78829144080368873659,-0.0108106189822164168,0.00000000000000000000,1.00000000000000000000,0.00011131350193721909,-0.0016624490408229330,0.99999861193528216674,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001112596073653,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,5.36487401264450802784,-0.0095215269172568509,0.00000000000000000000,1.00000000000000000000,0.00033394096032357382,-0.0016632660373021757,0.99999856101372663896,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0008981382034107,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,-5.3635084652305300423,-0.1020911435019623836,0.00000000000000000000,1.00000000000000000000,-0.0003356749640688047,-0.0050062701380619968,0.99998741221158538028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012370468248263,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-1.7878362530951126263,-0.1033513574325301831,0.00000000000000000000,1.00000000000000000000,-0.0001118915024535652,-0.0050054471345379334,0.99998746641109204080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004504022945184,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,1.78783625309511218226,-0.1033513574325301831,0.00000000000000000000,1.00000000000000000000,0.00011189150245356524,-0.0050054471345379334,0.99998746641109204080,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004504022945184,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,5.36350846523053004233,-0.1020911435019623836,0.00000000000000000000,1.00000000000000000000,0.00033567496406880476,-0.0050062701380619968,0.99998741221158538028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0012370468248263,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-5.3677600809741425891,-0.1037555071836690490,0.00000000000000000000,1.00000000000000000000,-0.0003304987204876499,0.00495040181984041007,0.99998769207046633855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005455417667690,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-1.7892534737683509771,-0.1051007603238170440,0.00000000000000000000,1.00000000000000000000,-0.0001101660900613439,0.00495120725984135763,0.99998773662985618315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997576432160713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,1.78925347376835031099,-0.1051007603238170440,0.00000000000000000000,1.00000000000000000000,0.00011016609006134393,0.00495120725984135763,0.99998773662985618315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997576432160713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,5.36776008097414258912,-0.1037555071836690490,0.00000000000000000000,1.00000000000000000000,0.00033049872048764998,0.00495040181984041007,0.99998769207046633855,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005455417667690,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/ellipsoid_ip_200mirrormis.rayui.csv b/Intern/RAY-Core/tests/output/ellipsoid_ip_200mirrormis.rayui.csv deleted file mode 100644 index af0e437e7..000000000 --- a/Intern/RAY-Core/tests/output/ellipsoid_ip_200mirrormis.rayui.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.9997068881918810268,-6.5098105428975996389,0.00000000000000000000,-1.0000000000000000000,0.00411371158906159023,-0.0054972188147996399,0.99997642870332903441,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014058800000000,-0.6583254576978559979,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-0.9777654434418360240,-6.5381739454329297345,0.00000000000000000000,-1.0000000000000000000,0.00334682148727753021,-0.0055070067493845900,0.99997923561571699924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006992840,-0.0000000409673000000,-0.6580852568138200187,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,-0.9557608929531899999,-6.5664852450528297111,0.00000000000000000000,-1.0000000000000000000,0.00257986754533321002,-0.0055205826498128697,0.99998143355297097745,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014060500000000,-0.6578620369189139838,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,-0.9336932501948730367,-6.5947444929580703032,0.00000000000000000000,-1.0000000000000000000,0.00181287847324791999,-0.0055379476909004398,0.99998302215938394965,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013651799999999,-0.6576557897992639789,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-0.9115625281495229881,-6.6229517409446803100,0.00000000000000000000,-1.0000000000000000000,0.00104588299934056010,-0.0055591027650749901,0.99998400112461804933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006990070,-0.0000000409590000000,-0.6574665071478880129,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-0.8893687393064779733,-6.6511070413984203497,0.00000000000000000000,-1.0000000000000000000,0.00027890986666828301,-0.0055840484820936500,0.99998437018377295260,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013654000000000,-0.6572941805436589568,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,-0.8671118956545950107,-6.6792104472888995658,0.00000000000000000000,-1.0000000000000000000,-0.0004880121705398009,-0.0056127851688049798,0.99998412911744305464,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6571388014796180065,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,-0.8447920086749960422,-6.7072620121639596746,0.00000000000000000000,-1.0000000000000000000,-0.0012548543504533600,-0.0056453128689600796,0.99998327775176898413,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013656500000000,-0.6570003613460360103,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-0.8224090893343669605,-6.7352617901429603364,0.00000000000000000000,-1.0000000000000000000,-0.0020215879072153501,-0.0056816313430884095,0.99998181595847801528,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013657799999999,-0.6568788514282459800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-0.7999631480778679470,-6.7632098359123400399,0.00000000000000000000,-1.0000000000000000000,-0.0027881840745185302,-0.0057217400684153596,0.99997974365491804071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6567742629227949491,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,-0.7774541948222789544,-6.7911062047179804324,0.00000000000000000000,-1.0000000000000000000,-0.0035546140891839998,-0.0057656382388344695,0.99997706080408499396,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013660699999999,-0.6566865869324369775,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,-0.7548822389495060125,-6.8189509523596196771,0.00000000000000000000,-1.0000000000000000000,-0.0043208491947402203,-0.0058133247649412300,0.99997376741463295246,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013662299999999,-0.6566158144585190203,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-0.7322472892997939908,-6.8467441351853803865,0.00000000000000000000,-1.0000000000000000000,-0.0050868606450017598,-0.0058647982741106803,0.99996986354088801540,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013663900000000,-0.6565619364074559705,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-0.7095493541651749502,-6.8744858100833203806,0.00000000000000000000,-1.0000000000000000000,-0.0058526197076468697,-0.0059200571106273703,0.99996534928284697141,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014074900000000,-0.6565249436038129715,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,-1.0277416608720399970,-6.5280166896232003637,0.00000000000000000000,-1.0000000000000000000,0.00406457661773941027,-0.0062947080016805302,0.99997192754001495984,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013679300000000,-0.6583341614956450538,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,-1.0057658329793799367,-6.5564495673455400748,0.00000000000000000000,-1.0000000000000000000,0.00330150776366109005,-0.0063047062724147003,0.99997467504197601328,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013680099999999,-0.6580718099246499752,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-0.9837269008572190331,-6.5848304614357804354,0.00000000000000000000,-1.0000000000000000000,0.00253837703031753979,-0.0063184643449757400,0.99997681655645098697,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006962830,-0.0000000408795000000,-0.6578264188827920300,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-0.9616248771563320474,-6.6131594230284003188,0.00000000000000000000,-1.0000000000000000000,0.00177521284737777989,-0.0063359833702795699,0.99997835173271498732,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014090800000000,-0.6575979801409630454,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,-0.9394597740431029908,-6.6414365038438596400,0.00000000000000000000,-1.0000000000000000000,0.00101204366244869010,-0.0063572642203135196,0.99997928026497595599,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013683099999999,-0.6573864853669419971,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,-0.9172316031922670420,-6.6696617561816298191,0.00000000000000000000,-1.0000000000000000000,0.00024889793756609500,-0.0063823074878477902,0.99997960189243195738,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014092899999999,-0.6571919261506310450,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -20 ,0 ,-0.8949403757799250236,-6.6978352329172103907,0.00000000000000000000,-1.0000000000000000000,-0.0005141958543196890,-0.0064111134862067696,0.99997931639934001246,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014094100000000,-0.6570142939626749667,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -21 ,0 ,-0.8725861024767079809,-6.7259569874931504074,0.00000000000000000000,-1.0000000000000000000,-0.0012772092328629299,-0.0064436822490897003,0.99997842361505395736,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013686699999999,-0.6568535801766299808,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -22 ,0 ,-0.8501687934407109459,-6.7540270739167196367,0.00000000000000000000,-1.0000000000000000000,-0.0020401137138443899,-0.0064800135304395297,0.99997692341407495852,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013687999999999,-0.6567097760837440345,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -23 ,0 ,-0.8276884583109800352,-6.7820455467506297608,0.00000000000000000000,-1.0000000000000000000,-0.0028028808126959597,-0.0065201068043718697,0.99997481571608104466,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013689399999999,-0.6565828728712399531,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -24 ,0 ,-0.8051451062007020098,-6.8100124611089398740,0.00000000000000000000,-1.0000000000000000000,-0.0035654820480269101,-0.0065639612651491301,0.99997210048594598053,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006953470,-0.0000000408515000000,-0.6564728616292540008,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -25 ,0 ,-0.7825387456905550376,-6.8379278726500896112,0.00000000000000000000,-1.0000000000000000000,-0.0043278889451505899,-0.0066115758272058400,0.99996877773376502407,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013692500000000,-0.6563797333654970422,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -26 ,0 ,-0.7598693848222309865,-6.8657918375716002756,0.00000000000000000000,-1.0000000000000000000,-0.0050900730396107795,-0.0066629491252311297,0.99996484751485503750,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013694200000000,-0.6563034789755870512,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -27 ,0 ,-0.7371370310922850110,-6.8936044126021798206,0.00000000000000000000,-1.0000000000000000000,-0.0058520058807072297,-0.0067180795143063597,0.99996030992975504236,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6562440892822679616,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -28 ,0 ,-1.0558466178684200453,-6.5462955950300196761,0.00000000000000000000,-1.0000000000000000000,0.00401577588793356008,-0.0070883489654358601,0.99996681387582198041,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014117400000000,-0.6583265683799479628,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -29 ,0 ,-1.0338363065487599090,-6.5747979767704398668,0.00000000000000000000,-1.0000000000000000000,0.00325650063581291995,-0.0070985549209994797,0.99996950239576998242,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013710300000000,-0.6580420606404689953,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -30 ,0 ,-1.0117628923374200056,-6.6032484932165802504,0.00000000000000000000,-1.0000000000000000000,0.00249716543540193019,-0.0071124927881436898,0.99997158790193996225,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014119100000000,-0.6577744930303880410,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -31 ,0 ,-0.9896263870780670490,-6.6316471954348497064,0.00000000000000000000,-1.0000000000000000000,0.00173779843939851998,-0.0071301636943086298,0.99997307004852697964,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013712200000000,-0.6575238573127539787,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -32 ,0 ,-0.9674268021315040044,-6.6599941350679703333,0.00000000000000000000,-1.0000000000000000000,0.00097842781808442510,-0.0071515684914035797,0.99997394853421994742,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013713200000000,-0.6572901451412459516,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -33 ,0 ,-0.9451641483687269751,-6.6882893643304397457,0.00000000000000000000,-1.0000000000000000000,0.00021908175586688900,-0.0071767077555316399,0.99997422310226402597,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013714399999999,-0.6570733480853050423,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -34 ,0 ,-0.9228384361640239452,-6.7165329360010197490,0.00000000000000000000,-1.0000000000000000000,-0.0005402115521848270,-0.0072055817867613903,0.99997389354052301779,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6568734576131870506,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -35 ,0 ,-0.9004496753882389459,-6.7447249034189198368,0.00000000000000000000,-1.0000000000000000000,-0.0012994239038070199,-0.0072381906089553100,0.99997295968152399847,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006928660,-0.0000000407787000000,-0.6566904650957210431,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -36 ,0 ,-0.8779978754018610276,-6.7728653204759998729,0.00000000000000000000,-1.0000000000000000000,-0.0020585270930123999,-0.0072745339696381203,0.99997142140249795083,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6565243618019850346,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -37 ,0 ,-0.8554830450485919612,-6.8009542416129402653,0.00000000000000000000,-1.0000000000000000000,-0.0028174929135635000,-0.0073146113399313299,0.99996927862541296061,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014127300000000,-0.6563751389180649820,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -38 ,0 ,-0.8329051926487389678,-6.8289917218110298691,0.00000000000000000000,-1.0000000000000000000,-0.0035762931624474698,-0.0073584219145274602,0.99996653131699597683,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014128799999999,-0.6562427875359160278,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -39 ,0 ,-0.8102643259926060048,-6.8569778165879800013,0.00000000000000000000,-1.0000000000000000000,-0.0043348996433512799,-0.0074059646117164397,0.99996317948875101944,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006922930,-0.0000000407622000000,-0.6561272986475610302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -40 ,0 ,-0.7875604523343250340,-6.8849125819908101320,0.00000000000000000000,-1.0000000000000000000,-0.0050932841701370398,-0.0074572380734710397,0.99995922319696495250,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014131900000000,-0.6560286631615780406,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -41 ,0 ,-0.7647935783854169500,-6.9127960745893499705,0.00000000000000000000,-1.0000000000000000000,-0.0058514185703157396,-0.0075122406655730401,0.99995466254270604089,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013726100000000,-0.6559468718937749853,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -42 ,0 ,-1.0840217461184400438,-6.5646471849007097532,0.00000000000000000000,-1.0000000000000000000,0.00396730615576122973,-0.0078781688762888397,0.99996109671177901834,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6583026359421639828,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -43 ,0 ,-1.0619768520779999665,-6.5932190992512396121,0.00000000000000000000,-1.0000000000000000000,0.00321179712247974006,-0.0078885799004742001,0.99996372667532196221,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006906280,-0.0000000407128000000,-0.6579959665720029882,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -44 ,0 ,-1.0398688563152600483,-6.6217392657100901942,0.00000000000000000000,-1.0000000000000000000,0.00245623004243695998,-0.0079026952164919506,0.99996575658484099236,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014148400000000,-0.6577062169949390302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -45 ,0 ,-1.0176977698773699287,-6.6502077352750603722,0.00000000000000000000,-1.0000000000000000000,0.00170063279469100992,-0.0079205159287141207,0.99996718609938495259,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006904200,-0.0000000407075000000,-0.6574333789599220434,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -46 ,0 ,-0.9954636033303100317,-6.6786245595112498918,0.00000000000000000000,-1.0000000000000000000,0.00094503327553647001,-0.0079420428693359208,0.99996801492206199846,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013743300000000,-0.6571774441150639578,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -47 ,0 ,-0.9731663667519599991,-6.7069897905453403907,0.00000000000000000000,-1.0000000000000000000,0.00018945939509606600,-0.0079672765981019192,0.99996824280011398222,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013744500000000,-0.6569384040120670453,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -48 ,0 ,-0.9508060697255320548,-6.7353034810606597915,0.00000000000000000000,-1.0000000000000000000,-0.0005660609260926549,-0.0079962174020904407,0.99996786952495997358,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6567162501095249460,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -49 ,0 ,-0.9283827213326489857,-6.7635656842904001706,0.00000000000000000000,-1.0000000000000000000,-0.0013214997604944899,-0.0080288652955346501,0.99996689493225199285,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006900040,-0.0000000406943000000,-0.6565109737709919901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -50 ,0 ,-0.9058963301469380446,-6.7917764540128997552,0.00000000000000000000,-1.0000000000000000000,-0.0020768291769972298,-0.0080652200197080508,0.99996531890191198144,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6563225662630429724,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -51 ,0 ,-0.8833469042274419980,-6.8199358445447799681,0.00000000000000000000,-1.0000000000000000000,-0.0028320212443345201,-0.0081052810428499100,0.99996314135816399826,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014156600000000,-0.6561510187669910010,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -52 ,0 ,-0.8607344511121469698,-6.8480439107357700123,0.00000000000000000000,-1.0000000000000000000,-0.0035870480345100001,-0.0081490475601448397,0.99996036226955598014,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014158099999999,-0.6559963223616019911,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -53 ,0 ,-0.8380589778118180399,-6.8761007079620597437,0.00000000000000000000,-1.0000000000000000000,-0.0043418816262224303,-0.0081965184937561903,0.99995698164897295345,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013752899999999,-0.6558584680440160408,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -54 ,0 ,-0.8153204908033789832,-6.9041062921213303127,0.00000000000000000000,-1.0000000000000000000,-0.0050964941082899698,-0.0082476924928973592,0.99995299955365202215,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6557374467105320237,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -55 ,0 ,-0.7925189960242380315,-6.9320607196238297476,0.00000000000000000000,-1.0000000000000000000,-0.0058508575830737803,-0.0083025679339722695,0.99994841608517204267,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013756299999999,-0.6556332491793459560,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -56 ,0 ,-1.1122670327040400373,-6.5830713859590996861,0.00000000000000000000,-1.0000000000000000000,0.00391916421544795997,-0.0086641946571961395,0.99995478491919598251,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013769600000000,-0.6582623222894879999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -57 ,0 ,-1.0901874576277699180,-6.6117128612750901694,0.00000000000000000000,-1.0000000000000000000,0.00316739427744232001,-0.0086748081683877299,0.99995735674914298929,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014176700000000,-0.6579334858309949796,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -58 ,0 ,-1.0680447818327600817,-6.6403027051790903811,0.00000000000000000000,-1.0000000000000000000,0.00241556816522480984,-0.0086890986189301407,0.99995933147085003245,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013771399999999,-0.6576215488948949916,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -59 ,0 ,-1.0458390155802099741,-6.6688409685988201403,0.00000000000000000000,-1.0000000000000000000,0.00166371348749745997,-0.0087070670905319298,0.99996070874815501383,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014178599999999,-0.6573265032168359445,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -60 ,0 ,-1.0235701686516800457,-6.6973277030203899329,0.00000000000000000000,-1.0000000000000000000,0.00091185786985804699,-0.0087287143960247393,0.99996148828853304024,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014179599999999,-0.6570483404340170530,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -61 ,0 ,-1.0012382503425401036,-6.7257629604828998992,0.00000000000000000000,-1.0000000000000000000,0.00016002895144105999,-0.0087540410791038195,0.99996166984316003922,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6567870520839279580,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -62 ,0 ,-0.9788432694552909874,-6.7541467935726799964,0.00000000000000000000,-1.0000000000000000000,-0.0005917456184463830,-0.0087830474141091206,0.99996125320696505056,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013775800000000,-0.6565426296201619660,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -63 ,0 ,-0.9563852342930250216,-6.7824792554170203473,0.00000000000000000000,-1.0000000000000000000,-0.0013434381836921499,-0.0088157334058583895,0.99996023821868196268,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6563150643999049460,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -64 ,0 ,-0.9338641526529409819,-6.8107603996802801304,0.00000000000000000000,-1.0000000000000000000,-0.0020950210847502002,-0.0088520987895307507,0.99995862476088204218,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013778400000000,-0.6561043476764329973,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -65 ,0 ,-0.9112800318198940319,-6.8389902805547801989,0.00000000000000000000,-1.0000000000000000000,-0.0028464666620138701,-0.0088921430305930991,0.99995641276000901687,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013779899999999,-0.6559104706252579797,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -66 ,0 ,-0.8886328785602100044,-6.8671689527586403656,0.00000000000000000000,-1.0000000000000000000,-0.0035977472591904400,-0.0089358653247884091,0.99995360218639994798,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006867420,-0.0000000405983000000,-0.6557334243234439474,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -67 ,0 ,-0.8659226991152959573,-6.8952964715271001239,0.00000000000000000000,-1.0000000000000000000,-0.0043488352266764698,-0.0089832645981581804,0.99995019305429999612,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013783000000000,-0.6555731997664220322,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -68 ,0 ,-0.8431494991956669515,-6.9233728926075803755,0.00000000000000000000,-1.0000000000000000000,-0.0050997029249324598,-0.0090343395071281196,0.99994618542186897158,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006864470,-0.0000000405893000000,-0.6554297878490159545,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -69 ,0 ,-0.8203132839747410143,-6.9513982722518301571,0.00000000000000000000,-1.0000000000000000000,-0.0058503227278568900,-0.0090890884386307102,0.99994157939118399891,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014192200000000,-0.6553031793904440238,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -70 ,0 ,-1.1405824648497699946,-6.6015681258585896529,0.00000000000000000000,-1.0000000000000000000,0.00387134689879729994,-0.0094464529865681007,0.99994788724171101979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006850250,-0.0000000405477000000,-0.6582055859802270481,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -71 ,0 ,-1.1184681113896399740,-6.6302791902624500508,0.00000000000000000000,-1.0000000000000000000,0.00312328918902758006,-0.0094572664372286098,0.99995040135807600201,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013800500000000,-0.6578545769951920085,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -72 ,0 ,-1.0962906580510400900,-6.6589387388208995943,0.00000000000000000000,-1.0000000000000000000,0.00237517714907407992,-0.0094717297388389205,0.99995232129800404319,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013801399999999,-0.6575204473269880001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -73 ,0 ,-1.0740501143196399258,-6.6875468223920098154,0.00000000000000000000,-1.0000000000000000000,0.00162703812051942010,-0.0094898439508405204,0.99995364673005904254,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014207800000000,-0.6572031886893230367,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -74 ,0 ,-1.0517464892029300127,-6.7161034923820697173,0.00000000000000000000,-1.0000000000000000000,0.00087889946150812104,-0.0095116098670506299,0.99995437736602399425,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014208799999999,-0.6569027927185969728,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -75 ,0 ,-1.0293797912241200442,-6.7446088007415498921,0.00000000000000000000,-1.0000000000000000000,0.00013078854343548301,-0.0095370280154135102,0.99995451296096005133,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014210000000000,-0.6566192509401389543,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -76 ,0 ,-1.0069500284154200286,-6.7730627999584500642,0.00000000000000000000,-1.0000000000000000000,-0.0006172672523675429,-0.0095660986577845701,0.99995405331325504239,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013805800000000,-0.6563525547931019499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -77 ,0 ,-0.9844572083117090199,-6.8014655430550501336,0.00000000000000000000,-1.0000000000000000000,-0.0013652405379536900,-0.0095988217897695592,0.99995299826467998194,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013807100000000,-0.6561026956270550325,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -78 ,0 ,-0.9619013379440519706,-6.8298170835797495925,0.00000000000000000000,-1.0000000000000000000,-0.0021131039220815698,-0.0096351971406067292,0.99995134770041504967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006842100,-0.0000000405230000000,-0.6558696646975480382,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -79 ,0 ,-0.9392824238335729658,-6.8581174756021097138,0.00000000000000000000,-1.0000000000000000000,-0.0028608300135401902,-0.0096752241731033992,0.99994910154909100175,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013809999999999,-0.6556534531700890511,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -80 ,0 ,-0.9166004719850899817,-6.8863667737075902053,0.00000000000000000000,-1.0000000000000000000,-0.0036083914244748800,-0.0097189020836148092,0.99994625978280304856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006839150,-0.0000000405148000000,-0.6554540521141229980,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -81 ,0 ,-0.8938554878811849624,-6.9145650329900396613,0.00000000000000000000,-1.0000000000000000000,-0.0043557607737135699,-0.0097662298020774803,0.99994282241712995062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006837760,-0.0000000405104000000,-0.6552714525265630474,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -82 ,0 ,-0.8710474764760980370,-6.9427123090478799483,0.00000000000000000000,-1.0000000000000000000,-0.0051029106900929302,-0.0098172059920893506,0.99993878951113701614,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014219799999999,-0.6551056452998410550,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -83 ,0 ,-0.8481764421897239891,-6.9708086579752803757,0.00000000000000000000,-1.0000000000000000000,-0.0058498138157830796,-0.0098718290510321198,0.99993416116737798837,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006834460,-0.0000000405010000000,-0.6549566212473789672,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -84 ,0 ,-1.1689680299207099167,-6.6201373331706099278,0.00000000000000000000,-1.0000000000000000000,0.00382385107466899978,-0.0102249703009429007,0.99994041229730501463,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013829600000000,-0.6581323860706329575,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -85 ,0 ,-1.1468188016838800624,-6.6489180145529696019,0.00000000000000000000,-1.0000000000000000000,0.00307947897962932001,-0.0102359811771024003,0.99994286911730900779,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6577591991225519851,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -86 ,0 ,-1.1246064742483901088,-6.6776472947569196492,0.00000000000000000000,-1.0000000000000000000,0.00233505437036233979,-0.0102506150767586005,0.99994473467869005034,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013831399999999,-0.6574028713516779642,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -87 ,0 ,-1.1023310563342099133,-6.7063252245680402552,0.00000000000000000000,-1.0000000000000000000,0.00159060432452249006,-0.0102688730374652995,0.99994600865467897499,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006819720,-0.0000000404569000000,-0.6570633944600100528,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -88 ,0 ,-1.0799925561852199429,-6.7349518553123504105,0.00000000000000000000,-1.0000000000000000000,0.00084615593599809697,-0.0102907558343711992,0.99994669076130704432,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014238000000000,-0.6567407600584830307,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -89 ,0 ,-1.0575909815625199605,-6.7635272388501803675,0.00000000000000000000,-1.0000000000000000000,0.00010173631164840500,-0.0103162639799608997,0.99994678075746501466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6564349596761760441,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -90 ,0 ,-1.0351263397383398956,-6.7920514275729502173,0.00000000000000000000,-1.0000000000000000000,-0.0006426274319642480,-0.0103453977238555996,0.99994627844495698187,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013835899999999,-0.6561459847381460042,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -91 ,0 ,-1.0125986374894400121,-6.8205244743948298946,0.00000000000000000000,-1.0000000000000000000,-0.0013869081718454799,-0.0103781570526456003,0.99994518366854201474,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6558738265871399963,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -92 ,0 ,-0.9900078810910319937,-6.8489464327497699969,0.00000000000000000000,-1.0000000000000000000,-0.0021310787818435601,-0.0104145416897843002,0.99994349631597501115,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013838500000000,-0.6556184764702950307,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -93 ,0 ,-0.9673540763105910045,-6.8773173565833003451,0.00000000000000000000,-1.0000000000000000000,-0.0028751121359259302,-0.0104545510955211997,0.99994121631803800642,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013840000000000,-0.6553799255491410402,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -94 ,0 ,-0.9446372284017829912,-6.9056373003487898643,0.00000000000000000000,-1.0000000000000000000,-0.0036189811114569199,-0.0104981844668870002,0.99993834364855405105,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013841499999999,-0.6551581648959650117,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -95 ,0 ,-0.9218573420984189636,-6.9339063189992904412,0.00000000000000000000,-1.0000000000000000000,-0.0043626585924761299,-0.0105454407377222995,0.99993487832440997031,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013843100000000,-0.6549531854902850280,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -96 ,0 ,-0.8990144216085820261,-6.9621244679835498914,0.00000000000000000000,-1.0000000000000000000,-0.0051061174729766104,-0.0105963185787583992,0.99993082040555703038,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014248999999999,-0.6547649782372669813,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -97 ,0 ,-0.8761084706088709816,-6.9902918032384295798,0.00000000000000000000,-1.0000000000000000000,-0.0058493306601815403,-0.0106508163977453006,0.99992616999501005015,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014250699999999,-0.6545935339453310408,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -98 ,0 ,-1.1974237154201499144,-6.6387789373723400387,0.00000000000000000000,-1.0000000000000000000,0.00377667364846629013,-0.0109997727976267004,0.99993236858027301217,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006794390,-0.0000000403821000000,-0.6580426820592040204,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -99 ,0 ,-1.1752395169578500055,-6.6676292633964804323,0.00000000000000000000,-1.0000000000000000000,0.00303596080523571001,-0.0110109786183927998,0.99993476851835394469,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013860399999999,-0.6576473117431760329,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -100 ,0 ,-1.1529922198183799597,-6.6964283020193899886,0.00000000000000000000,-1.0000000000000000000,0.00229519723610545995,-0.0110257808930460006,0.99993658010163100069,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013861299999999,-0.6572687805137320538,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -101 ,0 ,-1.1306818319663500815,-6.7251761039528199503,0.00000000000000000000,-1.0000000000000000000,0.00155440975794706999,-0.0110441806376391001,0.99993780300794099513,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6569070800718459501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -102 ,0 ,-1.1083083608918899987,-6.7538727204420903049,0.00000000000000000000,-1.0000000000000000000,0.00081362520354462798,-0.0110661786089847995,0.99993843695750694866,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006790750,-0.0000000403713000000,-0.6565622020182220186,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -103 ,0 ,-1.0858718136041700663,-6.7825182032569601986,0.00000000000000000000,-1.0000000000000000000,0.00007287041837871200,-0.0110917753043981003,0.99993848171299903881,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014268300000000,-0.6562341378657949864,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -104 ,0 ,-1.0633721966253699697,-6.8111126046903898156,0.00000000000000000000,-1.0000000000000000000,-0.0006678277425946419,-0.0111209709615057005,0.99993793707958700256,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013865800000000,-0.6559228790389399765,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -105 ,0 ,-1.0408095159842600807,-6.8396559775492900001,0.00000000000000000000,-1.0000000000000000000,-0.0014084424181680099,-0.0111537655580806992,0.99993680290497799489,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006787280,-0.0000000403611000000,-0.6556284168688080171,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -106 ,0 ,-1.0181837772102699801,-6.8681483751526002379,0.00000000000000000000,-1.0000000000000000000,-0.0021489467441101598,-0.0111901588119421007,0.99993507907946399537,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013868499999999,-0.6553507425943509989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -107 ,0 ,-0.9954949853271849447,-6.8965898513216101761,0.00000000000000000000,-1.0000000000000000000,-0.0028893138563951198,-0.0112301501808824994,0.99993276553594001576,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013870000000000,-0.6550898473781220365,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -108 ,0 ,-0.9727431448475220010,-6.9249804603767000088,0.00000000000000000000,-1.0000000000000000000,-0.0036295168944332802,-0.0112737388626639994,0.99992986224993296584,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014275000000000,-0.6548457222880870176,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -109 ,0 ,-0.9499282597663919469,-6.9533202571311596429,0.00000000000000000000,-1.0000000000000000000,-0.0043695290043021303,-0.0113209237950431997,0.99992636923960898087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006781900,-0.0000000403447000000,-0.6546183583011500051,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -110 ,0 ,-0.9270503335557439550,-6.9816092968842902166,0.00000000000000000000,-1.0000000000000000000,-0.0051093233419772796,-0.0113717036558493005,0.99992228656578696632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006780170,-0.0000000403402000000,-0.6544077463156550145,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -111 ,0 ,-0.9041093691588160119,-7.0098476354161798340,0.00000000000000000000,-1.0000000000000000000,-0.0058488730765619799,-0.0114260768631160008,0.99991761433192705155,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013876499999999,-0.6542138771435479505,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -112 ,0 ,-1.2259495089876699669,-6.6574928688339900517,0.00000000000000000000,-1.0000000000000000000,0.00372981156163035981,-0.0117708864373041992,0.99992376446316899585,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013889400000000,-0.6579364339231690284,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -113 ,0 ,-1.2037302457836200897,-6.6864128669389897297,0.00000000000000000000,-1.0000000000000000000,0.00299273185496552003,-0.0117822847543657995,0.99992610793098701815,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014293300000000,-0.6575188748281559636,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -114 ,0 ,-1.1814478842683100445,-6.7152816905400598557,0.00000000000000000000,-1.0000000000000000000,0.00225560318353395985,-0.0117972532105024008,0.99992786593382099180,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013891299999999,-0.6571181348043639847,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -115 ,0 ,-1.1591024316607700939,-6.7440993902755996813,0.00000000000000000000,-1.0000000000000000000,0.00151845210652558999,-0.0118157928006383996,0.99992903815405498324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6567342055360539943,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -116 ,0 ,-1.1366938947072700027,-6.7728660173074697326,0.00000000000000000000,-1.0000000000000000000,0.00078130519872763801,-0.0118379042635751996,0.99992962431604803796,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6563670786147209890,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -117 ,0 ,-1.1142222796749901014,-6.8015816233163404191,0.00000000000000000000,-1.0000000000000000000,0.00004418904735444110,-0.0118635880817461996,0.99992962418620001674,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014297400000000,-0.6560167455461399788,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -118 ,0 ,-1.0916875923459901098,-6.8302462604945297641,0.00000000000000000000,-1.0000000000000000000,-0.0006928697511268840,-0.0118928444810198000,0.99992903757299600453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006761080,-0.0000000402825000000,-0.6556831977427459712,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -119 ,0 ,-1.0690898380109199461,-6.8588599815427802042,0.00000000000000000000,-1.0000000000000000000,-0.0014298445941747100,-0.0119256734305450001,0.99992786432705504928,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013897100000000,-0.6553664265287579837,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -120 ,0 ,-1.0464290214631799535,-6.8874228396626602233,0.00000000000000000000,-1.0000000000000000000,-0.0021667088763539701,-0.0119620746426472995,0.99992610434116002693,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013898499999999,-0.6550664231521069469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -121 ,0 ,-1.0237051469930300573,-6.9159348885525595562,0.00000000000000000000,-1.0000000000000000000,-0.0029034359925190498,-0.0120020475727721995,0.99992375755029394568,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013899899999999,-0.6547831787481750431,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -122 ,0 ,-1.0009182183815299449,-6.9443961824004496463,0.00000000000000000000,-1.0000000000000000000,-0.0036399993409981699,-0.0120455914194633004,0.99992082393165204745,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014304099999999,-0.6545166843900459552,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -123 ,0 ,-0.9780682388949649697,-6.9728067758784701979,0.00000000000000000000,-1.0000000000000000000,-0.0043763723267780602,-0.0120927051244013004,0.99991730350466101473,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013903099999999,-0.6542669310553039796,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -124 ,0 ,-0.9551552112790240300,-7.0011667241380504123,0.00000000000000000000,-1.0000000000000000000,-0.0051125283646882698,-0.0121433873724797001,0.99991319633098296737,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013904700000000,-0.6540339096407019603,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -125 ,0 ,-0.9321791377534019984,-7.0294760828015796505,0.00000000000000000000,-1.0000000000000000000,-0.0058484408825845097,-0.0121976365919313003,0.99990850251451202090,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013906499999999,-0.6538176109640969624,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -126 ,0 ,-1.2545453983973200440,-6.6762790588093201549,0.00000000000000000000,-1.0000000000000000000,0.00368326179114332984,-0.0125383369466217000,0.99991460819871602616,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014321499999999,-0.6578136020680179774,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -127 ,0 ,-1.2322909768568199861,-6.7052687562118098441,0.00000000000000000000,-1.0000000000000000000,0.00294978935061000020,-0.0125499253437734992,0.99991689560515695234,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013920200000000,-0.6573738488094700294,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -128 ,0 ,-1.2099734572176299440,-6.7342073911389901397,0.00000000000000000000,-1.0000000000000000000,0.00221626967967569017,-0.0125650578169715001,0.99991860042243596584,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6569508946586209985,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -129 ,0 ,-1.1875928459631599487,-6.7630950141549304177,0.00000000000000000000,-1.0000000000000000000,0.00148272908290561999,-0.0125837353403839991,0.99991972233742298925,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013922199999999,-0.6565447312993909489,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -130 ,0 ,-1.1651491491054000171,-6.7919316763380104262,0.00000000000000000000,-1.0000000000000000000,0.00074919388015357198,-0.0126059586351206995,0.99992026107856202266,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013923299999999,-0.6561553503158850109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -131 ,0 ,-1.1426423721794098931,-6.8207174292772103640,0.00000000000000000000,-1.0000000000000000000,0.00001569040343645340,-0.0126317281690117994,0.99992021641592798708,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013924499999999,-0.6557827431927309991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -132 ,0 ,-1.1200725202367700639,-6.8494523250660499513,0.00000000000000000000,-1.0000000000000000000,-0.0007177550061944740,-0.0126610441564003004,0.99991958816127901599,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006733330,-0.0000000402007000000,-0.6554269013379330210,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -133 ,0 ,-1.0974395978398299167,-6.8781364162968099407,0.00000000000000000000,-1.0000000000000000000,-0.0014511160017864699,-0.0126939065579990996,0.99991837616809797761,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013927000000000,-0.6550878160757069856,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -134 ,0 ,-1.0747436090557900278,-6.9067697560554597302,0.00000000000000000000,-1.0000000000000000000,-0.0021843662336206498,-0.0127303150807880991,0.99991658033163000052,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014330300000000,-0.6547654786390919579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -135 ,0 ,-1.0519845574508799312,-6.9353523979156097567,0.00000000000000000000,-1.0000000000000000000,-0.0029174793523495199,-0.0127702691779553994,0.99991420058890601030,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006729690,-0.0000000401894000000,-0.6544598801685880262,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -136 ,0 ,-1.0291624460846600097,-6.9638843959333103228,0.00000000000000000000,-1.0000000000000000000,-0.0036504290121356901,-0.0128137680488876002,0.99991123691876604429,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013931400000000,-0.6541710117309089689,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -137 ,0 ,-1.0062772775042099215,-6.9923658046399799204,0.00000000000000000000,-1.0000000000000000000,-0.0043831888737906601,-0.0128608106391952005,0.99990768934187101990,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014334800000000,-0.6538988643044379989,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -138 ,0 ,-0.9833290537386569774,-7.0207966790381099997,0.00000000000000000000,-1.0000000000000000000,-0.0051157326079138299,-0.0129113956407971991,0.99990355792070795271,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013934700000000,-0.6536434287800150233,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -139 ,0 ,-0.9603177762938419625,-7.0491770745951596310,0.00000000000000000000,-1.0000000000000000000,-0.0058480338980297398,-0.0129655214920475006,0.99989884275958995640,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014338100000000,-0.6534046959729949977,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -140 ,0 ,-1.2832113715552300181,-6.6951374394233402753,0.00000000000000000000,-1.0000000000000000000,0.00363702134903943000,-0.0133021498207224996,0.99990490792167496802,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013949100000000,-0.6576741473670609794,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -141 ,0 ,-1.2609216989940998931,-6.7241968631205599749,0.00000000000000000000,-1.0000000000000000000,0.00290713054618408012,-0.0133139259133879007,0.99990713967286004582,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006711300,-0.0000000401344000000,-0.6572121945598610182,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -142 ,0 ,-1.2385689283960299444,-6.7532053355131198557,0.00000000000000000000,-1.0000000000000000000,0.00217719422094568007,-0.0133292202678911998,0.99990879169670998649,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014352300000000,-0.6567670209760759769,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -143 ,0 ,-1.2161530655183099280,-6.7821629070889803969,0.00000000000000000000,-1.0000000000000000000,0.00144723842627914999,-0.0133480338380005999,0.99990986368452094978,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013952000000000,-0.6563386182731389961,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -144 ,0 ,-1.1936741156484600434,-6.8110696288437804213,0.00000000000000000000,-1.0000000000000000000,0.00071728923012484796,-0.0133703673274576991,0.99991035536876504696,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013953100000000,-0.6559269780243539571,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -145 ,0 ,-1.1711320835988099364,-6.8399255522734803136,0.00000000000000000000,-1.0000000000000000000,-0.0000126272876724511,-0.0133962211897557005,0.99991026652314496381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006707310,-0.0000000401228000000,-0.6555320917229889854,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -146 ,0 ,-1.1485269737001899681,-6.8687307293716797218,0.00000000000000000000,-1.0000000000000000000,-0.0007424850384475599,-0.0134255956279431994,0.99990959696264702927,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013955599999999,-0.6551539507629510206,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -147 ,0 ,-1.1258587897962799573,-6.8974852126222501169,0.00000000000000000000,-1.0000000000000000000,-0.0014722579278030598,-0.0134584905944829993,0.99990834654357796384,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014358000000000,-0.6547925464519720462,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -148 ,0 ,-1.1031275352375600196,-6.9261890549954499007,0.00000000000000000000,-1.0000000000000000000,-0.0022019198587000100,-0.0134949057911466999,0.99990651516360495865,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013958300000000,-0.6544478700268430149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -149 ,0 ,-1.0803332128759699504,-6.9548423099395799695,0.00000000000000000000,-1.0000000000000000000,-0.0029314447345504300,-0.0135348406689656999,0.99990410276177699167,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013959700000000,-0.6541199126265839769,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -150 ,0 ,-1.0574758250589799679,-6.9834450313792801878,0.00000000000000000000,-1.0000000000000000000,-0.0036608064623111801,-0.0135782944282157001,0.99990110931855002984,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013961300000000,-0.6538086653033590156,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -151 ,0 ,-1.0345553736241399622,-7.0119972737055897837,0.00000000000000000000,-1.0000000000000000000,-0.0043899789555780898,-0.0136252660184491992,0.99989753485579502267,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013962900000000,-0.6535141190404369915,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -152 ,0 ,-1.0115718598936200844,-7.0404990917725402965,0.00000000000000000000,-1.0000000000000000000,-0.0051189361376796499,-0.0136757541385753994,0.99989337943680800524,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013964600000000,-0.6532362647353689988,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -153 ,0 ,-0.9885252846687859751,-7.0689505408913202444,0.00000000000000000000,-1.0000000000000000000,-0.0058476519447697699,-0.0137297572369823005,0.99988864316630099438,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013966300000000,-0.6529750931979380057,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -154 ,0 ,-1.3119474164979401109,-6.7140679436608401431,0.00000000000000000000,-1.0000000000000000000,0.00359108728192329001,-0.0140623503257651001,0.99989467165069401133,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013978899999999,-0.6575180311147049705,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -155 ,0 ,-1.2896224011317700686,-6.7431971204334697489,0.00000000000000000000,-1.0000000000000000000,0.00286475272748301992,-0.0140743117605336993,0.99989684814998702755,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006684240,-0.0000000400535000000,-0.6570338733965850330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -156 ,0 ,-1.2672342876419500079,-6.7722754562239400044,0.00000000000000000000,-1.0000000000000000000,0.00213837433274231001,-0.0140897658888251998,0.99989844776977798712,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013980800000000,-0.6565664750683030126,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -157 ,0 ,-1.2447830810689899383,-6.8013030014441202553,0.00000000000000000000,-1.0000000000000000000,0.00141197790201768994,-0.0141087136443602007,0.99989947020573299862,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014382300000000,-0.6561158277863800014,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -158 ,0 ,-1.2222687859855601022,-6.8302798070046399914,0.00000000000000000000,-1.0000000000000000000,0.00068558925431354896,-0.0141311557138245995,0.99989991519429899380,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014383399999999,-0.6556819231079770160,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -159 ,0 ,-1.1996914064906900598,-6.8592059243092800002,0.00000000000000000000,-1.0000000000000000000,-0.0000407657797145340,-0.0141570925366433005,0.99989978251275801746,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6552647525074920542,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -160 ,0 ,-1.1770509462039000503,-6.8880814052508299027,0.00000000000000000000,-1.0000000000000000000,-0.0007670613608004320,-0.0141865243047935001,0.99989907197927696547,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014385799999999,-0.6548643073870149544,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -161 ,0 ,-1.1543474082595699403,-6.9169063022046799460,0.00000000000000000000,-1.0000000000000000000,-0.0014932716441114200,-0.0142194509626666996,0.99989778345294799688,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013986700000000,-0.6544805790479130136,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -162 ,0 ,-1.1315807953011201014,-6.9456806680238702966,0.00000000000000000000,-1.0000000000000000000,-0.0022193707822948799,-0.0142558722069682005,0.99989591683382195164,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013988099999999,-0.6541135587106059467,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -163 ,0 ,-1.1087511094754800566,-6.9744045560331100475,0.00000000000000000000,-1.0000000000000000000,-0.0029453329285266597,-0.0142957874866630006,0.99989347206293799352,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014389799999999,-0.6537632375147950369,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -164 ,0 ,-1.0858583524275200460,-7.0030780200241000699,0.00000000000000000000,-1.0000000000000000000,-0.0036711322395609298,-0.0143391960029676992,0.99989044912233704387,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014391300000000,-0.6534296065231049999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -165 ,0 ,-1.0629025252947299495,-7.0317011142480501106,0.00000000000000000000,-1.0000000000000000000,-0.0043967428787799398,-0.0143860967093845000,0.99988684803507998921,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014392900000000,-0.6531126566999320148,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -166 ,0 ,-1.0398836287016199886,-7.0602738934113897784,0.00000000000000000000,-1.0000000000000000000,-0.0051221390192438803,-0.0144364883117735001,0.99988266886524801435,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013994399999999,-0.6528123789476010241,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -167 ,0 ,-1.0168016627546700991,-7.0887964126690601318,0.00000000000000000000,-1.0000000000000000000,-0.0058472948467391296,-0.0144903692684821006,0.99987791171794504485,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6525287640790790044,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -168 ,0 ,-1.3407535213905299453,-6.7330705053568999929,0.00000000000000000000,-1.0000000000000000000,0.00354545667049625985,-0.0148189635014079005,0.99988390729011300539,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014008700000000,-0.6573452150330469923,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -169 ,0 ,-1.3183930723239600801,-6.7622694617710097375,0.00000000000000000000,-1.0000000000000000000,0.00282265321164688019,-0.0148311079555744993,0.99988602893812694727,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014009599999999,-0.6568388470557240399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -170 ,0 ,-1.2959695249009099971,-6.7914176866885300754,0.00000000000000000000,-1.0000000000000000000,0.00209980756904965979,-0.0148467197779593006,0.99988757654048698864,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006656650,-0.0000000399704000000,-0.6563492186980970366,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -171 ,0 ,-1.2734828834544800191,-6.8205152304437497434,0.00000000000000000000,-1.0000000000000000000,0.00137694530131283999,-0.0148657998825836006,0.99988854979717001203,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014411300000000,-0.6558763216023639763,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -172 ,0 ,-1.2509331518515800496,-6.8495621438610303499,0.00000000000000000000,-1.0000000000000000000,0.00065409198144092796,-0.0148883489393764004,0.99988894844854603327,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014012700000000,-0.6554201473256849874,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -173 ,0 ,-1.2283203334874199796,-6.8785584782516302482,0.00000000000000000000,-1.0000000000000000000,-0.0000687268061591213,-0.0149143673739601002,0.99988877227542705128,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006653530,-0.0000000399613000000,-0.6549806873347280289,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -174 ,0 ,-1.2056444312795600026,-6.9075042854076400544,0.00000000000000000000,-1.0000000000000000000,-0.0007914854686750559,-0.0149438553674620007,0.99988802109911800730,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014414799999999,-0.6545579330168039833,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -175 ,0 ,-1.1829054476623799274,-6.9363996175947200129,0.00000000000000000000,-1.0000000000000000000,-0.0015141584078902899,-0.0149768128563786996,0.99988669478145397739,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014016499999999,-0.6541518756700950287,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -176 ,0 ,-1.1601033845814299194,-6.9652445275493901633,0.00000000000000000000,-1.0000000000000000000,-0.0022367200231870098,-0.0150132395324806995,0.99988479322483903022,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014417399999999,-0.6537625065138850111,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -177 ,0 ,-1.1372382434880901058,-6.9940390684724302872,0.00000000000000000000,-1.0000000000000000000,-0.0029591447145515398,-0.0150531348427632005,0.99988231637226399062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006648500,-0.0000000399466000000,-0.6533898166831020315,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -178 ,0 ,-1.1143100253339699445,-7.0227832940223597901,0.00000000000000000000,-1.0000000000000000000,-0.0036814068855804101,-0.0150964979894326004,0.99987926420733297394,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014020900000000,-0.6530337972326379913,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -179 ,0 ,-1.0913187305655600578,-7.0514772583108102921,0.00000000000000000000,-1.0000000000000000000,-0.0044034809464869196,-0.0151433279299415992,0.99987563675427204579,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014421900000000,-0.6526944391359850161,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -180 ,0 ,-1.0682643591192100274,-7.0801210158968101993,0.00000000000000000000,-1.0000000000000000000,-0.0051253413171075297,-0.0151936233770717001,0.99987143407793099836,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006644340,-0.0000000399335000000,-0.6523717332850079708,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -181 ,0 ,-1.0451469104156299039,-7.1087146217797698710,0.00000000000000000000,-1.0000000000000000000,-0.0058469624299066396,-0.0152473827990456008,0.99986665628378801340,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014025999999999,-0.6520656705022249699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -182 ,0 ,-1.3696296745245999382,-6.7521450591835003862,0.00000000000000000000,-1.0000000000000000000,0.00350012662908992999,-0.0155720141632543999,0.99987262263174303544,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014038400000000,-0.6571556612702810218,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -183 ,0 ,-1.3472337017409499182,-6.7814138215950903187,0.00000000000000000000,-1.0000000000000000000,0.00278082934673155998,-0.0155843393443737994,0.99987468982635197001,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014438300000000,-0.6566270776966119937,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -184 ,0 ,-1.3247746302240799298,-6.8106319611671501945,0.00000000000000000000,-1.0000000000000000000,0.00206149151204626989,-0.0156001068085695991,0.99987618579517500982,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014040300000000,-0.6561152140338889493,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -185 ,0 ,-1.3022524636088399496,-6.8397995281560000080,0.00000000000000000000,-1.0000000000000000000,0.00134213844082329007,-0.0156193174505034997,0.99987711024244696478,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006629070,-0.0000000398874000000,-0.6556200619143059959,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -186 ,0 ,-1.2796672050657400543,-6.8689165733005097536,0.00000000000000000000,-1.0000000000000000000,0.00062279546296170704,-0.0156419719236535990,0.99987746291240697793,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6551416128888829515,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -187 ,0 ,-1.2570188572951199734,-6.8979831478178299519,0.00000000000000000000,-1.0000000000000000000,-0.0000965120804802413,-0.0156680706400901988,0.99987724358935003987,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014442499999999,-0.6546798584163300294,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -188 ,0 ,-1.2343074225219099471,-6.9269993033978298768,0.00000000000000000000,-1.0000000000000000000,-0.0008157588402406450,-0.0156976137703094993,0.99987645209767495035,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014044900000000,-0.6542347898753180235,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -189 ,0 ,-1.2115329024896499543,-6.9559650921973403825,0.00000000000000000000,-1.0000000000000000000,-0.0015349194618116800,-0.0157306012430864991,0.99987508830192195485,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014046300000000,-0.6538063985622100116,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -190 ,0 ,-1.1886952984552598966,-6.9848805668366198418,0.00000000000000000000,-1.0000000000000000000,-0.0022539685884005299,-0.0157670327453917000,0.99987315210681004806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006623350,-0.0000000398705000000,-0.6533946756881050532,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -191 ,0 ,-1.1657946111836099412,-7.0137457803909599718,0.00000000000000000000,-1.0000000000000000000,-0.0029728808638918502,-0.0158069077223348015,0.99987064345725595870,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014447800000000,-0.6529996123867930490,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -192 ,0 ,-1.1428308409421599201,-7.0425607863869101876,0.00000000000000000000,-1.0000000000000000000,-0.0036916309358112999,-0.0158502253771608016,0.99986756233839702012,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014449299999999,-0.6526211997108930518,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -193 ,0 ,-1.1198039874958098938,-7.0713256387963001614,0.00000000000000000000,-1.0000000000000000000,-0.0044101934582894001,-0.0158969846712838994,0.99986390877560005208,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014450900000000,-0.6522594286345789749,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -194 ,0 ,-1.0967140501016199305,-7.1000403920308698957,0.00000000000000000000,-1.0000000000000000000,-0.0051285430950249698,-0.0159471843243634003,0.99985968283447002047,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014053999999999,-0.6519142900465340062,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -195 ,0 ,-1.0735610275037699157,-7.1287051009356696695,0.00000000000000000000,-1.0000000000000000000,-0.0058466545222475400,-0.0160008228144232003,0.99985488462084304295,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.6515857747740479988,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -196 ,0 ,-0.9997068881918810268,-6.5098105428975996389,0.00000000000000000000,-1.0000000000000000000,0.00411371158906159023,-0.0054972188147996399,0.99997642870332903441,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014058800000000,-0.6583254576978559979,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -197 ,0 ,-0.9777654434418360240,-6.5381739454329297345,0.00000000000000000000,-1.0000000000000000000,0.00334682148727753021,-0.0055070067493845900,0.99997923561571699924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000006992840,-0.0000000409673000000,-0.6580852568138200187,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -198 ,0 ,-0.9557608929531899999,-6.5664852450528297111,0.00000000000000000000,-1.0000000000000000000,0.00257986754533321002,-0.0055205826498128697,0.99998143355297097745,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000014060500000000,-0.6578620369189139838,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -199 ,0 ,-0.9336932501948730367,-6.5947444929580703032,0.00000000000000000000,-1.0000000000000000000,0.00181287847324791999,-0.0055379476909004398,0.99998302215938394965,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013651799999999,-0.6576557897992639789,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/ellipsoid_ip_200mirrormis.rayx.csv b/Intern/RAY-Core/tests/output/ellipsoid_ip_200mirrormis.rayx.csv deleted file mode 100644 index 06a201721..000000000 --- a/Intern/RAY-Core/tests/output/ellipsoid_ip_200mirrormis.rayx.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.9997068881898432124,-6.5098105428959591733,0.00000000000000000000,1.00000000000000000000,0.00411371158906366669,-0.0054972188147983814,0.99997642870332903441,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3416745423019165,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-0.9777654434400729899,-6.5381739454316791793,0.00000000000000000000,1.00000000000000000000,0.00334682148727930483,-0.0055070067493835613,0.99997923561571733230,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3419147431814053,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,-0.9557608929516900886,-6.5664852450521582483,0.00000000000000000000,1.00000000000000000000,0.00257986754533472964,-0.0055205826498120986,0.99998143355297086642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3421379630763112,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,-0.9336932501935994999,-6.5947444929566971794,0.00000000000000000000,1.00000000000000000000,0.00181287847324920542,-0.0055379476908987909,0.99998302215938328352,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3423442101939144,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-0.9115625281485010278,-6.6229517409434413011,0.00000000000000000000,1.00000000000000000000,0.00104588299934157405,-0.0055591027650730489,0.99998400112461727218,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3425334928469965,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-0.8893687393057373435,-6.6511070413974024972,0.00000000000000000000,1.00000000000000000000,0.00027890986666903903,-0.0055840484820925797,0.99998437018377206442,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3427058194538403,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,-0.8671118956541000732,-6.6792104472881383969,0.00000000000000000000,1.00000000000000000000,-0.0004880121705392990,-0.0056127851688036276,0.99998412911744249953,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3428611985145835,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,-0.8447920086747756629,-6.7072620121629462630,0.00000000000000000000,1.00000000000000000000,-0.0012548543504531562,-0.0056453128689589841,0.99998327775176831799,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3429996386494167,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,-0.8224090893344049302,-6.7352617901421822921,0.00000000000000000000,1.00000000000000000000,-0.0020215879072153939,-0.0056816313430874225,0.99998181595847723812,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3431211485694802,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,-0.7999631480781321801,-6.7632098359111942897,0.00000000000000000000,1.00000000000000000000,-0.0027881840745188199,-0.0057217400684131461,0.99997974365491804071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432257370714069,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,-0.7774541948228101961,-6.7911062047165877686,0.00000000000000000000,1.00000000000000000000,-0.0035546140891845466,-0.0057656382388325631,0.99997706080408443884,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3433134130627877,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,-0.7548822389503101470,-6.8189509523585725148,0.00000000000000000000,1.00000000000000000000,-0.0043208491947410417,-0.0058133247649401328,0.99997376741463239735,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3433841855385253,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,-0.7322472893008789007,-6.8467441351843056907,0.00000000000000000000,1.00000000000000000000,-0.0050868606450028630,-0.0058647982741100680,0.99996986354088779336,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434380635881097,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,-0.7095493541665103265,-6.8744858100820458446,0.00000000000000000000,1.00000000000000000000,-0.0058526197076482367,-0.0059200571106265394,0.99996534928284619425,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434750563919806,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,-1.0277416608700040701,-6.5280166896223050798,0.00000000000000000000,1.00000000000000000000,0.00406457661774147459,-0.0062947080016789750,0.99997192754001440473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3416658384994661,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,-1.0057658329776453243,-6.5564495673441367529,0.00000000000000000000,1.00000000000000000000,0.00330150776366281524,-0.0063047062724145017,0.99997467504197545817,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3419281900714850,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-0.9837269008557157912,-6.5848304614350210428,0.00000000000000000000,1.00000000000000000000,0.00253837703031907545,-0.0063184643449748379,0.99997681655645020981,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3421735811170947,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-0.9616248771550923724,-6.6131594230276498080,0.00000000000000000000,1.00000000000000000000,0.00177521284737902087,-0.0063359833702788291,0.99997835173271498732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3424020198599464,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,-0.9394597740421068987,-6.6414365038425149379,0.00000000000000000000,1.00000000000000000000,0.00101204366244968995,-0.0063572642203123209,0.99997928026497540088,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3426135146291926,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,-0.9172316031915191958,-6.6696617561808544394,0.00000000000000000000,1.00000000000000000000,0.00024889793756686099,-0.0063823074878464596,0.99997960189243195738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3428080738449352,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -20 ,0 ,-0.8949403757794516245,-6.6978352329165797840,0.00000000000000000000,1.00000000000000000000,-0.0005141958543192126,-0.0064111134862059040,0.99997931639933923531,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3429857060364156,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,0 ,-0.8725861024764645090,-6.7259569874918847531,0.00000000000000000000,1.00000000000000000000,-0.0012772092328627116,-0.0064436822490880731,0.99997842361505373531,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3431464198183675,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,0 ,-0.8501687934407475832,-6.7540270739156280654,0.00000000000000000000,1.00000000000000000000,-0.0020401137138444398,-0.0064800135304385591,0.99997692341407529159,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432902239146642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -23 ,0 ,-0.8276884583112961157,-6.7820455467492131162,0.00000000000000000000,1.00000000000000000000,-0.0028028808126962867,-0.0065201068043714326,0.99997481571608037853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434171271273953,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -24 ,0 ,-0.8051451062012483506,-6.8100124611078420855,0.00000000000000000000,1.00000000000000000000,-0.0035654820480274960,-0.0065639612651480954,0.99997210048594575848,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3435271383659710,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,0 ,-0.7825387456913335260,-6.8379278726499101992,0.00000000000000000000,1.00000000000000000000,-0.0043278889451513922,-0.0066115758272043368,0.99996877773376469100,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436202666343888,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,0 ,-0.7598693848233105674,-6.8657918375708728575,0.00000000000000000000,1.00000000000000000000,-0.0050900730396118620,-0.0066629491252310725,0.99996484751485414932,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436965210203197,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -27 ,0 ,-0.7371370310935831948,-6.8936044126013280575,0.00000000000000000000,1.00000000000000000000,-0.0058520058807085915,-0.0067180795143048487,0.99996030992975470930,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3437559107114793,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -28 ,0 ,-1.0558466178664243084,-6.5462955950294450246,0.00000000000000000000,1.00000000000000000000,0.00401577588793556195,-0.0070883489654354221,0.99996681387582153632,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3416734316178917,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -29 ,0 ,-1.0338363065470268509,-6.5747979767702906528,0.00000000000000000000,1.00000000000000000000,0.00325650063581464123,-0.0070985549209991050,0.99996950239576909424,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3419579393557796,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,0 ,-1.0117628923359425208,-6.6032484932161654711,0.00000000000000000000,1.00000000000000000000,0.00249716543540340384,-0.0071124927881433220,0.99997158790193951816,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3422255069654056,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,0 ,-0.9896263870768422510,-6.6316471954342475214,0.00000000000000000000,1.00000000000000000000,0.00173779843939974405,-0.0071301636943079680,0.99997307004852686862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3424761426849727,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -32 ,0 ,-0.9674268021305263420,-6.6599941350672189344,0.00000000000000000000,1.00000000000000000000,0.00097842781808540825,-0.0071515684914030402,0.99997394853421917026,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3427098548581852,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -33 ,0 ,-0.9451641483680218724,-6.6882893643298126917,0.00000000000000000000,1.00000000000000000000,0.00021908175586759977,-0.0071767077555314577,0.99997422310226358188,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3429266519124212,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -34 ,0 ,-0.9228384361635982857,-6.7165329360005951997,0.00000000000000000000,1.00000000000000000000,-0.0005402115521843765,-0.0072055817867621380,0.99997389354052268473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3431265423860168,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -35 ,0 ,-0.9004496753880346648,-6.7447249034183487381,0.00000000000000000000,1.00000000000000000000,-0.0012994239038067972,-0.0072381906089547219,0.99997295968152366540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3433095349082577,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,0 ,-0.8779978754019002185,-6.7728653204753337391,0.00000000000000000000,1.00000000000000000000,-0.0020585270930124350,-0.0072745339696375019,0.99997142140249772879,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434756381993793,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,0 ,-0.8554830450488994930,-6.8009542416124881825,0.00000000000000000000,1.00000000000000000000,-0.0028174929135638222,-0.0073146113399309075,0.99996927862541229448,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436248610814800,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -38 ,0 ,-0.8329051926492819779,-6.8289917218102065277,0.00000000000000000000,1.00000000000000000000,-0.0035762931624480184,-0.0073584219145264324,0.99996653131699542171,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3437572124639700,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -39 ,0 ,-0.8102643259934207975,-6.8569778165877526276,0.00000000000000000000,1.00000000000000000000,-0.0043348996433520874,-0.0074059646117162177,0.99996317948875090841,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438727013526658,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -40 ,0 ,-0.7875604523354012842,-6.8849125819902461387,0.00000000000000000000,1.00000000000000000000,-0.0050932841701381266,-0.0074572380734706051,0.99995922319696495250,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3439713368370576,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,0 ,-0.7647935783867474413,-6.9127960745890035809,0.00000000000000000000,1.00000000000000000000,-0.0058514185703170684,-0.0075122406655729638,0.99995466254270604089,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3440531281048606,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -42 ,0 ,-1.0840217461164576295,-6.5646471849005623155,0.00000000000000000000,1.00000000000000000000,0.00396730615576321252,-0.0078781688762883991,0.99996109671177846323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3416973640523792,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -43 ,0 ,-1.0619768520762546959,-6.5932190992508905580,0.00000000000000000000,1.00000000000000000000,0.00321179712248147695,-0.0078885799004734975,0.99996372667532162914,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3420040334240184,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,0 ,-1.0398688563137794549,-6.6217392657099436448,0.00000000000000000000,1.00000000000000000000,0.00245623004243842408,-0.0079026952164914943,0.99996575658484099236,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3422937830000591,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,0 ,-1.0176977698761344726,-6.6502077352749706662,0.00000000000000000000,1.00000000000000000000,0.00170063279469223464,-0.0079205159287133505,0.99996718609938406441,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3425666210368945,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,0 ,-0.9954636033293314811,-6.6786245595106370487,0.00000000000000000000,1.00000000000000000000,0.00094503327553743842,-0.0079420428693352564,0.99996801492206199846,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3428225558818667,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -47 ,0 ,-0.9731663667512543414,-6.7069897905454860520,0.00000000000000000000,1.00000000000000000000,0.00018945939509677886,-0.0079672765981018134,0.99996824280011320507,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3430615959841816,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -48 ,0 ,-0.9508060697250707571,-6.7353034810603258364,0.00000000000000000000,1.00000000000000000000,-0.0005660609260922017,-0.0079962174020900330,0.99996786952495919642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432837498876324,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -49 ,0 ,-0.9283827213324389315,-6.7635656842900866436,0.00000000000000000000,1.00000000000000000000,-0.0013214997604942843,-0.0080288652955341037,0.99996689493225154876,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434890262251428,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -50 ,0 ,-0.9058963301469912243,-6.7917764540124991867,0.00000000000000000000,1.00000000000000000000,-0.0020768291769972966,-0.0080652200197077802,0.99996531890191209246,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436774337333190,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -51 ,0 ,-0.8833469042277248828,-6.8199358445447728627,0.00000000000000000000,1.00000000000000000000,-0.0028320212443348120,-0.0081052810428491536,0.99996314135816399826,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438489812269835,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,0 ,-0.8607344511127184016,-6.8480439107352939487,0.00000000000000000000,1.00000000000000000000,-0.0035870480345105682,-0.0081490475601447166,0.99996036226955509196,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3440036776355555,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -53 ,0 ,-0.8380589778126011912,-6.8761007079617080250,0.00000000000000000000,1.00000000000000000000,-0.0043418816262232300,-0.0081965184937554200,0.99995698164897328652,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3441415319557563,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -54 ,0 ,-0.8153204908044578980,-6.9041062921207778657,0.00000000000000000000,1.00000000000000000000,-0.0050964941082910367,-0.0082476924928974442,0.99995299955365213318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3442625532861711,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -55 ,0 ,-0.7925189960255192289,-6.9320607196236503355,0.00000000000000000000,1.00000000000000000000,-0.0058508575830750961,-0.0083025679339714924,0.99994841608517193165,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443667508163343,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -56 ,0 ,-1.1122670327020607317,-6.5830713859590588299,0.00000000000000000000,1.00000000000000000000,0.00391916421544994016,-0.0086641946571959088,0.99995478491919531638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3417376777088065,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -57 ,0 ,-1.0901874576260266458,-6.6117128612753379712,0.00000000000000000000,1.00000000000000000000,0.00316739427744406167,-0.0086748081683869666,0.99995735674914287827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3420665141657082,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -58 ,0 ,-1.0680447818313030250,-6.6403027051790441959,0.00000000000000000000,1.00000000000000000000,0.00241556816522624055,-0.0086890986189302986,0.99995933147085003245,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3423784511032863,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -59 ,0 ,-1.0458390155789891728,-6.6688409685984915142,0.00000000000000000000,1.00000000000000000000,0.00166371348749866170,-0.0087070670905313261,0.99996070874815479179,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3426734967815718,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -60 ,0 ,-1.0235701686507123753,-6.6973277030203952620,0.00000000000000000000,1.00000000000000000000,0.00091185786985901323,-0.0087287143960244409,0.99996148828853281820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3429516595679160,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -61 ,0 ,-1.0012382503418137957,-6.7257629604826689728,0.00000000000000000000,1.00000000000000000000,0.00016002895144176759,-0.0087540410791032228,0.99996166984315937309,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432129479151626,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,0 ,-0.9788432694548304668,-6.7541467935722652171,0.00000000000000000000,1.00000000000000000000,-0.0005917456184459331,-0.0087830474141087459,0.99996125320696516158,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434573703743808,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -63 ,0 ,-0.9563852342928250704,-6.7824792554166801750,0.00000000000000000000,1.00000000000000000000,-0.0013434381836919383,-0.0088157334058582802,0.99996023821868185166,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436849356021411,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -64 ,0 ,-0.9338641526529789516,-6.8107603996800314405,0.00000000000000000000,1.00000000000000000000,-0.0020950210847502613,-0.0088520987895298400,0.99995862476088204218,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438956523204979,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -65 ,0 ,-0.9112800318202006755,-6.8389902805548912212,0.00000000000000000000,1.00000000000000000000,-0.0028464666620141784,-0.0088921430305929655,0.99995641276000868380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3440895293715584,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -66 ,0 ,-0.8886328785607643387,-6.8671689527584911516,0.00000000000000000000,1.00000000000000000000,-0.0035977472591910068,-0.0089358653247884004,0.99995360218639928184,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3442665756756468,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,0 ,-0.8659226991161121933,-6.8952964715270237405,0.00000000000000000000,1.00000000000000000000,-0.0043488352266772608,-0.0089832645981581579,0.99995019305429921896,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3444268002331227,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -68 ,0 ,-0.8431494991967182217,-6.9233728926068947018,0.00000000000000000000,1.00000000000000000000,-0.0050997029249335483,-0.0090343395071272158,0.99994618542186908261,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3445702121480280,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -69 ,0 ,-0.8203132839760531869,-6.9513982722518159462,0.00000000000000000000,1.00000000000000000000,-0.0058503227278582066,-0.0090890884386305471,0.99994157939118344380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3446968206080782,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -70 ,0 ,-1.1405824648478410932,-6.6015681258587628477,0.00000000000000000000,1.00000000000000000000,0.00387134689879919512,-0.0094464529865689299,0.99994788724171079774,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3417944140164763,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -71 ,0 ,-1.1184681113879011427,-6.6302791902622928432,0.00000000000000000000,1.00000000000000000000,0.00312328918902930177,-0.0094572664372277823,0.99995040135807555792,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3421454230046947,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -72 ,0 ,-1.0962906580496294406,-6.6589387388212166740,0.00000000000000000000,1.00000000000000000000,0.00237517714907548287,-0.0094717297388401452,0.99995232129800293296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3424795526734669,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -73 ,0 ,-1.0740501143184373322,-6.6875468223921679111,0.00000000000000000000,1.00000000000000000000,0.00162703812052062616,-0.0094898439508406418,0.99995364673005837641,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3427968113082897,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -74 ,0 ,-1.0517464892019843247,-6.7161034923821345543,0.00000000000000000000,1.00000000000000000000,0.00087889946150905920,-0.0095116098670507617,0.99995437736602421630,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3430972072819713,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -75 ,0 ,-1.0293797912234283753,-6.7446088007413367293,0.00000000000000000000,1.00000000000000000000,0.00013078854343616893,-0.0095370280154137808,0.99995451296095927418,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3433807490600884,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -76 ,0 ,-1.0069500284149992541,-6.7730627999589785304,0.00000000000000000000,1.00000000000000000000,-0.0006172672523671189,-0.0095660986577852588,0.99995405331325504239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436474452064430,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -77 ,0 ,-0.9844572083115268323,-6.8014655430557908744,0.00000000000000000000,1.00000000000000000000,-0.0013652405379535180,-0.0095988217897702097,0.99995299826467898274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438973043703299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -78 ,0 ,-0.9619013379441234690,-6.8298170835799281164,0.00000000000000000000,1.00000000000000000000,-0.0021131039220816253,-0.0096351971406072323,0.99995134770041460559,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3441303353010880,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -79 ,0 ,-0.9392824238338799425,-6.8581174756018441485,0.00000000000000000000,1.00000000000000000000,-0.0028608300135404976,-0.0096752241731034530,0.99994910154909055766,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443465468317299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -80 ,0 ,-0.9166004719856563065,-6.8863667737073361863,0.00000000000000000000,1.00000000000000000000,-0.0036083914244754429,-0.0097189020836148404,0.99994625978280260447,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3445459478825796,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -81 ,0 ,-0.8938554878820084148,-6.9145650329905068431,0.00000000000000000000,1.00000000000000000000,-0.0043557607737144026,-0.0097662298020778914,0.99994282241712939551,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3447285474721866,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -82 ,0 ,-0.8710474764771515276,-6.9427123090484510470,0.00000000000000000000,1.00000000000000000000,-0.0051029106900940023,-0.0098172059920894165,0.99993878951113657205,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3448943546991358,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -83 ,0 ,-0.8481764421910596984,-6.9708086579759021006,0.00000000000000000000,1.00000000000000000000,-0.0058498138157844041,-0.0098718290510331607,0.99993416116737754428,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3450433787493238,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -84 ,0 ,-1.1689680299187639178,-6.6201373331707209501,0.00000000000000000000,1.00000000000000000000,0.00382385107467092403,-0.0102249703009435147,0.99994041229730434849,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3418676139317540,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -85 ,0 ,-1.1468188016822076225,-6.6489180145533000043,0.00000000000000000000,1.00000000000000000000,0.00307947897963097667,-0.0102359811771030127,0.99994286911730889677,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3422408008736965,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -86 ,0 ,-1.1246064742469681352,-6.6776472947573113358,0.00000000000000000000,1.00000000000000000000,0.00233505437036372453,-0.0102506150767595668,0.99994473467868971727,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3425971286469575,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -87 ,0 ,-1.1023310563330457334,-6.7063252245684594754,0.00000000000000000000,1.00000000000000000000,0.00159060432452363953,-0.0102688730374663056,0.99994600865467864192,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3429366055424907,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -88 ,0 ,-1.0799925561842735888,-6.7349518553123104425,0.00000000000000000000,1.00000000000000000000,0.00084615593599902776,-0.0102907558343711957,0.99994669076130693330,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432592399385612,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -89 ,0 ,-1.0575909815618447229,-6.7635272388507665652,0.00000000000000000000,1.00000000000000000000,0.00010173631164906475,-0.0103162639799617584,0.99994678075746501466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3435650403243926,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -90 ,0 ,-1.0351263397378873687,-6.7920514275735142106,0.00000000000000000000,1.00000000000000000000,-0.0006426274319637996,-0.0103453977238557003,0.99994627844495642676,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438540152601490,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,0 ,-1.0125986374892399499,-6.8205244743952722075,0.00000000000000000000,1.00000000000000000000,-0.0013869081718452767,-0.0103781570526457634,0.99994518366854134860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3441261734114959,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -92 ,0 ,-0.9900078810910977189,-6.8489464327498161821,0.00000000000000000000,1.00000000000000000000,-0.0021310787818436364,-0.0104145416897847963,0.99994349631597512217,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443815235277725,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -93 ,0 ,-0.9673540763109242934,-6.8773173565841165810,0.00000000000000000000,1.00000000000000000000,-0.0028751121359262489,-0.0104545510955223706,0.99994121631803745131,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3446200744492671,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -94 ,0 ,-0.9446372284023510923,-6.9056373003491282602,0.00000000000000000000,1.00000000000000000000,-0.0036189811114574585,-0.0104981844668874304,0.99993834364855394003,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3448418351072177,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -95 ,0 ,-0.9218573420992379752,-6.9339063189998002556,0.00000000000000000000,1.00000000000000000000,-0.0043626585924769365,-0.0105454407377228651,0.99993487832440974827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3450468145092600,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -96 ,0 ,-0.8990144216096546125,-6.9621244679840472713,0.00000000000000000000,1.00000000000000000000,-0.0051061174729776772,-0.0105963185787590775,0.99993082040555636424,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3452350217630737,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -97 ,0 ,-0.8761084706101879282,-6.9902918032390424230,0.00000000000000000000,1.00000000000000000000,-0.0058493306601828396,-0.0106508163977462513,0.99992616999500960606,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3454064660545554,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -98 ,0 ,-1.1974237154182187925,-6.6387789373727876807,0.00000000000000000000,1.00000000000000000000,0.00377667364846817404,-0.0109997727976272382,0.99993236858027212399,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3419573179398867,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -99 ,0 ,-1.1752395169561509202,-6.6676292633970319911,0.00000000000000000000,1.00000000000000000000,0.00303596080523739920,-0.0110109786183928484,0.99993476851835394469,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3423526882579608,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -100 ,0 ,-1.1529922198169375580,-6.6964283020200960905,0.00000000000000000000,1.00000000000000000000,0.00229519723610688633,-0.0110257808930459642,0.99993658010163088967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3427312194835394,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -101 ,0 ,-1.1306818319651812387,-6.7251761039535349340,0.00000000000000000000,1.00000000000000000000,0.00155440975794821491,-0.0110441806376401826,0.99993780300794055104,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3430929199275851,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -102 ,0 ,-1.1083083608909318762,-6.7538727204427457806,0.00000000000000000000,1.00000000000000000000,0.00081362520354557427,-0.0110661786089845670,0.99993843695750683764,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434377979792770,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -103 ,0 ,-1.0858718136034877232,-6.7825182032580277891,0.00000000000000000000,1.00000000000000000000,0.00007287041837938050,-0.0110917753043986901,0.99993848171299937188,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3437658621332957,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -104 ,0 ,-1.0633721966249354284,-6.8111126046908392339,0.00000000000000000000,1.00000000000000000000,-0.0006678277425942181,-0.0111209709615058653,0.99993793707958644745,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3440771209589001,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -105 ,0 ,-1.0408095159840946575,-6.8396559775500813671,0.00000000000000000000,1.00000000000000000000,-0.0014084424181678488,-0.0111537655580817886,0.99993680290497832796,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443715831308509,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -106 ,0 ,-1.0181837772103179418,-6.8681483751532850234,0.00000000000000000000,1.00000000000000000000,-0.0021489467441102236,-0.0111901588119421805,0.99993507907946410639,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3446492574021249,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -107 ,0 ,-0.9954949853275077975,-6.8965898513220293963,0.00000000000000000000,1.00000000000000000000,-0.0028893138563954564,-0.0112301501808832766,0.99993276553594012678,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3449101526148297,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -108 ,0 ,-0.9727431448480896580,-6.9249804603772284750,0.00000000000000000000,1.00000000000000000000,-0.0036295168944338444,-0.0112737388626648546,0.99992986224993241073,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3451542777111171,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -109 ,0 ,-0.9499282597671980798,-6.9533202571318541984,0.00000000000000000000,1.00000000000000000000,-0.0043695290043029308,-0.0113209237950434721,0.99992636923960898087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3453816416986228,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -110 ,0 ,-0.9270503335568207603,-6.9816092968852130340,0.00000000000000000000,1.00000000000000000000,-0.0051093233419783343,-0.0113717036558504420,0.99992228656578618917,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3455922536850266,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -111 ,0 ,-0.9041093691601268522,-7.0098476354171825875,0.00000000000000000000,1.00000000000000000000,-0.0058488730765632705,-0.0114260768631170139,0.99991761433192671848,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3457861228562251,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -112 ,0 ,-1.2259495089857943561,-6.6574928688347725369,0.00000000000000000000,1.00000000000000000000,0.00372981156163219732,-0.0117708864373058490,0.99992376446316855176,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3420635660768311,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -113 ,0 ,-1.2037302457820011625,-6.6864128669401221571,0.00000000000000000000,1.00000000000000000000,0.00299273185496708952,-0.0117822847543677926,0.99992610793098646304,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3424811251734354,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -114 ,0 ,-1.1814478842669138280,-6.7152816905409995484,0.00000000000000000000,1.00000000000000000000,0.00225560318353533245,-0.0117972532105038840,0.99992786593382088078,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3428818651973415,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -115 ,0 ,-1.1591024316596398868,-6.7440993902763368694,0.00000000000000000000,1.00000000000000000000,0.00151845210652671995,-0.0118157928006402054,0.99992903815405420608,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432657944649690,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -116 ,0 ,-1.1366938947063731646,-6.7728660173087256168,0.00000000000000000000,1.00000000000000000000,0.00078130519872849572,-0.0118379042635770141,0.99992962431604770490,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436329213836870,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -117 ,0 ,-1.1142222796743657120,-6.8015816233167196713,0.00000000000000000000,1.00000000000000000000,0.00004418904735505328,-0.0118635880817482119,0.99992962418619946163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3439832544536329,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -118 ,0 ,-1.0916875923455822139,-6.8302462604951976743,0.00000000000000000000,1.00000000000000000000,-0.0006928697511264876,-0.0118928444810211444,0.99992903757299567146,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443168022549798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -119 ,0 ,-1.0690898380107494158,-6.8588599815432846895,0.00000000000000000000,1.00000000000000000000,-0.0014298445941745767,-0.0119256734305458501,0.99992786432705438315,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3446335734661261,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -120 ,0 ,-1.0464290214632978592,-6.8874228396635102100,0.00000000000000000000,1.00000000000000000000,-0.0021667088763540551,-0.0119620746426494697,0.99992610434115980488,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3449335768509627,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -121 ,0 ,-1.0237051469933697855,-6.9159348885537843543,0.00000000000000000000,1.00000000000000000000,-0.0029034359925193616,-0.0120020475727737399,0.99992375755029339057,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3452168212534161,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -122 ,0 ,-1.0009182183821259126,-6.9443961824010251859,0.00000000000000000000,1.00000000000000000000,-0.0036399993409987445,-0.0120455914194648738,0.99992082393165127029,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3454833156083623,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -123 ,0 ,-0.9780682388957766537,-6.9728067758795679864,0.00000000000000000000,1.00000000000000000000,-0.0043763723267788547,-0.0120927051244025321,0.99991730350466045962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3457330689434456,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -124 ,0 ,-0.9551552112801167115,-7.0011667241390176386,0.00000000000000000000,1.00000000000000000000,-0.0051125283646893402,-0.0121433873724814331,0.99991319633098230124,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3459660903572512,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -125 ,0 ,-0.9321791377546997381,-7.0294760828029065891,0.00000000000000000000,1.00000000000000000000,-0.0058484408825857942,-0.0121976365919317861,0.99990850251451179886,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3461823890356754,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -126 ,0 ,-1.2545453983954282239,-6.6762790588106595279,0.00000000000000000000,1.00000000000000000000,0.00368326179114517081,-0.0125383369466229299,0.99991460819871536003,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3421863979292538,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -127 ,0 ,-1.2322909768551573161,-6.7052687562126003228,0.00000000000000000000,1.00000000000000000000,0.00294978935061162477,-0.0125499253437742035,0.99991689560515595314,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3426261511904158,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -128 ,0 ,-1.2099734572162537116,-6.7342073911404698449,0.00000000000000000000,1.00000000000000000000,0.00221626967967700769,-0.0125650578169732626,0.99991860042243574380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3430491053368314,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -129 ,0 ,-1.1875928459619755628,-6.7630950141562315991,0.00000000000000000000,1.00000000000000000000,0.00148272908290675645,-0.0125837353403843790,0.99991972233742310027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434552686976530,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -130 ,0 ,-1.1651491491045218307,-6.7919316763388710711,0.00000000000000000000,1.00000000000000000000,0.00074919388015443869,-0.0126059586351227759,0.99992026107856180061,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438446496875258,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -131 ,0 ,-1.1426423721787668519,-6.8207174292786030278,0.00000000000000000000,1.00000000000000000000,0.00001569040343708770,-0.0126317281690136295,0.99992021641592732095,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3442172568084060,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -132 ,0 ,-1.1200725202363537302,-6.8494523250673395864,0.00000000000000000000,1.00000000000000000000,-0.0007177550061940803,-0.0126610441564014922,0.99991958816127823883,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3445730986604758,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -133 ,0 ,-1.0974395978396580542,-6.8781364162982310261,0.00000000000000000000,1.00000000000000000000,-0.0014511160017862982,-0.0126939065580003590,0.99991837616809775557,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3449121839221334,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -134 ,0 ,-1.0747436090558792898,-6.9067697560564598191,0.00000000000000000000,1.00000000000000000000,-0.0021843662336207183,-0.0127303150807894921,0.99991658033162977847,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3452345213590888,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -135 ,0 ,-1.0519845574512307617,-6.9353523979167350788,0.00000000000000000000,1.00000000000000000000,-0.0029174793523498655,-0.0127702691779573683,0.99991420058890589928,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3455401198280014,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -136 ,0 ,-1.0291624460852326627,-6.9638843959343912359,0.00000000000000000000,1.00000000000000000000,-0.0036504290121362539,-0.0128137680488886514,0.99991123691876571122,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3458289882673852,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -137 ,0 ,-1.0062772775050208284,-6.9923658046407854982,0.00000000000000000000,1.00000000000000000000,-0.0043831888737914676,-0.0128608106391958215,0.99990768934187068683,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3461011356957897,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -138 ,0 ,-0.9833290537397423314,-7.0207966790395657241,0.00000000000000000000,1.00000000000000000000,-0.0051157326079148655,-0.0129113956407992235,0.99990355792070795271,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3463565712190757,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -139 ,0 ,-0.9603177762951563556,-7.0491770745961259692,0.00000000000000000000,1.00000000000000000000,-0.0058480338980310400,-0.0129655214920484530,0.99989884275958951231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3465953040249587,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -140 ,0 ,-1.2832113715533490783,-6.6951374394241582876,0.00000000000000000000,1.00000000000000000000,0.00363702134904125232,-0.0133021498207236028,0.99990490792167496802,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3423258526290737,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -141 ,0 ,-1.2609216989924523222,-6.7241968631218309582,0.00000000000000000000,1.00000000000000000000,0.00290713054618568084,-0.0133139259133888653,0.99990713967285960173,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3427878054371831,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -142 ,0 ,-1.2385689283946612615,-6.7532053355144769923,0.00000000000000000000,1.00000000000000000000,0.00217719422094701277,-0.0133292202678928512,0.99990879169670976445,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3432329790230141,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -143 ,0 ,-1.2161530655171528536,-6.7821629070902949010,0.00000000000000000000,1.00000000000000000000,0.00144723842628027496,-0.0133480338380017552,0.99990986368452061672,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436613817266334,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -144 ,0 ,-1.1936741156475541014,-6.8110696288450025548,0.00000000000000000000,1.00000000000000000000,0.00071728923012571782,-0.0133703673274586567,0.99991035536876449185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3440730219699617,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -145 ,0 ,-1.1711320835981473553,-6.8399255522745745494,0.00000000000000000000,1.00000000000000000000,-0.0000126272876718133,-0.0133962211897565852,0.99991026652314463074,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3444679082749644,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -146 ,0 ,-1.1485269736998005019,-6.8687307293734010116,0.00000000000000000000,1.00000000000000000000,-0.0007424850384471619,-0.0134255956279447571,0.99990959696264625211,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3448460492345475,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -147 ,0 ,-1.1258587897961052082,-6.8974852126235512983,0.00000000000000000000,1.00000000000000000000,-0.0014722579278028963,-0.0134584905944838840,0.99990834654357774180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3452074535452993,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -148 ,0 ,-1.1031275352376650467,-6.9261890549965725583,0.00000000000000000000,1.00000000000000000000,-0.0022019198587000950,-0.0134949057911483774,0.99990651516360440353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3455521299747488,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -149 ,0 ,-1.0803332128763147856,-6.9548423099414664605,0.00000000000000000000,1.00000000000000000000,-0.0029314447345507540,-0.0135348406689674814,0.99990410276177665860,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3458800873740983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -150 ,0 ,-1.0574758250595619468,-6.9834450313807110433,0.00000000000000000000,1.00000000000000000000,-0.0036608064623117417,-0.0135782944282172302,0.99990110931854947473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3461913346945948,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -151 ,0 ,-1.0345553736249573084,-7.0119972737065747736,0.00000000000000000000,1.00000000000000000000,-0.0043899789555788852,-0.0136252660184504516,0.99989753485579502267,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3464858809547877,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -152 ,0 ,-1.0115718598946683570,-7.0404990917744374456,0.00000000000000000000,1.00000000000000000000,-0.0051189361376806742,-0.0136757541385764576,0.99989337943680722808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3467637352623569,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -153 ,0 ,-0.9885252846701124695,-7.0689505408928523522,0.00000000000000000000,1.00000000000000000000,-0.0058476519447710284,-0.0137297572369843752,0.99988864316630066131,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3470249068013799,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -154 ,0 ,-1.3119474164961000273,-6.7140679436622798803,0.00000000000000000000,1.00000000000000000000,0.00359108728192508112,-0.0140623503257672165,0.99989467165069390031,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3424819688843854,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -155 ,0 ,-1.2896224011301264944,-6.7431971204349219206,0.00000000000000000000,1.00000000000000000000,0.00286475272748462454,-0.0140743117605346117,0.99989684814998647244,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3429661266018229,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -156 ,0 ,-1.2672342876405746636,-6.7722754562256080035,0.00000000000000000000,1.00000000000000000000,0.00213837433274362970,-0.0140897658888268668,0.99989844776977765405,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3434335249294235,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -157 ,0 ,-1.2447830810678792712,-6.8013030014457029892,0.00000000000000000000,1.00000000000000000000,0.00141197790201876417,-0.0141087136443625252,0.99989947020573288760,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438841722163488,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -158 ,0 ,-1.2222687859846914637,-6.8302798070062493707,0.00000000000000000000,1.00000000000000000000,0.00068558925431439919,-0.0141311557138269310,0.99989991519429866073,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443180768936144,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -159 ,0 ,-1.1996914064900419116,-6.8592059243107730281,0.00000000000000000000,1.00000000000000000000,-0.0000407657797139096,-0.0141570925366448895,0.99989978251275757337,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3447352474922809,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -160 ,0 ,-1.1770509462035161352,-6.8880814052525627388,0.00000000000000000000,1.00000000000000000000,-0.0007670613608000603,-0.0141865243047955402,0.99989907197927607729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3451356926125299,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -161 ,0 ,-1.1543474082594196161,-6.9169063022067067691,0.00000000000000000000,1.00000000000000000000,-0.0014932716441112784,-0.0142194509626685627,0.99989778345294710870,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3455194209527689,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -162 ,0 ,-1.1315807953012271269,-6.9456806680256413244,0.00000000000000000000,1.00000000000000000000,-0.0022193707822949762,-0.0142558722069699717,0.99989591683382172959,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3458864412878028,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -163 ,0 ,-1.1087511094758113472,-6.9744045560344885004,0.00000000000000000000,1.00000000000000000000,-0.0029453329285269946,-0.0142957874866644421,0.99989347206293732739,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3462367624815669,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -164 ,0 ,-1.0858583524281300025,-7.0030780200258408996,0.00000000000000000000,1.00000000000000000000,-0.0036711322395614771,-0.0143391960029701365,0.99989044912233637774,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3465703934798511,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -165 ,0 ,-1.0629025252955535130,-7.0317011142500192022,0.00000000000000000000,1.00000000000000000000,-0.0043967428787807386,-0.0143860967093860543,0.99988684803507921206,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3468873432993859,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -166 ,0 ,-1.0398836287026940183,-7.0602738934129689596,0.00000000000000000000,1.00000000000000000000,-0.0051221390192448977,-0.0144364883117755419,0.99988266886524801435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3471876210514892,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -167 ,0 ,-1.0168016627560134690,-7.0887964126706810574,0.00000000000000000000,1.00000000000000000000,-0.0058472948467403786,-0.0144903692684846645,0.99987791171794460076,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3474712359220575,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -168 ,0 ,-1.3407535213887429303,-6.7330705053584694042,0.00000000000000000000,1.00000000000000000000,0.00354545667049794817,-0.0148189635014111739,0.99988390729011189517,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3426547849685448,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -169 ,0 ,-1.3183930723223693526,-6.7622694617729735000,0.00000000000000000000,1.00000000000000000000,0.00282265321164841802,-0.0148311079555768117,0.99988602893812661420,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3431611529467772,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -170 ,0 ,-1.2959695248995699579,-6.7914176866904476526,0.00000000000000000000,1.00000000000000000000,0.00209980756905093655,-0.0148467197779619791,0.99988757654048643352,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3436507813039497,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -171 ,0 ,-1.2734828834533569175,-6.8205152304458227519,0.00000000000000000000,1.00000000000000000000,0.00137694530131391313,-0.0148657998825851914,0.99988854979716990101,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3441236783964995,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -172 ,0 ,-1.2509331518507120772,-6.8495621438627312116,0.00000000000000000000,1.00000000000000000000,0.00065409198144175727,-0.0148883489393786070,0.99988894844854592225,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3445798526754515,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -173 ,0 ,-1.2283203334867893730,-6.8785584782537512182,0.00000000000000000000,1.00000000000000000000,-0.0000687268061585118,-0.0149143673739623276,0.99988877227542660719,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3450193126645899,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -174 ,0 ,-1.2056444312791712025,-6.9075042854089536703,0.00000000000000000000,1.00000000000000000000,-0.0007914854686746922,-0.0149438553674639141,0.99988802109911734117,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3454420669841056,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -175 ,0 ,-1.1829054476622258285,-6.9363996175967770341,0.00000000000000000000,1.00000000000000000000,-0.0015141584078901463,-0.0149768128563806026,0.99988669478145386637,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3458481243287678,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -176 ,0 ,-1.1601033845815524880,-6.9652445275515351141,0.00000000000000000000,1.00000000000000000000,-0.0022367200231871260,-0.0150132395324832912,0.99988479322483825306,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3462374934861145,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -177 ,0 ,-1.1372382434884464874,-6.9940390684748541261,0.00000000000000000000,1.00000000000000000000,-0.0029591447145518793,-0.0150531348427657002,0.99988231637226365755,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3466101833182619,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -178 ,0 ,-1.1143100253345492589,-7.0227832940242969073,0.00000000000000000000,1.00000000000000000000,-0.0036814068855809652,-0.0150964979894344774,0.99987926420733264087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3469662027637241,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -179 ,0 ,-1.0913187305663911708,-7.0514772583128229044,0.00000000000000000000,1.00000000000000000000,-0.0044034809464877349,-0.0151433279299438561,0.99987563675427137965,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3473055608628783,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -180 ,0 ,-1.0682643591202773958,-7.0801210158984053677,0.00000000000000000000,1.00000000000000000000,-0.0051253413171085801,-0.0151936233770736291,0.99987143407793110938,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3476282667106715,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -181 ,0 ,-1.0451469104169390789,-7.1087146217822629878,0.00000000000000000000,1.00000000000000000000,-0.0058469624299078964,-0.0152473827990483139,0.99986665628378779135,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3479343294930004,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -182 ,0 ,-1.3696296745227929392,-6.7521450591855440848,0.00000000000000000000,1.00000000000000000000,0.00350012662909166168,-0.0155720141632573888,0.99987262263174270238,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3428443387274455,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -183 ,0 ,-1.3472337017393778424,-6.7814138215971446754,0.00000000000000000000,1.00000000000000000000,0.00278082934673305661,-0.0155843393443763772,0.99987468982635185898,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3433729223033878,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -184 ,0 ,-1.3247746302227685344,-6.8106319611692347493,0.00000000000000000000,1.00000000000000000000,0.00206149151204752714,-0.0156001068085727043,0.99987618579517456574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3438847859688394,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -185 ,0 ,-1.3022524636077623672,-6.8397995281582995019,0.00000000000000000000,1.00000000000000000000,0.00134213844082430380,-0.0156193174505067575,0.99987711024244663171,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3443799380875134,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -186 ,0 ,-1.2796672050648774110,-6.8689165733024246662,0.00000000000000000000,1.00000000000000000000,0.00062279546296252561,-0.0156419719236558577,0.99987746291240642282,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3448583871122536,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -187 ,0 ,-1.2570188572945353300,-6.8979831478197723981,0.00000000000000000000,1.00000000000000000000,-0.0000965120804796771,-0.0156680706400932970,0.99987724358934926272,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3453201415850344,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -188 ,0 ,-1.2343074225215455719,-6.9269993034003300991,0.00000000000000000000,1.00000000000000000000,-0.0008157588402402882,-0.0156976137703119106,0.99987645209767406218,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3457652101205894,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -189 ,0 ,-1.2115329024895189480,-6.9559650921999880424,0.00000000000000000000,1.00000000000000000000,-0.0015349194618115582,-0.0157306012430892400,0.99987508830192206588,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3461936014373350,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -190 ,0 ,-1.1886952984553562640,-6.9848805668389122303,0.00000000000000000000,1.00000000000000000000,-0.0022539685884006357,-0.0157670327453936671,0.99987315210680982602,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3466053243100759,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -191 ,0 ,-1.1657946111839589953,-7.0137457803928571209,0.00000000000000000000,1.00000000000000000000,-0.0029728808638921910,-0.0158069077223371295,0.99987064345725551461,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3470003876136615,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -192 ,0 ,-1.1428308409427567760,-7.0425607863887975668,0.00000000000000000000,1.00000000000000000000,-0.0036916309358118741,-0.0158502253771633343,0.99986756233839613194,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3473788002866058,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -193 ,0 ,-1.1198039874966467799,-7.0713256387985561346,0.00000000000000000000,1.00000000000000000000,-0.0044101934582901902,-0.0158969846712864008,0.99986390877559971901,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3477405713674670,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -194 ,0 ,-1.0967140501026630960,-7.1000403920332528784,0.00000000000000000000,1.00000000000000000000,-0.0051285430950259915,-0.0159471843243655896,0.99985968283447002047,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3480857099493732,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -195 ,0 ,-1.0735610275050802009,-7.1287051009379469590,0.00000000000000000000,1.00000000000000000000,-0.0058466545222487960,-0.0160008228144257295,0.99985488462084270988,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3484142252273159,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -196 ,0 ,-0.9997068881898432124,-6.5098105428959591733,0.00000000000000000000,1.00000000000000000000,0.00411371158906366669,-0.0054972188147983814,0.99997642870332903441,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3416745423019165,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -197 ,0 ,-0.9777654434400729899,-6.5381739454316791793,0.00000000000000000000,1.00000000000000000000,0.00334682148727930483,-0.0055070067493835613,0.99997923561571733230,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3419147431814053,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -198 ,0 ,-0.9557608929516900886,-6.5664852450521582483,0.00000000000000000000,1.00000000000000000000,0.00257986754533472964,-0.0055205826498120986,0.99998143355297086642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3421379630763112,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -199 ,0 ,-0.9336932501935994999,-6.5947444929566971794,0.00000000000000000000,1.00000000000000000000,0.00181287847324920542,-0.0055379476908987909,0.99998302215938328352,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.3423442101939144,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/globalCoordinates_20rays.rayui.csv b/Intern/RAY-Core/tests/output/globalCoordinates_20rays.rayui.csv deleted file mode 100644 index 584ee8011..000000000 --- a/Intern/RAY-Core/tests/output/globalCoordinates_20rays.rayui.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.6167097164484369731,0.41824099733850300664,0.00000000000000000000,-1.0000000000000000000,-0.0005647204994290210,0.00042554747485785797,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.71933999999999997942,0.69465799999999999769,-0.0000070931699999999,0.00026000004322668197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-0.2519609284319039854,0.46950303811752197580,0.00000000000000000000,-1.0000000000000000000,-0.0002346312043095140,0.00047193849992037097,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.71933999999999997942,0.69465799999999999769,-0.0000079431399999999,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,0.11278781339990899545,0.52076513075111097172,0.00000000000000000000,-1.0000000000000000000,0.00009545810914834539,0.00051832952755997898,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.76604399999999994719,0.64278800000000002601,0.00002152689999999999,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,0.47753658533419302001,0.57202728596118102011,0.00000000000000000000,-1.0000000000000000000,0.00042554740426783299,0.00056472055262254299,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.55919300000000005113,0.82903800000000005265,-0.0000680066999999999,0.00026000004334036897,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-0.5703186709567790169,0.08815155685739380075,0.00000000000000000000,-1.0000000000000000000,-0.0005183295235826120,0.00009545813074532539,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.91354500000000005144,0.40673700000000001519,-0.0000025844700000000,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-0.2055698883010070032,0.13941363578013699076,0.00000000000000000000,-1.0000000000000000000,-0.0001882401917865299,0.00014184916096245299,0.99999997222222203330,100.000000000000000000,1.00000000000000000000,0.37460700000000002329,0.92718400000000000815,-0.0000232571000000000,0.00002888888946017690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,0.15917885353080798993,0.19067572841373001124,0.00000000000000000000,-1.0000000000000000000,0.00014184915834792501,0.00018824019375662399,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,0.96126199999999994982,0.27563700000000002088,0.00015700299999999998,0.00002888888946017690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,0.52392763082588600376,0.24193784547997598810,0.00000000000000000000,-1.0000000000000000000,0.00047193849014405601,0.00023463122397359198,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.88294799999999995510,0.46947200000000000041,-0.0000283243999999999,0.00014444446003381001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-0.5239276308258520309,-0.2419378454800819866,0.00000000000000000000,-1.0000000000000000000,-0.0004719384901440209,-0.0002346312239736979,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.61566100000000001379,0.78801100000000001699,-0.0000041497100000000,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-0.1591788535307880059,-0.1906757284137819974,0.00000000000000000000,-1.0000000000000000000,-0.0001418491583479060,-0.0001882401937566759,0.99999997222222303250,100.000000000000000000,1.00000000000000000000,0.17364799999999999680,0.98480800000000001670,-0.0000864739000000000,0.00002888888946017690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,0.20556988830098998910,-0.1394136357800830061,0.00000000000000000000,-1.0000000000000000000,0.00018824019178651299,-0.0001418491609624000,0.99999997222222203330,100.000000000000000000,1.00000000000000000000,0.71933999999999997942,0.69465799999999999769,-0.0000074790099999999,0.00002888888946017690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,0.57031867095678001611,-0.0881515568573912056,0.00000000000000000000,-1.0000000000000000000,0.00051832952358261301,-0.0000954581307453250,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.91354500000000005144,0.40673700000000001519,-0.0000033462900000000,0.00014444446003381001,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-0.4775365853342130040,-0.5720272859611309490,0.00000000000000000000,-1.0000000000000000000,-0.0004255474042678529,-0.0005647205526224909,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.96126199999999994982,0.27563700000000002088,-0.0000123643999999999,0.00026000004334036897,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-0.1127878133998729964,-0.5207651307512179972,0.00000000000000000000,-1.0000000000000000000,-0.0000954581091483099,-0.0005183295275600840,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.96126199999999994982,0.27563700000000002088,0.00015122200000000001,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,0.25196092843190498467,-0.4695030381175199774,0.00000000000000000000,-1.0000000000000000000,0.00023463120430951500,-0.0004719384999203709,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.96126199999999994982,0.27563700000000002088,-0.0000123687999999999,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,0.61670971644845296033,-0.4182409973385580181,0.00000000000000000000,-1.0000000000000000000,0.00056472049942903697,-0.0004255474748579109,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.61566100000000001379,0.78801100000000001699,-0.0001381839999999999,0.00026000004345405597,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-0.6167097164484369731,0.41824099733850300664,0.00000000000000000000,-1.0000000000000000000,-0.0005647204994290210,0.00042554747485785797,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.71933999999999997942,0.69465799999999999769,-0.0000070931699999999,0.00026000004322668197,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-0.2519609284319039854,0.46950303811752197580,0.00000000000000000000,-1.0000000000000000000,-0.0002346312043095140,0.00047193849992037097,0.99999986111111505149,100.000000000000000000,1.00000000000000000000,0.71933999999999997942,0.69465799999999999769,-0.0000079431399999999,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,0.11278781339990899545,0.52076513075111097172,0.00000000000000000000,-1.0000000000000000000,0.00009545810914834539,0.00051832952755997898,0.99999986111111605069,100.000000000000000000,1.00000000000000000000,0.76604399999999994719,0.64278800000000002601,0.00002152689999999999,0.00014444445992012301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,0.47753658533419302001,0.57202728596118102011,0.00000000000000000000,-1.0000000000000000000,0.00042554740426783299,0.00056472055262254299,0.99999975000002094827,100.000000000000000000,1.00000000000000000000,0.55919300000000005113,0.82903800000000005265,-0.0000680066999999999,0.00026000004334036897,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/globalCoordinates_20rays.rayx.csv b/Intern/RAY-Core/tests/output/globalCoordinates_20rays.rayx.csv deleted file mode 100644 index b042c42bb..000000000 --- a/Intern/RAY-Core/tests/output/globalCoordinates_20rays.rayx.csv +++ /dev/null @@ -1,21 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.6167097164485104698,0.41824099733860770067,0.00000000000000000000,1.00000000000000000000,-0.0005647204994289436,0.00042554747485777156,0.99999975000001950498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00026000004299930,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -1 ,0 ,-0.2519609284318990449,0.46950303811752369664,0.00000000000000000000,1.00000000000000000000,-0.0002346312043093586,0.00047193849992018861,0.99999986111111427433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -2 ,0 ,0.11278781339975871289,0.52076513075138142205,0.00000000000000000000,1.00000000000000000000,0.00009545810914834733,0.00051832952756006040,0.99999986111111427433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -3 ,0 ,0.47753658533411008635,0.57202728596123131321,0.00000000000000000000,1.00000000000000000000,0.00042554740426790135,0.00056472055262240703,0.99999975000001950498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00026000004299930,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -4 ,0 ,-0.5703186709568397461,0.08815155685750260261,0.00000000000000000000,1.00000000000000000000,-0.0005183295235825211,0.00009545813074525021,0.99999986111111449638,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445923800,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -5 ,0 ,-0.2055698883010931843,0.13941363578023202585,0.00000000000000000000,1.00000000000000000000,-0.0001882401917864647,0.00014184916096236454,0.99999997222222114512,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00002888888866436,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -6 ,0 ,0.15917885353078584098,0.19067572841375968195,0.00000000000000000000,1.00000000000000000000,0.00014184915834805378,0.00018824019375647050,0.99999997222222114512,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00002888888866436,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -7 ,0 ,0.52392763082583493350,0.24193784548000915601,0.00000000000000000000,1.00000000000000000000,0.00047193849014415305,0.00023463122397344207,0.99999986111111460740,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -8 ,0 ,-0.5239276308259478431,-0.2419378454797777300,0.00000000000000000000,1.00000000000000000000,-0.0004719384901439651,-0.0002346312239735812,0.99999986111111416331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445923800,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -9 ,0 ,-0.1591788535308199248,-0.1906757284137638730,0.00000000000000000000,1.00000000000000000000,-0.0001418491583477875,-0.0001882401937568412,0.99999997222222125614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00002888888889174,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -10 ,0 ,0.20556988830092159936,-0.1394136357800209724,0.00000000000000000000,1.00000000000000000000,0.00018824019178659444,-0.0001418491609625218,0.99999997222222136716,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00002888888866436,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -11 ,0 ,0.57031867095667632128,-0.0881515568573221636,0.00000000000000000000,1.00000000000000000000,0.00051832952358265985,-0.0000954581307454420,0.99999986111111438535,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -12 ,0 ,-0.4775365853342627975,-0.5720272859610108229,0.00000000000000000000,1.00000000000000000000,-0.0004255474042677513,-0.0005647205526225611,0.99999975000001961600,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00026000004277193,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -13 ,0 ,-0.1127878133999064558,-0.5207651307510944294,0.00000000000000000000,1.00000000000000000000,-0.0000954581091481933,-0.0005183295275601469,0.99999986111111460740,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -14 ,0 ,0.25196092843184703102,-0.4695030381175075429,0.00000000000000000000,1.00000000000000000000,0.00023463120430960513,-0.0004719384999205355,0.99999986111111427433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445923800,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -15 ,0 ,0.61670971644838556979,-0.4182409973385445844,0.00000000000000000000,1.00000000000000000000,0.00056472049942911904,-0.0004255474748580835,0.99999975000001939395,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00026000004254456,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -16 ,0 ,-0.6167097164485104698,0.41824099733860770067,0.00000000000000000000,1.00000000000000000000,-0.0005647204994289436,0.00042554747485777156,0.99999975000001950498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00026000004299930,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -17 ,0 ,-0.2519609284318990449,0.46950303811752369664,0.00000000000000000000,1.00000000000000000000,-0.0002346312043093586,0.00047193849992018861,0.99999986111111427433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -18 ,0 ,0.11278781339975871289,0.52076513075138142205,0.00000000000000000000,1.00000000000000000000,0.00009545810914834733,0.00051832952756006040,0.99999986111111427433,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00014444445946537,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 -19 ,0 ,0.47753658533411008635,0.57202728596123131321,0.00000000000000000000,1.00000000000000000000,0.00042554740426790135,0.00056472055262240703,0.99999975000001950498,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,1040.00026000004299930,0.00000000000000000000,5.00000000000000000000,54321.0000000000000000 diff --git a/Intern/RAY-Core/tests/output/pm_ell_ip_200mirrormis.rayui.csv b/Intern/RAY-Core/tests/output/pm_ell_ip_200mirrormis.rayui.csv deleted file mode 100644 index cfe45c092..000000000 --- a/Intern/RAY-Core/tests/output/pm_ell_ip_200mirrormis.rayui.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-2.4563588963705100809,1.88566694638418996810,0.00000000000000000000,-1.0000000000000000000,0.00263151831936288011,-0.0039827128367256299,0.99998860648999199352,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012940599999999,-1.1836574585472598997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-2.4752975393920397806,1.84980941156582989748,0.00000000000000000000,-1.0000000000000000000,0.00184958271503832998,-0.0039912045009432598,0.99999032461839998386,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046436300000,0.00000333845000000000,-1.1835546378928301081,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,-2.4941552268770901257,1.81390152454616004895,0.00000000000000000000,-1.0000000000000000000,0.00106752486454876008,-0.0040034134425497303,0.99999141649889800032,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019739199999999,-1.1834367013678999125,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,-2.5129320088365498797,1.77794322296656992499,0.00000000000000000000,-1.0000000000000000000,0.00028537187233351599,-0.0040193416182956499,0.99999188169497199574,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013365100000000,-1.1833036385891100294,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-2.5316279347348000783,1.74193444318746992749,0.00000000000000000000,-1.0000000000000000000,-0.0004968491283687519,-0.0040389907287263198,0.99999171981313794699,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047230200000,0.00000336686999999999,-1.1831554389429999041,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-2.5502430534750200052,1.70587512029685006709,0.00000000000000000000,-1.0000000000000000000,-0.0012791109786313000,-0.0040623622177414801,0.99999093050303000662,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000048424300000,0.00000340916000000000,-1.1829920916051199775,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,-2.5687774133839198498,1.66976518811360996608,0.00000000000000000000,-1.0000000000000000000,-0.0020613864969570802,-0.0040894572721888499,0.99998951345748099406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000048427100000,0.00000340925999999999,-1.1828135855300800916,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,-2.5872310621972798294,1.63360457919396995229,0.00000000000000000000,-1.0000000000000000000,-0.0028436484824051000,-0.0041202768215142203,0.99998746841259100737,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000007417500,-0.0000000421937000000,-1.1826199094545000178,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,-2.6056040470448600387,1.59739322483753998227,0.00000000000000000000,-1.0000000000000000000,-0.0036258697177221498,-0.0041548215374438996,0.99998479514779703425,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012948499999999,-1.1824110518995198937,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,-2.6238964144358698504,1.56113105509377003699,0.00000000000000000000,-1.0000000000000000000,-0.0044080229724809596,-0.0041930918337198495,0.99998149348592901830,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046458000000,0.00000333923000000000,-1.1821870011714299408,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,-2.6421082102442299266,1.52481799876714996244,0.00000000000000000000,-1.0000000000000000000,-0.0051900810062228703,-0.0042350878658747896,0.99997756329325604429,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046461600000,0.00000333935999999999,-1.1819477453576598957,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,-2.6602394796942099297,1.48845398342508006273,0.00000000000000000000,-1.0000000000000000000,-0.0059720165716050802,-0.0042808095310563100,0.99997300447953496593,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012952600000000,-1.1816932723461399667,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,-2.6782902673458401920,1.45203893540434991749,0.00000000000000000000,-1.0000000000000000000,-0.0067538024175509501,-0.0043302564678907003,0.99996781699804104803,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019738800000000,-1.1814235697937600644,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,-2.6962606170806000527,1.41557277981756990392,0.00000000000000000000,-1.0000000000000000000,-0.0075354112924031898,-0.0043834280563957396,0.99996200084559705434,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020160400000000,-1.1811386251555400228,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,-2.4209926893532398572,1.86553106897004994380,0.00000000000000000000,-1.0000000000000000000,0.00269455834696468018,-0.0032453276343170599,0.99999110356235698660,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020007000000000,-1.1834919203313301050,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,-2.4398747945993801700,1.82976189824853996412,0.00000000000000000000,-1.0000000000000000000,0.00190904146953958992,-0.0032535234204780797,0.99999288504769900942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000048305700000,0.00000340497999999999,-1.1834168628505499221,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-2.4586759368834498751,1.79394250152063006176,0.00000000000000000000,-1.0000000000000000000,0.00112339953909115991,-0.0032654624197126498,0.99999403734655400999,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020006899999999,-1.1833267099811999312,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-2.4773961671444801879,1.75807281642762003315,0.00000000000000000000,-1.0000000000000000000,0.00033765991130908600,-0.0032811466231809599,0.99999456001651398917,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020147800000000,-1.1832214513594900839,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,-2.4960355357741899062,1.72215277932054000586,0.00000000000000000000,-1.0000000000000000000,-0.0004481500288024589,-0.0033005777628454199,0.99999445265860498199,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020147700000000,-1.1831010764054799011,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,-2.5145940926019099137,1.68618232526340006138,0.00000000000000000000,-1.0000000000000000000,-0.0012340028700789699,-0.0033237573110195799,0.99999371491737598649,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047518200000,0.00000337711999999999,-1.1829655743184699367,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -20 ,0 ,-2.5330718868793900000,1.65016138804118006611,0.00000000000000000000,-1.0000000000000000000,-0.0020198711783576098,-0.0033506864799569499,0.99999234648098000999,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046338600000,0.00000333493999999999,-1.1828149340689200208,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -21 ,0 ,-2.5514689672659600638,1.61408990016427988933,0.00000000000000000000,-1.0000000000000000000,-0.0028057274996468799,-0.0033813662214902100,0.99999034708124701076,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020147500000000,-1.1826491444181799206,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -22 ,0 ,-2.5697853818133600256,1.57796779287383004408,0.00000000000000000000,-1.0000000000000000000,-0.0035915443633025697,-0.0034157972267105899,0.99998771649375395309,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046344800000,0.00000333516000000000,-1.1824681939050400991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -23 ,0 ,-2.5880211779510298164,1.54179499614988002598,0.00000000000000000000,-1.0000000000000000000,-0.0043772942852097398,-0.0034539799256943499,0.99998445453787598857,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046348100000,0.00000333527999999999,-1.1822720708523799526,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -24 ,0 ,-2.6061764024712799070,1.50557143871607990170,0.00000000000000000000,-1.0000000000000000000,-0.0051629497709698201,-0.0034959144872761501,0.99998056107684396565,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000020682100,-0.0000000704544000000,-1.1820607633697999272,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -25 ,0 ,-2.6242511015145502106,1.46929704804675997920,0.00000000000000000000,-1.0000000000000000000,-0.0059484833190917496,-0.0035416008188652900,0.99997603601778495274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003312280,-0.0000000281943000000,-1.1818342593493300629,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -26 ,0 ,-2.6422453205548399601,1.43297175037444990408,0.00000000000000000000,-1.0000000000000000000,-0.0067338674241869201,-0.0035910385663080498,0.99997087931175698827,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013209800000000,-1.1815925464704799541,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -27 ,0 ,-2.6601591043851500195,1.39659547069594003332,0.00000000000000000000,-1.0000000000000000000,-0.0075190745801666800,-0.0036442271137966898,0.99996509095377994480,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013211299999999,-1.1813356121963400902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -28 ,0 ,-2.3857154352915799222,1.84541499925932006576,0.00000000000000000000,-1.0000000000000000000,0.00275802610325511995,-0.0025044697304663098,0.99999306043761304607,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019710899999999,-1.1833390906668899145,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -29 ,0 ,-2.4045409259319998618,1.80973415733120002180,0.00000000000000000000,-1.0000000000000000000,0.00196890308186924980,-0.0025123661107219800,0.99999490570561400115,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019710799999999,-1.1832917906136799501,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -30 ,0 ,-2.4232854459510599909,1.77400321632422008910,0.00000000000000000000,-1.0000000000000000000,0.00117965216017962000,-0.0025240318816499600,0.99999611883438899173,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047402200000,0.00000337298999999999,-1.1832294156749900704,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -31 ,0 ,-2.4419490472254499202,1.73822211388379010976,0.00000000000000000000,-1.0000000000000000000,0.00039030094804058798,-0.0025394690693870698,0.99999669937556101562,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046221100000,0.00000333071000000000,-1.1831519555175900038,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -32 ,0 ,-2.4605317810837799008,1.70239078635005003370,0.00000000000000000000,-1.0000000000000000000,-0.0003991229148543039,-0.0025586794378409899,0.99999664692459500070,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046223500000,0.00000333079000000000,-1.1830593995865699152,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -33 ,0 ,-2.4790336982910901042,1.66650916876728993898,0.00000000000000000000,-1.0000000000000000000,-0.0011885917621701500,-0.0025816644882227799,0.99999596112088995347,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046226100000,0.00000333088000000000,-1.1829517371020299432,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -34 ,0 ,-2.4974548490337400430,1.63057719488688990239,0.00000000000000000000,-1.0000000000000000000,-0.0019780779041375898,-0.0026084254586341000,0.99999464164786000530,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013175799999999,-1.1828289570615899695,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -35 ,0 ,-2.5157952829041301257,1.59459479717426999556,0.00000000000000000000,-1.0000000000000000000,-0.0027675536307664701,-0.0026389633236938402,0.99999268823300702102,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013176900000000,-1.1826910482453700801,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -36 ,0 ,-2.5340550488856501409,1.55856190681427997368,0.00000000000000000000,-1.0000000000000000000,-0.0035569912150667801,-0.0026732787942159198,0.99999010064799398467,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000048214400000,0.00000340175999999999,-1.1825379992131999085,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -37 ,0 ,-2.5522341953375899947,1.52247845371829004790,0.00000000000000000000,-1.0000000000000000000,-0.0043463629162752703,-0.0027113723169265900,0.99998687870869595872,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047024800000,0.00000335954000000000,-1.1823697983061300931,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -38 ,0 ,-2.5703327699801001848,1.48634436652986989813,0.00000000000000000000,-1.0000000000000000000,-0.0051356409830873002,-0.0027532440742313300,0.99998302227525903695,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047028400000,0.00000335966999999999,-1.1821864336488900892,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -39 ,0 ,-2.5883508198794999977,1.45015957263141004318,0.00000000000000000000,-1.0000000000000000000,-0.0059247976568932696,-0.0027988939840312698,0.99997853125214197778,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047032100000,0.00000335980000000000,-1.1819878931469200988,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -40 ,0 ,-2.6062883914333299095,1.41392399815114999661,0.00000000000000000000,-1.0000000000000000000,-0.0067138051750183398,-0.0028483216995792699,0.99997340558815295263,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012901599999999,-1.1817741644924799615,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -41 ,0 ,-2.6241455303557299494,1.37763756797125003217,0.00000000000000000000,-1.0000000000000000000,-0.0075026357739652396,-0.0029015266093848101,0.99996764527647497011,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047436200000,0.00000337419999999999,-1.1815452351661399621,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -42 ,0 ,-2.3505271485372998263,1.82531870675542995385,0.00000000000000000000,-1.0000000000000000000,0.00282192572665766012,-0.0017601152230987098,0.99999446934950297904,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012861900000000,-1.1831990064138200313,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -43 ,0 ,-2.3692959470537600097,1.78972615805555990142,0.00000000000000000000,-1.0000000000000000000,0.00202917146144100018,-0.0017677086241237899,0.99999637882814396139,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046107300000,0.00000332660000000000,-1.1831794580347199108,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -44 ,0 ,-2.3879837670526700144,1.75408363794740007612,0.00000000000000000000,-1.0000000000000000000,0.00123628640759624003,-0.0017790978381395700,0.99999765320064704088,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012863499999999,-1.1831448553006100876,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -45 ,0 ,-2.4065906613580501094,1.71839108407956997481,0.00000000000000000000,-1.0000000000000000000,0.00044329843209715602,-0.0017942849268408099,0.99999829201259204936,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047295500000,0.00000336919000000000,-1.1830951879104500967,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -46 ,0 ,-2.4251166822449099491,1.68264843278537989945,0.00000000000000000000,-1.0000000000000000000,-0.0003497645677085700,-0.0018132716866122199,0.99999829485381497296,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013147600000000,-1.1830304453279700815,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -47 ,0 ,-2.4435618814238200258,1.64685561908964994692,0.00000000000000000000,-1.0000000000000000000,-0.0011428746673424299,-0.0018360596480583900,0.99999766135849699200,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046902400000,0.00000335515999999999,-1.1829506168006700406,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -48 ,0 ,-2.4619263100253498954,1.61101257671262998449,0.00000000000000000000,-1.0000000000000000000,-0.0019360039184465999,-0.0018626500755775099,0.99999639120524996815,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013573999999999,-1.1828556913493499802,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -49 ,0 ,-2.4802100185848199309,1.57511923807547993270,0.00000000000000000000,-1.0000000000000000000,-0.0027291243520431700,-0.0018930439669854199,0.99999448411719205065,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019696300000000,-1.1827456577767601064,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -50 ,0 ,-2.4984130570268598958,1.53917553430870990283,0.00000000000000000000,-1.0000000000000000000,-0.0035222079818001401,-0.0019272420531790100,0.99999193986201795336,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046125200000,0.00000332725000000000,-1.1826205046627400463,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -51 ,0 ,-2.5165354746503401095,1.50318139525574001602,0.00000000000000000000,-1.0000000000000000000,-0.0043152268073037396,-0.0019652447978554298,0.99998875825205502110,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046128500000,0.00000332737000000000,-1.1824802203614099838,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -52 ,0 ,-2.5345773201130499252,1.46713674948062999803,0.00000000000000000000,-1.0000000000000000000,-0.0051081528173358703,-0.0020070523972698902,0.99998493914431996198,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046132100000,0.00000332749999999999,-1.1823247930190099452,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -53 ,0 ,-2.5525386414168700355,1.43104152427455000307,0.00000000000000000000,-1.0000000000000000000,-0.0059009579931562396,-0.0020526647800484000,0.99998048244056403355,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012873699999999,-1.1821542105607298900,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -54 ,0 ,-2.5704194858926299183,1.39489564566327994832,0.00000000000000000000,-1.0000000000000000000,-0.0066936143117878399,-0.0021020816070384498,0.99997538808730801473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047323100000,0.00000337017999999999,-1.1819684606832701057,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -55 ,0 ,-2.5882199001853098963,1.35869903841290007306,0.00000000000000000000,-1.0000000000000000000,-0.0074860937493057503,-0.0021553022712147399,0.99996965607587096069,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013300800000000,-1.1817675308841399939,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -56 ,0 ,-2.3154278435917499123,1.80524216018839989139,0.00000000000000000000,-1.0000000000000000000,0.00288626140402463990,-0.0010122399967540400,0.99999532242170896534,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019964900000000,-1.1830717047293999311,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -57 ,0 ,-2.3341398717698900178,1.76973786888863005017,0.00000000000000000000,-1.0000000000000000000,0.00208985056348088985,-0.0010195267990815699,0.99999729654120994570,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-1.1830799022761799843,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -58 ,0 ,-2.3527709132939498282,1.73418373460003993891,0.00000000000000000000,-1.0000000000000000000,0.00129330600430862001,-0.0010306360842829399,0.99999863257348597933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046785200000,0.00000335097000000000,-1.1830730660215100780,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -59 ,0 ,-2.3713210219451501536,1.69857969497755001420,0.00000000000000000000,-1.0000000000000000000,0.00049665585359671602,-0.0010455699502000500,0.99999933005799601648,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019682200000000,-1.1830511856935599368,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -60 ,0 ,-2.3897902509548001326,1.66292568635031989821,0.00000000000000000000,-1.0000000000000000000,-0.0003000717306472869,-0.0010643302262419199,0.99999938857887604726,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013264200000000,-1.1830142507851599820,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -61 ,0 ,-2.4081786529886501924,1.62722164372410005306,0.00000000000000000000,-1.0000000000000000000,-0.0010968485627861300,-0.0010869184729074799,0.99999880776502103607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046006800000,0.00000332296999999999,-1.1829622505650800867,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -62 ,0 ,-2.4264862801314301954,1.59146750079017995638,0.00000000000000000000,-1.0000000000000000000,-0.0018936464328502299,-0.0011133359813512199,0.99999758729017895753,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019682099999999,-1.1828951740840198958,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -63 ,0 ,-2.4447131838710900453,1.55566318992740004745,0.00000000000000000000,-1.0000000000000000000,-0.0026904371098426501,-0.0011435837729973400,0.99999572687302595852,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003325120,-0.0000000282489000000,-1.1828130101596299184,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -64 ,0 ,-2.4628594150834599574,1.51980864221185996143,0.00000000000000000000,-1.0000000000000000000,-0.0034871923450514197,-0.0011776625992002700,0.99999322627723397083,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013268399999999,-1.1827157473945799637,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -65 ,0 ,-2.4809250240167699530,1.48390378742087003516,0.00000000000000000000,-1.0000000000000000000,-0.0042838838753680103,-0.0012155729409525899,0.99999008531153399381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046018800000,0.00000332341000000000,-1.1826033741659800480,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -66 ,0 ,-2.4989100602763998359,1.44794855403997990705,0.00000000000000000000,-1.0000000000000000000,-0.0050804834266111997,-0.0012573150086436200,0.99998630382976805286,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013270999999999,-1.1824758786305000768,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -67 ,0 ,-2.5168145728095399071,1.41194286926991008357,0.00000000000000000000,-1.0000000000000000000,-0.0058769627168554598,-0.0013028887418595799,0.99998188173094004760,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046026000000,0.00000332367000000000,-1.1823332487308599869,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -68 ,0 ,-2.5346386098902797812,1.37588665903400997336,0.00000000000000000000,-1.0000000000000000000,-0.0066732934597634402,-0.0013522938092395699,0.99997681895924694916,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046815600000,0.00000335205999999999,-1.1821754721806900789,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -69 ,0 ,-2.5523822191041598550,1.33977984798410010292,0.00000000000000000000,-1.0000000000000000000,-0.0074694473679209304,-0.0014055296083691499,0.99997111550411199587,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013132899999999,-1.1820025364885400342,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -70 ,0 ,-2.2804175351085600453,1.78518532750665004371,0.00000000000000000000,-1.0000000000000000000,0.00295103737130868008,-0.0002608197202879080,0.99999561166612405127,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020094300000000,-1.1829572231035900831,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -71 ,0 ,-2.2990727140291298269,1.74976925751020995214,0.00000000000000000000,-1.0000000000000000000,0.00215094438966400994,-0.0002677962576295160,0.99999765085893899119,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045888300000,0.00000331868999999999,-1.1829931608182300273,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -72 ,0 ,-2.3176468979156199523,1.71430347370300006915,0.00000000000000000000,-1.0000000000000000000,0.00135071471707056008,-0.0002786221981795899,0.99999904896925995156,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045890200000,0.00000331876000000000,-1.1830140853143100709,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -73 ,0 ,-2.3361401415161999750,1.67878791374884994702,0.00000000000000000000,-1.0000000000000000000,0.00055037674377031897,-0.0002932996765248049,0.99999980553035094921,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045892400000,0.00000331884000000000,-1.1830199863505899138,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -74 ,0 ,-2.3545524990283999144,1.64322251397353991109,0.00000000000000000000,-1.0000000000000000000,-0.0002500411085215640,-0.0003118305556542579,0.99999992012057103973,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045894700000,0.00000331891999999999,-1.1830108534384200513,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -75 ,0 ,-2.3728840240832100860,1.60760720936681988924,0.00000000000000000000,-1.0000000000000000000,-0.0010505103899519899,-0.0003342164264732440,0.99999939236346602200,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046682300000,0.00000334727999999999,-1.1829866758779399305,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -76 ,0 ,-2.3911347697293501290,1.57194193359091993755,0.00000000000000000000,-1.0000000000000000000,-0.0018510026258737599,-0.0003604586073591150,0.99999822192785503549,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046685100000,0.00000334737999999999,-1.1829474427406700964,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -77 ,0 ,-2.4093047884174798589,1.53622661898529000445,0.00000000000000000000,-1.0000000000000000000,-0.0026514893201973499,-0.0003905581437676500,0.99999640852791105150,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013098500000000,-1.1828931428705100614,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -78 ,0 ,-2.4273941319845198094,1.50046119657223009369,0.00000000000000000000,-1.0000000000000000000,-0.0034519419587500698,-0.0004245158078867160,0.99999395192323203840,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013099699999999,-1.1828237648840100870,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -79 ,0 ,-2.4454028516381400848,1.46464559606398991853,0.00000000000000000000,-1.0000000000000000000,-0.0042523320126416101,-0.0004623320983402350,0.99999085191889902635,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019950399999999,-1.1827392971839600921,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -80 ,0 ,-2.4633309979411599499,1.42877974586869993522,0.00000000000000000000,-1.0000000000000000000,-0.0050526309416348801,-0.0005040072399354329,0.99998710836553794667,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047893300000,0.00000339041999999999,-1.1826397279427300901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -81 ,0 ,-2.4811786207962600592,1.39286357309837005580,0.00000000000000000000,-1.0000000000000000000,-0.0058528101975219900,-0.0005495411834651190,0.99998272115936104320,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019667699999999,-1.1825250451199700307,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -82 ,0 ,-2.4989457694305499124,1.35689700357317000189,0.00000000000000000000,-1.0000000000000000000,-0.0066528412275035199,-0.0005989336055547970,0.99997769024220595213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000020906000,-0.0000000708361000000,-1.1823952364420600158,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -83 ,0 ,-2.5166324923804599400,1.32087996183238010061,0.00000000000000000000,-1.0000000000000000000,-0.0074526954775715097,-0.0006521839085580349,0.99997201560157100708,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045924200000,0.00000331999000000000,-1.1822502894280000340,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -84 ,0 ,-2.2454962378956699886,1.76514817586543992788,0.00000000000000000000,-1.0000000000000000000,0.00301625791424626988,0.00049417015546343600,0.99999532898111698209,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045777100000,0.00000331466999999999,-1.1828555993500899923,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -85 ,0 ,-2.2640944879261000188,1.72982029080462007541,0.00000000000000000000,-1.0000000000000000000,0.00221245698876101990,0.00048750759690474598,0.99999743368191496006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045778900000,0.00000331473000000000,-1.1829192714791401108,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -86 ,0 ,-2.2826117342954299616,1.69444282187826988916,0.00000000000000000000,-1.0000000000000000000,0.00140851635703272007,0.00047696846142808397,0.99999889429076804781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045780800000,0.00000331480000000000,-1.1829679509965000949,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -87 ,0 ,-2.3010480327288398427,1.65901570676155007966,0.00000000000000000000,-1.0000000000000000000,0.00060446467553664201,0.00046255057709232400,0.99999971033466794612,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019936700000000,-1.1830016276828700938,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -88 ,0 ,-2.3194034384001800397,1.62353888177809002613,0.00000000000000000000,-1.0000000000000000000,-0.0001996693672141319,0.00044425204676085101,0.99999988138612494470,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019936599999999,-1.1830202910926999049,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -89 ,0 ,-2.3376780059157300506,1.58801228190410004259,0.00000000000000000000,-1.0000000000000000000,-0.0010038570540504799,0.00042207124860271799,0.99999940706326195805,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013069999999999,-1.1830239305381800019,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -90 ,0 ,-2.3558717892983098707,1.55243584077501006746,0.00000000000000000000,-1.0000000000000000000,-0.0018080696425387999,0.00039600683654189599,0.99999828702990900541,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046976800000,0.00000335781999999999,-1.1830125351186799864,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -91 ,0 ,-2.3739848419713398541,1.51680949069048010002,0.00000000000000000000,-1.0000000000000000000,-0.0026122783683801501,0.00036605774066072999,0.99999652099567604146,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045793300000,0.00000331525000000000,-1.1829860937018599198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -92 ,0 ,-2.3920172167430000520,1.48113316262172989290,0.00000000000000000000,-1.0000000000000000000,-0.0034164544488170800,0.00033222316755249198,0.99999410871602900652,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045796400000,0.00000331537000000000,-1.1829445949255199543,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -93 ,0 ,-2.4099689657904699302,1.44540678621677010085,0.00000000000000000000,-1.0000000000000000000,-0.0042205690860469000,0.00029450260062474599,0.99999104999235199908,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012791800000000,-1.1828880272107700211,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -94 ,0 ,-2.4278401406442600141,1.40963028980815008317,0.00000000000000000000,-1.0000000000000000000,-0.0050245934706406002,0.00025289580035581200,0.99998734467200600661,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045803100000,0.00000331560999999999,-1.1828163787524799133,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -95 ,0 ,-2.4456307921724800280,1.37380360041762994427,0.00000000000000000000,-1.0000000000000000000,-0.0058284987849665402,0.00020740280450082200,0.99998299264836998379,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012794500000000,-1.1827296375138300899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -96 ,0 ,-2.4633409705656101884,1.33792664376537007164,0.00000000000000000000,-1.0000000000000000000,-0.0066322562066183296,0.00015802392824348899,0.99997799386088903617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003333790,-0.0000000282861000000,-1.1826277912555300808,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -97 ,0 ,-2.4809707253208199695,1.30199934427718000407,0.00000000000000000000,-1.0000000000000000000,-0.0074358369118454796,0.00010475976431068000,0.99997234829509695774,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020079799999999,-1.1825108274965701049,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -98 ,0 ,-2.2106639669177998719,1.74513067161788004710,0.00000000000000000000,-1.0000000000000000000,0.00308192736905157005,0.00125275440004496006,0.99999446614974096814,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000007621330,-0.0000000427692000000,-1.1827668716026700224,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -99 ,0 ,-2.2292052077033002177,1.70989093485005994033,0.00000000000000000000,-1.0000000000000000000,0.00227439245729591996,0.00124640958227694993,0.99999663679539596561,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045669500000,0.00000331077000000000,-1.1828582723892400174,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -100 ,0 ,-2.2476654359502701296,1.67460174493844005105,0.00000000000000000000,-1.0000000000000000000,0.00146671478036313005,0.00123616075754001989,0.99999816032547494959,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003337610,-0.0000000283033000000,-1.1829347011969300051,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -101 ,0 ,-2.2660447083710901772,1.63926303957160990343,0.00000000000000000000,-1.0000000000000000000,0.00065892326408503298,0.00122200571591767992,0.99999903626061703576,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019639700000000,-1.1829961478346100456,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -102 ,0 ,-2.2843430811260101442,1.60387475507238996819,0.00000000000000000000,-1.0000000000000000000,-0.0001489531330932420,0.00120394252555161996,0.99999926416740902990,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019639599999999,-1.1830426018808599675,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -103 ,0 ,-2.3025606098068798210,1.56843682640557990914,0.00000000000000000000,-1.0000000000000000000,-0.0009568854235432100,0.00118196953315318994,0.99999884365848601408,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012760699999999,-1.1830740526755800789,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -104 ,0 ,-2.3206973494208598118,1.53294918718099992815,0.00000000000000000000,-1.0000000000000000000,-0.0017648445938922600,0.00115608536446420995,0.99999777439261805511,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045680900000,0.00000331118999999999,-1.1830904893522500298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -105 ,0 ,-2.3387533543743699304,1.49741176966080002941,0.00000000000000000000,-1.0000000000000000000,-0.0025728016084712299,0.00112628892466660004,0.99999605607479402635,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020067000000000,-1.1830919007875300152,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -106 ,0 ,-2.3567286784570899982,1.46182450476653991167,0.00000000000000000000,-1.0000000000000000000,-0.0033807274127697598,0.00109257939874334995,0.99999368845629099666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046874000000,0.00000335414999999999,-1.1830782756504700792,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -107 ,0 ,-2.3746233748259899520,1.42618732208262999350,0.00000000000000000000,-1.0000000000000000000,-0.0041885929368981203,0.00105495625178658996,0.99999067133474595081,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020066800000000,-1.1830496023787899773,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -108 ,0 ,-2.3924374959894398884,1.39050014986659009608,0.00000000000000000000,-1.0000000000000000000,-0.0049963690990547596,0.00101341922926261995,0.99998700455420497235,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013194000000000,-1.1830058691807598947,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -109 ,0 ,-2.4101710937914297971,1.35476291505241008827,0.00000000000000000000,-1.0000000000000000000,-0.0058040268089989003,0.00096796835721901796,0.99998268800517697840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046481600000,0.00000334007999999999,-1.1829470640463999320,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -110 ,0 ,-2.4278242193958998740,1.31897554325983001888,0.00000000000000000000,-1.0000000000000000000,-0.0066115369715272400,0.00091860394244624998,0.99997772162467302159,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047682400000,0.00000338294999999999,-1.1828731747405099028,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -111 ,0 ,-2.4453969232711099124,1.28313795880111003455,0.00000000000000000000,-1.0000000000000000000,-0.0074188704899537495,0.00086532657258886502,0.99997210539623404557,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013054100000000,-1.1827841888073200582,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -112 ,0 ,-2.1759207372987900974,1.72513278030352990022,0.00000000000000000000,-1.0000000000000000000,0.00314805012312138017,0.00201495800577434006,0.99999301483793201494,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012730099999999,-1.1826910783415800487,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -113 ,0 ,-2.1944048877535600183,1.68998115490885991718,0.00000000000000000000,-1.0000000000000000000,0.00233675494021344997,0.00200893473972551996,0.99999525186750803928,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019625599999999,-1.1828102020315300890,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -114 ,0 ,-2.2128080165383900990,1.65478020787674995339,0.00000000000000000000,-1.0000000000000000000,0.00152531388887730003,0.00199897977731038978,0.99999683874369804659,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020053999999999,-1.1829143743949499523,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -115 ,0 ,-2.2311301813631900792,1.61952987691125005476,0.00000000000000000000,-1.0000000000000000000,0.00071375616746846397,0.00198509087000314993,0.99999777498070996362,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013015599999999,-1.1830035852744900104,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -116 ,0 ,-2.2493714393849901789,1.58423009833802996837,0.00000000000000000000,-1.0000000000000000000,-0.0000978889924580448,0.00196726605063734984,0.99999806013913394853,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046350300000,0.00000333536000000000,-1.1830778242747299611,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -117 ,0 ,-2.2675318471914898132,1.54888080711029996194,0.00000000000000000000,-1.0000000000000000000,-0.0009095923296263359,0.00194550363392786995,0.99999769382604297707,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046352700000,0.00000333544000000000,-1.1831370807693699642,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -118 ,0 ,-2.2856114607845601227,1.51348193681539000543,0.00000000000000000000,-1.0000000000000000000,-0.0017213245565277398,0.00191980221694110003,0.99999667569508399189,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013446800000000,-1.1831813439055200998,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -119 ,0 ,-2.3036103355640298318,1.47803341967977996951,0.00000000000000000000,-1.0000000000000000000,-0.0025330563629176300,0.00189016067951252989,0.99999500544656094724,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046358300000,0.00000333564000000000,-1.1832106025924500336,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -120 ,0 ,-2.3215285263115199576,1.44253518657498003285,0.00000000000000000000,-1.0000000000000000000,-0.0033447584193199201,0.00185657818461226991,0.99999268282750997105,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013020800000000,-1.1832248455186800129,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -121 ,0 ,-2.3393660871740999951,1.40698716702476001039,0.00000000000000000000,-1.0000000000000000000,-0.0041564013805379896,0.00181905417866840002,0.99998970763176298071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046768600000,0.00000335037000000000,-1.1832240611420299369,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -122 ,0 ,-2.3571230716484801170,1.37138928921162994711,0.00000000000000000000,-1.0000000000000000000,-0.0049679558891722198,0.00177758839182757004,0.99998607970000896738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045584100000,0.00000330767000000000,-1.1832082376890900032,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -123 ,0 ,-2.3747995325648201259,1.33574147998277004134,0.00000000000000000000,-1.0000000000000000000,-0.0057793925791419804,0.00173218083817428003,0.99998179891984095846,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012741499999999,-1.1831773631682800385,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -124 ,0 ,-2.3923955220711099478,1.30004366485893996241,0.00000000000000000000,-1.0000000000000000000,-0.0065906820792121598,0.00168283181589195997,0.99997686522579598555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045591500000,0.00000330793999999999,-1.1831314253577100981,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -125 ,0 ,-2.4099110916169999008,1.26429576803964005549,0.00000000000000000000,-1.0000000000000000000,-0.0074017950165226296,0.00162954190738257009,0.99997127859939305416,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046783100000,0.00000335089000000000,-1.1830704118158299475,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -126 ,0 ,-2.1412665643240798019,1.70515446663949998828,0.00000000000000000000,-1.0000000000000000000,0.00321463061575191994,0.00278080619016279981,0.99999096659266695219,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013132899999999,-1.1826282583726899222,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -127 ,0 ,-2.1596935426222398923,1.67009091541543996939,0.00000000000000000000,-1.0000000000000000000,0.00239954863155816995,0.00277510833640736993,0.99999327044739905190,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000007678580,-0.0000000429295000000,-1.1827750992083601033,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -128 ,0 ,-2.1780394898614998666,1.63497817485537000337,0.00000000000000000000,-1.0000000000000000000,0.00158431763067912005,0.00276545083449276007,0.99999492109676602069,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046236200000,0.00000333125000000000,-1.1829070093977001043,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -129 ,0 ,-2.1963044647597498304,1.59981618267990999271,0.00000000000000000000,-1.0000000000000000000,0.00076896708720575602,0.00275183139663919993,0.99999591804845999742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046238300000,0.00000333131999999999,-1.1830239788128000810,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -130 ,0 ,-2.2144885254813200248,1.56460487521937996469,0.00000000000000000000,-1.0000000000000000000,-0.0000464734909742993,0.00273424801977522995,0.99999626085699999666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045457200000,0.00000330307000000000,-1.1831259970839500539,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -131 ,0 ,-2.2325917296202502093,1.52934418741857003354,0.00000000000000000000,-1.0000000000000000000,-0.0008619745657049160,0.00271269898606917980,0.99999594912382394618,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019611199999999,-1.1832130536201899140,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -132 ,0 ,-2.2506141341835999014,1.49403405284306001199,0.00000000000000000000,-1.0000000000000000000,-0.0016775065720991599,0.00268718286340980001,0.99999498249739204869,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045462200000,0.00000330325000000000,-1.1832851375869499754,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -133 ,0 ,-2.2685557955751400882,1.45867440368478007428,0.00000000000000000000,-1.0000000000000000000,-0.0024930399220861698,0.00265769850583069981,0.99999336067325894639,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012709800000000,-1.1833422379222600095,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -134 ,0 ,-2.2864167695789001655,1.42326517076758007895,0.00000000000000000000,-1.0000000000000000000,-0.0033085450079655600,0.00262424505388458980,0.99999108339416098445,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012710999999999,-1.1833843433371400433,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -135 ,0 ,-2.3041971113427499595,1.38780628355533997009,0.00000000000000000000,-1.0000000000000000000,-0.0041239922059687402,0.00258682193497238987,0.99998815045007505286,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019611100000000,-1.1834114423095301038,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -136 ,0 ,-2.3218968753621300749,1.35229767015722002199,0.00000000000000000000,-1.0000000000000000000,-0.0049393518798265196,0.00254542886361330995,0.99998456167828297935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046663300000,0.00000334659999999999,-1.1834235230809300176,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -137 ,0 ,-2.3395161154640500278,1.31673925733442009899,0.00000000000000000000,-1.0000000000000000000,-0.0057545943843418803,0.00250006584166378997,0.99998031696341904694,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019611000000000,-1.1834205736804499498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -138 ,0 ,-2.3570548847909300604,1.28113097050825008871,0.00000000000000000000,-1.0000000000000000000,-0.0065696900689667797,0.00245073315848742985,0.99997541623751096118,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020039899999999,-1.1834025819036899651,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -139 ,0 ,-2.3745132357845402104,1.24547273376749001450,0.00000000000000000000,-1.0000000000000000000,-0.0073846092813825998,0.00239743139107445992,0.99996985948001804178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045486000000,0.00000330411000000000,-1.1833695353189999099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -140 ,0 ,-2.1067014634433798292,1.68519569450810990929,0.00000000000000000000,-1.0000000000000000000,0.00328167333886619002,0.00355032439836088994,0.99998831284008704578,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003350440,-0.0000000283581000000,-1.1825784508654400006,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -141 ,0 ,-2.1250711870097198641,1.65022017996778003201,0.00000000000000000000,-1.0000000000000000000,0.00246277777516357978,0.00354495586785757987,0.99999068396336798780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000021222300,-0.0000000713696000000,-1.1827530030882400513,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -142 ,0 ,-2.1433598698670599524,1.61519560919575999591,0.00000000000000000000,-1.0000000000000000000,0.00164373000081150010,0.00353559947191367995,0.99999239881514001559,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019597300000000,-1.1829126453706100274,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -143 ,0 ,-2.1615675717519500231,1.58012191993202999462,0.00000000000000000000,-1.0000000000000000000,0.00082455976889342298,0.00352225288283886019,0.99999345689650298574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045345700000,0.00000329900999999999,-1.1830573676153299800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -144 ,0 ,-2.1796943518464999556,1.54499904851413005779,0.00000000000000000000,-1.0000000000000000000,0.00000529686689801008,0.00350491406105136018,0.99999385775581994817,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045347900000,0.00000329909000000000,-1.1831871594779399536,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -145 ,0 ,-2.1977402687616898191,1.50982692987928990291,0.00000000000000000000,-1.0000000000000000000,-0.0008140288868597210,0.00348358125561304019,0.99999360098882994485,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019597099999999,-1.1833020103977101022,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -146 ,0 ,-2.2157053805205499941,1.47460549757393000191,0.00000000000000000000,-1.0000000000000000000,-0.0016333876468265500,0.00345825300472186016,0.99999268623873005523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045352900000,0.00000329928000000000,-1.1834019095655299302,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -147 ,0 ,-2.2335897445413901429,1.43933468375667006355,0.00000000000000000000,-1.0000000000000000000,-0.0024527495438084597,0.00342892813614676002,0.99999111319626898808,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046545500000,0.00000334236999999999,-1.1834868459453700140,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -148 ,0 ,-2.2513934176213199478,1.40401441920577996214,0.00000000000000000000,-1.0000000000000000000,-0.0032720846885760900,0.00339560576760950015,0.99998888159982202150,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019880499999999,-1.1835568082701699577,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -149 ,0 ,-2.2691164559196401739,1.36864463332584995747,0.00000000000000000000,-1.0000000000000000000,-0.0040913631754770701,0.00335828530711768016,0.99998599123545794942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000007699220,-0.0000000429867000000,-1.1836117850359599845,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -150 ,0 ,-2.2867589149413700688,1.33322525415345993771,0.00000000000000000000,-1.0000000000000000000,-0.0049105550860548902,0.00331696645324324997,0.99998244193700502879,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013400399999999,-1.1836517645115200991,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -151 ,0 ,-2.3043208495209599462,1.29775620836581007111,0.00000000000000000000,-1.0000000000000000000,-0.0057296304926727102,0.00327164919534822995,0.99997823358609194688,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012971899999999,-1.1836767347406300654,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -152 ,0 ,-2.3218023138059900034,1.26223742128515992177,0.00000000000000000000,-1.0000000000000000000,-0.0065485594621419304,0.00322233381375653001,0.99997336611220000168,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013119499999999,-1.1836866835302499723,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -153 ,0 ,-2.3392033612410201293,1.22666881688952988938,0.00000000000000000000,-1.0000000000000000000,-0.0073673120593538898,0.00316902087987652996,0.99996783949269196778,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045376600000,0.00000330013999999999,-1.1836815984673900725,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -154 ,0 ,-2.0722254502728700842,1.66525642694701003776,0.00000000000000000000,-1.0000000000000000000,0.00334918283775462004,0.00432353830564907986,0.99998504488359196695,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046013600000,0.00000332321999999999,-1.1825416953369098926,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -155 ,0 ,-2.0905378357736998928,1.63036891131461003645,0.00000000000000000000,-1.0000000000000000000,0.00252644666535318997,0.00431850306048587023,0.99998748372095302983,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012934899999999,-1.1827439531907699699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -156 ,0 ,-2.1087691706506102029,1.59543247336735993791,0.00000000000000000000,-1.0000000000000000000,0.00170355504191794008,0.00430945146397771015,0.99998926320651004839,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046017100000,0.00000332335000000000,-1.1829313218304400301,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -157 ,0 ,-2.1269195156694098436,1.56044705086777990565,0.00000000000000000000,-1.0000000000000000000,0.00088053800282811896,0.00429638114785929961,0.99999038283468399956,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012936500000000,-1.1831037911881598923,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -158 ,0 ,-2.1449889310409600007,1.52541258016066993974,0.00000000000000000000,-1.0000000000000000000,0.00005742561848761209,0.00427929003541350008,0.99999084214761302380,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012937299999999,-1.1832613509637899262,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -159 ,0 ,-2.1629774764039000345,1.49032899618028991106,0.00000000000000000000,-1.0000000000000000000,-0.0007657520093043710,0.00425817634202951995,0.99999064073525201212,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046023700000,0.00000332358999999999,-1.1834039906079900639,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -160 ,0 ,-2.1808852108078999876,1.45519623245381990450,0.00000000000000000000,-1.0000000000000000000,-0.0015889647509934100,0.00423303857569367995,0.99998977823547596788,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013370099999999,-1.1835316993478999236,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -161 ,0 ,-2.1987121926967501117,1.42001422110949993005,0.00000000000000000000,-1.0000000000000000000,-0.0024121824529187599,0.00420387553743740028,0.99998825433416005381,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012656599999999,-1.1836444661681799761,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -162 ,0 ,-2.2164584798914801488,1.38478289288058009631,0.00000000000000000000,-1.0000000000000000000,-0.0032353749409703099,0.00417068632172707016,0.99998606876525897302,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020013600000000,-1.1837422798232599685,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -163 ,0 ,-2.2341241295735700944,1.34950217711383002594,0.00000000000000000000,-1.0000000000000000000,-0.0040585120242529497,0.00413347031680611019,0.99998322131088202002,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045252700000,0.00000329562999999999,-1.1838251288344299183,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -164 ,0 ,-2.2517091982684798168,1.31417200177548010309,0.00000000000000000000,-1.0000000000000000000,-0.0048815634987575398,0.00409222720497592982,0.99997971180135003521,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000021266000,-0.0000000714426000000,-1.1838930014914699206,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -165 ,0 ,-2.2692137418289402006,1.27879229345777001292,0.00000000000000000000,-1.0000000000000000000,-0.0057044991510368497,0.00404695696282920003,0.99997554011524503181,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019582699999999,-1.1839458858495399695,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -166 ,0 ,-2.2866378154186199900,1.24336297738672008073,0.00000000000000000000,-1.0000000000000000000,-0.0065272887618864298,0.00399765986142535962,0.99997070617946204329,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000021261300,-0.0000000714340000000,-1.1839837697459600907,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -167 ,0 ,-2.3039814734956101105,1.20788397742946007618,0.00000000000000000000,-1.0000000000000000000,-0.0073499021100285298,0.00394433646641951032,0.99996520996923299318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000003355480,-0.0000000283779000000,-1.1840066407711400398,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -168 ,0 ,-2.0378385405981500611,1.64533662613836995092,0.00000000000000000000,-1.0000000000000000000,0.00341716371182618997,0.00510047381994188989,0.99998115390190200901,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045904100000,0.00000331927000000000,-1.1825180316563999038,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -169 ,0 ,-2.0560935039317098649,1.61053707134563994785,0.00000000000000000000,-1.0000000000000000000,0.00259055964765261001,0.00509577587410087011,0.99998366090099299885,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012624500000000,-1.1827479893837600233,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -170 ,0 ,-2.0742674064578898729,1.57568872897685996470,0.00000000000000000000,-1.0000000000000000000,0.00176379684491497000,0.00508703281920803041,0.99998550545384701226,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020000800000000,-1.1829630786492100202,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -171 ,0 ,-2.0923603099826801887,1.54079153681901992456,0.00000000000000000000,-1.0000000000000000000,0.00093690562463819297,0.00507424224574187961,0.99998668704812398999,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000021339900,-0.0000000715668000000,-1.1831632894181900450,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -172 ,0 ,-2.1103722757563700973,1.50584543122840996964,0.00000000000000000000,-1.0000000000000000000,0.00010991634350331199,0.00505740203922622026,0.99998720521965300811,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019568900000000,-1.1833486114169300407,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -173 ,0 ,-2.1283033644564000042,1.47085034713600992795,0.00000000000000000000,-1.0000000000000000000,-0.0007171406098342420,0.00503651038079038979,0.99998705955253697208,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019568900000000,-1.1835190341314500983,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -174 ,0 ,-2.1461536361700201958,1.43580621805289010417,0.00000000000000000000,-1.0000000000000000000,-0.0015442348184365501,0.00501156574767968980,0.99998624967925597850,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045134600000,0.00000329133000000000,-1.1836745468074199028,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -175 ,0 ,-2.1639231503773599385,1.40071297607797995432,0.00000000000000000000,-1.0000000000000000000,-0.0023713358407845800,0.00498256691370856964,0.99998477528074503073,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046328900000,0.00000333458999999999,-1.1838151384622499495,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -176 ,0 ,-2.1816119659342998460,1.36557055190149001511,0.00000000000000000000,-1.0000000000000000000,-0.0031984132144878998,0.00494951294965866993,0.99998263608648296774,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013062699999999,-1.1839407978707199298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -177 ,0 ,-2.1992201410556599938,1.33037887481404992762,0.00000000000000000000,-1.0000000000000000000,-0.0040254364600019699,0.00491240322362563024,0.99997983187455996567,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020000200000000,-1.1840515135772899935,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -178 ,0 ,-2.2167477332981699866,1.29513787271123992361,0.00000000000000000000,-1.0000000000000000000,-0.0048523750843515404,0.00487123740131189999,0.99997636247174404022,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013065099999999,-1.1841472738921099416,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -179 ,0 ,-2.2341947995439501717,1.25984747210338010603,0.00000000000000000000,-1.0000000000000000000,-0.0056791985848601497,0.00482601544626120974,0.99997222775352401225,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045150300000,0.00000329190000000000,-1.1842280668861300263,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -180 ,0 ,-2.2515613959836198176,1.22450759811921994213,0.00000000000000000000,-1.0000000000000000000,-0.0065058764528837104,0.00477673762004205033,0.99996742764416501891,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013067800000000,-1.1842938804134099939,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -181 ,0 ,-2.2688475780999599606,1.18911817451654000521,0.00000000000000000000,-1.0000000000000000000,-0.0073323781775480999,0.00472340448237374040,0.99996196211673904485,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000020283799999999,-1.1843447020887700738,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -182 ,0 ,-2.0035407503765498837,1.62543625339795005935,0.00000000000000000000,-1.0000000000000000000,0.00348562061537297006,0.00588115708433873014,0.99997663094708200137,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019555000000000,-1.1825075000640499212,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -183 ,0 ,-2.0217382066635600779,1.59072462107984002877,0.00000000000000000000,-1.0000000000000000000,0.00265512111951330016,0.00587680050446747967,0.99997920655765204500,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019555000000000,-1.1827651519085999876,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -184 ,0 ,-2.0398545916873298544,1.55596433675660006379,0.00000000000000000000,-1.0000000000000000000,0.00182445954967525004,0.00586836978281241039,0.99998111661343103140,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046209200000,0.00000333027000000000,-1.1830079560679700456,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -185 ,0 ,-2.0578899683050200231,1.52115533824179993693,0.00000000000000000000,-1.0000000000000000000,0.00099366651592693706,0.00585586246790464979,0.99998236059523204488,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000021400800,-0.0000000716683000000,-1.1832359025368099914,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -186 ,0 ,-2.0758443988175701022,1.48629756190497008816,0.00000000000000000000,-1.0000000000000000000,0.00016277266463571098,0.00583927640686299036,0.99998293803249704847,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000021399400,-0.0000000716657000000,-1.1834489810764801109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -187 ,0 ,-2.0937179449521301499,1.45139094267678991911,0.00000000000000000000,-1.0000000000000000000,-0.0006681913252661230,0.00581860974597003983,0.99998284850340202201,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000007793590,-0.0000000432492000000,-1.1836471811993800606,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -188 ,0 ,-2.1115106678446498023,1.41643541405384998377,0.00000000000000000000,-1.0000000000000000000,-0.0014991947460265601,0.00579386093118855038,0.99998209163495699325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000047009900000,0.00000335900999999999,-1.1838304921822100368,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -189 ,0 ,-2.1292226280227599666,1.38143090810697999337,0.00000000000000000000,-1.0000000000000000000,-0.0023302068648286800,0.00576502870862416038,0.99998066710309696514,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019838800000000,-1.1839989030655699853,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -190 ,0 ,-2.1468538853883400996,1.34637735548526005224,0.00000000000000000000,-1.0000000000000000000,-0.0031611969275535597,0.00573211212493524024,0.99997857463276296208,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013320900000000,-1.1841524026488099430,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -191 ,0 ,-2.1644044992005602168,1.31127468542422009889,0.00000000000000000000,-1.0000000000000000000,-0.0039921341625513600,0.00569511052768395965,0.99997581399797197398,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013037999999999,-1.1842909794971800963,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -192 ,0 ,-2.1818745280587301671,1.27612282575134994289,0.00000000000000000000,-1.0000000000000000000,-0.0048229877844187096,0.00565402356563571035,0.99997238502188201536,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019986799999999,-1.1844146219425499833,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -193 ,0 ,-2.1992640298853398661,1.24092170289403003202,0.00000000000000000000,-1.0000000000000000000,-0.0056537269977817604,0.00560885118900151039,0.99996828757684796951,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019554500000000,-1.1845233180808900641,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -194 ,0 ,-2.2165730619092900433,1.20567124188633001402,0.00000000000000000000,-1.0000000000000000000,-0.0064843210010842302,0.00555959364962266017,0.99996352158446599744,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000045044900000,0.00000328804999999999,-1.1846170557747699447,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -195 ,0 ,-2.2338016806489400245,1.17037136637646010939,0.00000000000000000000,-1.0000000000000000000,-0.0073147389903787801,0.00550625150110633978,0.99995808701560595643,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012611200000000,-1.1846958226529999969,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -196 ,0 ,-2.4563588963705100809,1.88566694638418996810,0.00000000000000000000,-1.0000000000000000000,0.00263151831936288011,-0.0039827128367256299,0.99998860648999199352,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000012940599999999,-1.1836574585472598997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -197 ,0 ,-2.4752975393920397806,1.84980941156582989748,0.00000000000000000000,-1.0000000000000000000,0.00184958271503832998,-0.0039912045009432598,0.99999032461839998386,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000046436300000,0.00000333845000000000,-1.1835546378928301081,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -198 ,0 ,-2.4941552268770901257,1.81390152454616004895,0.00000000000000000000,-1.0000000000000000000,0.00106752486454876008,-0.0040034134425497303,0.99999141649889800032,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000019739199999999,-1.1834367013678999125,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -199 ,0 ,-2.5129320088365498797,1.77794322296656992499,0.00000000000000000000,-1.0000000000000000000,0.00028537187233351599,-0.0040193416182956499,0.99999188169497199574,100.000000000000000000,1.00000000000000000000,0.99971200000000004504,0.02399770000000000028,-0.0000013365100000000,-1.1833036385891100294,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/pm_ell_ip_200mirrormis.rayx.csv b/Intern/RAY-Core/tests/output/pm_ell_ip_200mirrormis.rayx.csv deleted file mode 100644 index 1f34de6bc..000000000 --- a/Intern/RAY-Core/tests/output/pm_ell_ip_200mirrormis.rayx.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-2.4563588963684805932,1.88566694638255527571,0.00000000000000000000,1.00000000000000000000,0.00263151831936488589,-0.0039827128367267844,0.99998860648999166045,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163425414531957,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -1 ,0 ,-2.4752975393902545420,1.84980941156449962825,0.00000000000000000000,1.00000000000000000000,0.00184958271504007576,-0.0039912045009440960,0.99999032461839953978,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8164453621066058,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -2 ,0 ,-2.4941552268756161936,1.81390152454463460252,0.00000000000000000000,1.00000000000000000000,0.00106752486455018820,-0.0040034134425516549,0.99999141649889777827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165632986292621,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -3 ,0 ,-2.5129320088353086504,1.77794322296416229534,0.00000000000000000000,1.00000000000000000000,0.00028537187233473469,-0.0040193416182971062,0.99999188169497155165,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166963614112319,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -4 ,0 ,-2.5316279347338359606,1.74193444318630286105,0.00000000000000000000,1.00000000000000000000,-0.0004968491283678308,-0.0040389907287280953,0.99999171981313783597,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168445610608614,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -5 ,0 ,-2.5502430534742823731,1.70587512029571231053,0.00000000000000000000,1.00000000000000000000,-0.0012791109786305747,-0.0040623622177422963,0.99999093050303022867,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170079083974997,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -6 ,0 ,-2.5687774133834757606,1.66976518811218110904,0.00000000000000000000,1.00000000000000000000,-0.0020613864969566352,-0.0040894572721904371,0.99998951345748066099,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171864144715073,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -7 ,0 ,-2.5872310621970773247,1.63360457919263279968,0.00000000000000000000,1.00000000000000000000,-0.0028436484824048962,-0.0041202768215153340,0.99998746841259111839,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173800905497046,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -8 ,0 ,-2.6056040470449244317,1.59739322483633783278,0.00000000000000000000,1.00000000000000000000,-0.0036258697177221944,-0.0041548215374452111,0.99998479514779736732,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8175889481044578,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -9 ,0 ,-2.6238964144361740515,1.56113105509286476113,0.00000000000000000000,1.00000000000000000000,-0.0044080229724812666,-0.0041930918337208860,0.99998149348592879626,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8178129988318687,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -10 ,0 ,-2.6421082102447828177,1.52481799876483181677,0.00000000000000000000,1.00000000000000000000,-0.0051900810062234367,-0.0042350878658758105,0.99997756329325571122,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8180522546426800,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -11 ,0 ,-2.6602394796950594724,1.48845398342343360198,0.00000000000000000000,1.00000000000000000000,-0.0059720165716059189,-0.0042808095310580334,0.99997300447953474389,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8183067276568181,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -12 ,0 ,-2.6782902673469255461,1.45203893540246253834,0.00000000000000000000,1.00000000000000000000,-0.0067538024175520395,-0.0043302564678921618,0.99996781699804071497,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8185764302088500,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -13 ,0 ,-2.6962606170819611861,1.41557277981587570359,0.00000000000000000000,1.00000000000000000000,-0.0075354112924045195,-0.0043834280563973242,0.99996200084559672127,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8188613748479838,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -14 ,0 ,-2.4209926893512130341,1.86553106896933784675,0.00000000000000000000,1.00000000000000000000,0.00269455834696663001,-0.0032453276343184403,0.99999110356235720864,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165080796698021,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -15 ,0 ,-2.4398747945976229090,1.82976189824679780215,0.00000000000000000000,1.00000000000000000000,0.00190904146954132747,-0.0032535234204798513,0.99999288504769878738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165831371552485,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -16 ,0 ,-2.4586759368819404159,1.79394250151897760581,0.00000000000000000000,1.00000000000000000000,0.00112339953909263725,-0.0032654624197140801,0.99999403734655412101,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166732900190254,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -17 ,0 ,-2.4773961671432238595,1.75807281642715551583,0.00000000000000000000,1.00000000000000000000,0.00033765991131031434,-0.0032811466231821295,0.99999456001651410019,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167785486421053,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -18 ,0 ,-2.4960355357731871528,1.72215277931925125898,0.00000000000000000000,1.00000000000000000000,-0.0004481500288014714,-0.0033005777628465006,0.99999445265860520404,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168989235946355,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -19 ,0 ,-2.5145940926011767224,1.68618232526255629188,0.00000000000000000000,1.00000000000000000000,-0.0012340028700782586,-0.0033237573110208198,0.99999371491737587547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170344256868702,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -20 ,0 ,-2.5330718868789285913,1.65016138804005230156,0.00000000000000000000,1.00000000000000000000,-0.0020198711783571540,-0.0033506864799580722,0.99999234648097978794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171850659346091,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -21 ,0 ,-2.5514689672657717700,1.61408990016260722732,0.00000000000000000000,1.00000000000000000000,-0.0028057274996467103,-0.0033813662214919439,0.99999034708124767689,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173508555846638,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -22 ,0 ,-2.5697853818134226422,1.57796779287291588644,0.00000000000000000000,1.00000000000000000000,-0.0035915443633026370,-0.0034157972267118150,0.99998771649375395309,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8175318061003054,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -23 ,0 ,-2.5880211779513460079,1.54179499614881754254,0.00000000000000000000,1.00000000000000000000,-0.0043772942852100529,-0.0034539799256957039,0.99998445453787621062,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8177279291521699,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -24 ,0 ,-2.6061764024718772070,1.50557143871475718199,0.00000000000000000000,1.00000000000000000000,-0.0051629497709703830,-0.0034959144872778666,0.99998056107684418769,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8179392366346291,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -25 ,0 ,-2.6242511015153913156,1.46929704804550942398,0.00000000000000000000,1.00000000000000000000,-0.0059484833190925857,-0.0035416008188665754,0.99997603601778506376,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8181657406512385,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -26 ,0 ,-2.6422453205559643940,1.43297175037291824040,0.00000000000000000000,1.00000000000000000000,-0.0067338674241880112,-0.0035910385663095126,0.99997087931175721031,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8184074535329273,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -27 ,0 ,-2.6601591043865115970,1.39659547069523881646,0.00000000000000000000,1.00000000000000000000,-0.0075190745801680348,-0.0036442271137978165,0.99996509095377983378,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8186643878052564,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -28 ,0 ,-2.3857154352895406645,1.84541499925858487607,0.00000000000000000000,1.00000000000000000000,0.00275802610325710361,-0.0025044697304674643,0.99999306043761293505,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166609093350416,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -29 ,0 ,-2.4045409259302092941,1.80973415733007692018,0.00000000000000000000,1.00000000000000000000,0.00196890308187101445,-0.0025123661107233226,0.99999490570561422320,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167082093896169,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -30 ,0 ,-2.4232854459495078991,1.77400321632360324919,0.00000000000000000000,1.00000000000000000000,0.00117965216018115458,-0.0025240318816503876,0.99999611883438921378,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167705843279691,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -31 ,0 ,-2.4419490472241891509,1.73822211388271763432,0.00000000000000000000,1.00000000000000000000,0.00039030094804181258,-0.0025394690693882927,0.99999669937556079357,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168480444819579,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -32 ,0 ,-2.4605317810827660451,1.70239078634852902816,0.00000000000000000000,1.00000000000000000000,-0.0003991229148532980,-0.0025586794378419657,0.99999664692459533377,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169406004126358,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -33 ,0 ,-2.4790336982903320439,1.66650916876601873362,0.00000000000000000000,1.00000000000000000000,-0.0011885917621694058,-0.0025816644882234807,0.99999596112089050858,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170482628975150,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -34 ,0 ,-2.4974548490332457717,1.63057719488594821122,0.00000000000000000000,1.00000000000000000000,-0.0019780779041370950,-0.0026084254586347501,0.99999464164786000530,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171710429433005,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -35 ,0 ,-2.5157952829039165187,1.59459479717263929998,0.00000000000000000000,1.00000000000000000000,-0.0027675536307662537,-0.0026389633236952735,0.99999268823300746511,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173089517567859,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -36 ,0 ,-2.5340550488857140898,1.55856190681363648842,0.00000000000000000000,1.00000000000000000000,-0.0035569912150668447,-0.0026732787942173427,0.99999010064799376262,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174620007885096,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -37 ,0 ,-2.5522341953378786527,1.52247845371644796585,0.00000000000000000000,1.00000000000000000000,-0.0043463629162755574,-0.0027113723169272367,0.99998687870869562566,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8176302016963745,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -38 ,0 ,-2.5703327699806490791,1.48634436652852053306,0.00000000000000000000,1.00000000000000000000,-0.0051356409830878579,-0.0027532440742318552,0.99998302227525892593,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8178135663529246,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -39 ,0 ,-2.5883508198803171218,1.45015957263079586780,0.00000000000000000000,1.00000000000000000000,-0.0059247976568940798,-0.0027988939840323206,0.99997853125214219982,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8180121068544394,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -40 ,0 ,-2.6062883914344197044,1.41392399815068348090,0.00000000000000000000,1.00000000000000000000,-0.0067138051750194188,-0.0028483216995798120,0.99997340558815261957,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8182258355082012,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -41 ,0 ,-2.6241455303570635493,1.37763756797079883753,0.00000000000000000000,1.00000000000000000000,-0.0075026357739665771,-0.0029015266093853071,0.99996764527647530318,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8184547648324951,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -42 ,0 ,-2.3505271485351810767,1.82531870675435525797,0.00000000000000000000,1.00000000000000000000,0.00282192572665979643,-0.0017601152230987226,0.99999446934950342313,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168009935889131,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -43 ,0 ,-2.3692959470519179276,1.78972615805503498798,0.00000000000000000000,1.00000000000000000000,0.00202917146144285633,-0.0017677086241239157,0.99999637882814373934,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168205419697187,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -44 ,0 ,-2.3879837670510837277,1.75408363794689448056,0.00000000000000000000,1.00000000000000000000,0.00123628640759781884,-0.0017790978381394841,0.99999765320064670781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168551446997298,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -45 ,0 ,-2.4065906613567205063,1.71839108407877994011,0.00000000000000000000,1.00000000000000000000,0.00044329843209850054,-0.0017942849268409075,0.99999829201259204936,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169048120962543,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -46 ,0 ,-2.4251166822438583459,1.68264843278474374166,0.00000000000000000000,1.00000000000000000000,-0.0003497645677075128,-0.0018132716866123407,0.99999829485381519500,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169695546730508,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -47 ,0 ,-2.4435618814230455342,1.64685561908928645991,0.00000000000000000000,1.00000000000000000000,-0.0011428746673416653,-0.0018360596480587805,0.99999766135849710302,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170493832039937,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -48 ,0 ,-2.4619263100248378606,1.61101257671176689711,0.00000000000000000000,1.00000000000000000000,-0.0019360039184460999,-0.0018626500755780624,0.99999639120525019020,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171443086521321,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -49 ,0 ,-2.4802100185845685764,1.57511923807386144957,0.00000000000000000000,1.00000000000000000000,-0.0027291243520429311,-0.0018930439669859549,0.99999448411719271678,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172543422242597,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -50 ,0 ,-2.4984130570268856530,1.53917553430835396532,0.00000000000000000000,1.00000000000000000000,-0.0035222079818001527,-0.0019272420531792598,0.99999193986201773132,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173794953418109,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -51 ,0 ,-2.5165354746506038985,1.50318139525497596054,0.00000000000000000000,1.00000000000000000000,-0.0043152268073039972,-0.0019652447978555595,0.99998875825205479905,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8175197796426800,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -52 ,0 ,-2.5345773201136170271,1.46713674947979066942,0.00000000000000000000,1.00000000000000000000,-0.0051081528173364263,-0.0020070523972707419,0.99998493914432007301,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8176752069830399,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -53 ,0 ,-2.5525386414176969296,1.43104152427426156712,0.00000000000000000000,1.00000000000000000000,-0.0059009579931570323,-0.0020526647800490956,0.99998048244056447764,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8178457894464372,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -54 ,0 ,-2.5704194858937103873,1.39489564566301682546,0.00000000000000000000,1.00000000000000000000,-0.0066936143117889129,-0.0021020816070387790,0.99997538808730801473,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8180315393201453,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -55 ,0 ,-2.5882199001866839083,1.35869903841179828773,0.00000000000000000000,1.00000000000000000000,-0.0074860937493071225,-0.0021553022712159437,0.99996965607587151581,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8182324691151734,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -56 ,0 ,-2.3154278435896422649,1.80524216018771088698,0.00000000000000000000,1.00000000000000000000,0.00288626140402676407,-0.0010122399967542920,0.99999532242170863227,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169282952749199,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -57 ,0 ,-2.3341398717680337249,1.76973786888770101555,0.00000000000000000000,1.00000000000000000000,0.00208985056348275815,-0.0010195267990816621,0.99999729654121005673,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169200977281434,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -58 ,0 ,-2.3527709132923613211,1.73418373460004726638,0.00000000000000000000,1.00000000000000000000,0.00129330600431019774,-0.0010306360842830548,0.99999863257348586831,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169269339832680,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -59 ,0 ,-2.3713210219438143333,1.69857969497698113592,0.00000000000000000000,1.00000000000000000000,0.00049665585359806455,-0.0010455699501996369,0.99999933005799690466,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169488143084890,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -60 ,0 ,-2.3897902509537449766,1.66292568634960558071,0.00000000000000000000,1.00000000000000000000,-0.0003000717306462340,-0.0010643302262423801,0.99999938857887626930,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169857492193841,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -61 ,0 ,-2.4081786529878486113,1.62722164372293676137,0.00000000000000000000,1.00000000000000000000,-0.0010968485627853379,-0.0010869184729072221,0.99999880776502125812,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170377494334388,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -62 ,0 ,-2.4264862801309279305,1.59146750078967569308,0.00000000000000000000,1.00000000000000000000,-0.0018936464328497221,-0.0011133359813518782,0.99999758729017951264,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171048259173403,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -63 ,0 ,-2.4447131838708404671,1.55566318992716245972,0.00000000000000000000,1.00000000000000000000,-0.0026904371098424063,-0.0011435837729976547,0.99999572687302618057,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171869898396835,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -64 ,0 ,-2.4628594150834852705,1.51980864221174272188,0.00000000000000000000,1.00000000000000000000,-0.0034871923450514432,-0.0011776625992008535,0.99999322627723397083,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172842526073509,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -65 ,0 ,-2.4809250240170643841,1.48390378742067108319,0.00000000000000000000,1.00000000000000000000,-0.0042838838753682982,-0.0012155729409532578,0.99999008531153354972,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173966258364089,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -66 ,0 ,-2.4989100602769322989,1.44794855403921229886,0.00000000000000000000,1.00000000000000000000,-0.0050804834266117296,-0.0012573150086438598,0.99998630382976816388,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8175241213721164,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -67 ,0 ,-2.5168145728103592517,1.41194286926964163164,0.00000000000000000000,1.00000000000000000000,-0.0058769627168562795,-0.0013028887418599587,0.99998188173093982555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8176667512743733,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -68 ,0 ,-2.5346386098913327167,1.37588665903394136158,0.00000000000000000000,1.00000000000000000000,-0.0066732934597645166,-0.0013522938092394912,0.99997681895924661610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8178245278231770,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -69 ,0 ,-2.5523822191055165475,1.33977984798315574721,0.00000000000000000000,1.00000000000000000000,-0.0074694473679222600,-0.0014055296083698969,0.99997111550411199587,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8179974635149847,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -70 ,0 ,-2.2804175351064364107,1.78518532750631009342,0.00000000000000000000,1.00000000000000000000,0.00295103737131079818,-0.0002608197202881006,0.99999561166612471740,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170427768964145,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -71 ,0 ,-2.2990727140272855244,1.74976925750976741724,0.00000000000000000000,1.00000000000000000000,0.00215094438966584398,-0.0002677962576299565,0.99999765085893921323,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170068391827953,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -72 ,0 ,-2.3176468979140412152,1.71430347370221092262,0.00000000000000000000,1.00000000000000000000,0.00135071471707213087,-0.0002786221981803408,0.99999904896925984054,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169859146819362,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -73 ,0 ,-2.3361401415148854709,1.67878791374879465791,0.00000000000000000000,1.00000000000000000000,0.00055037674377164235,-0.0002932996765251059,0.99999980553035094921,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169800136529374,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -74 ,0 ,-2.3545524990273278831,1.64322251397254648352,0.00000000000000000000,1.00000000000000000000,-0.0002500411085204996,-0.0003118305556543035,0.99999992012057126178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169891465640830,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -75 ,0 ,-2.3728840240823911855,1.60760720936630163713,0.00000000000000000000,1.00000000000000000000,-0.0010505103899511823,-0.0003342164264728748,0.99999939236346591098,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170133241219446,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -76 ,0 ,-2.3911347697288376501,1.57194193359063860704,0.00000000000000000000,1.00000000000000000000,-0.0018510026258732571,-0.0003604586073593811,0.99999822192785503549,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170525572604674,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -77 ,0 ,-2.4093047884172253958,1.53622661898450640904,0.00000000000000000000,1.00000000000000000000,-0.0026514893201970905,-0.0003905581437680772,0.99999640852791138456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171068571318755,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -78 ,0 ,-2.4273941319845224739,1.50046119657151644233,0.00000000000000000000,1.00000000000000000000,-0.0034519419587500919,-0.0004245158078869465,0.99999395192323148329,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171762351175857,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -79 ,0 ,-2.4454028516384260782,1.46464559606285771309,0.00000000000000000000,1.00000000000000000000,-0.0042523320126419041,-0.0004623320983409063,0.99999085191889902635,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172607028172933,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -80 ,0 ,-2.4633309979416968538,1.42877974586891354213,0.00000000000000000000,1.00000000000000000000,-0.0050526309416354170,-0.0005040072399354793,0.99998710836553772463,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173602720580674,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -81 ,0 ,-2.4811786207970811801,1.39286357309776720470,0.00000000000000000000,1.00000000000000000000,-0.0058528101975227880,-0.0005495411834655760,0.99998272115936082116,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174749548852560,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -82 ,0 ,-2.4989457694316352664,1.35689700357339493308,0.00000000000000000000,1.00000000000000000000,-0.0066528412275045937,-0.0005989336055548912,0.99997769024220617417,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8176047635624854,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -83 ,0 ,-2.5166324923817788850,1.32087996183148348450,0.00000000000000000000,1.00000000000000000000,-0.0074526954775728524,-0.0006521839085580088,0.99997201560157089605,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8177497105734801,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -84 ,0 ,-2.2454962378935370281,1.76514817586539618510,0.00000000000000000000,1.00000000000000000000,0.00301625791424840012,0.00049417015546310489,0.99999532898111709311,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171444006493402,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -85 ,0 ,-2.2640944879242357323,1.72982029080479238203,0.00000000000000000000,1.00000000000000000000,0.00221245698876286998,0.00048750759690458465,0.99999743368191496006,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170807285223418,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -86 ,0 ,-2.2826117342938272436,1.69444282187839534437,0.00000000000000000000,1.00000000000000000000,0.00140851635703429563,0.00047696846142804207,0.99999889429076804781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170320490044105,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -87 ,0 ,-2.3010480327275200096,1.65901570676203835574,0.00000000000000000000,1.00000000000000000000,0.00060446467553795454,0.00046255057709222914,0.99999971033466794612,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169983723164477,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -88 ,0 ,-2.3194034383991222192,1.62353888177794924985,0.00000000000000000000,1.00000000000000000000,-0.0001996693672130501,0.00044425204676083518,0.99999988138612450061,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169797089085477,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -89 ,0 ,-2.3376780059149298018,1.58801228190419463359,0.00000000000000000000,1.00000000000000000000,-0.0010038570540496798,0.00042207124860248787,0.99999940706326229111,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169760694654542,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -90 ,0 ,-2.3558717892977685259,1.55243584077546303845,0.00000000000000000000,1.00000000000000000000,-0.0018080696425382611,0.00039600683654179467,0.99999828702990933848,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169874648829136,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -91 ,0 ,-2.3739848419710503080,1.51680949069060244660,0.00000000000000000000,1.00000000000000000000,-0.0026122783683798682,0.00036605774066121788,0.99999652099567659657,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170139063004171,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -92 ,0 ,-2.3920172167429956111,1.48113316262132066469,0.00000000000000000000,1.00000000000000000000,-0.0034164544488170991,0.00033222316755256896,0.99999410871602945061,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170554050739156,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -93 ,0 ,-2.4099689657907532591,1.44540678621666063286,0.00000000000000000000,1.00000000000000000000,-0.0042205690860471932,0.00029450260062445406,0.99999104999235288726,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171119727849145,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -94 ,0 ,-2.4278401406447933652,1.40963028980818294577,0.00000000000000000000,1.00000000000000000000,-0.0050245934706411501,0.00025289580035587098,0.99998734467200589559,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171836212495691,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -95 ,0 ,-2.4456307921732967081,1.37380360041724092212,0.00000000000000000000,1.00000000000000000000,-0.0058284987849673702,0.00020740280449998215,0.99998299264837031685,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172703624841233,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -96 ,0 ,-2.4633409705666915456,1.33792664376618875010,0.00000000000000000000,1.00000000000000000000,-0.0066322562066194103,0.00015802392824347885,0.99997799386088903617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173722087449277,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -97 ,0 ,-2.4809707253221611189,1.30199934427705099615,0.00000000000000000000,1.00000000000000000000,-0.0074358369118468284,0.00010475976431039232,0.99997234829509784592,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174891725084307,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -98 ,0 ,-2.2106639669156424865,1.74513067161795487614,0.00000000000000000000,1.00000000000000000000,0.00308192736905372804,0.00125275440004510773,0.99999446614974096814,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172331283985840,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -99 ,0 ,-2.2292052077014075095,1.70989093485028220698,0.00000000000000000000,1.00000000000000000000,0.00227439245729781991,0.00124640958227731444,0.99999663679539618765,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171417276098509,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -100 ,0 ,-2.2476654359486341050,1.67460174493786162486,0.00000000000000000000,1.00000000000000000000,0.00146671478036478671,0.00123616075754069709,0.99999816032547517163,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170652988010260,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -101 ,0 ,-2.2660447083697330405,1.63926303957162344815,0.00000000000000000000,1.00000000000000000000,0.00065892326408638433,0.00122200571591807305,0.99999903626061670269,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170038521639071,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -102 ,0 ,-2.2843430811249487710,1.60387475507321664025,0.00000000000000000000,1.00000000000000000000,-0.0001489531330921856,0.00120394252555141938,0.99999926416740914092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169573981231224,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -103 ,0 ,-2.3025606098060502624,1.56843682640558301777,0.00000000000000000000,1.00000000000000000000,-0.0009568854235424001,0.00118196953315367675,0.99999884365848579204,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169259473233978,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -104 ,0 ,-2.3206973494202824959,1.53294918718107875399,0.00000000000000000000,1.00000000000000000000,-0.0017648445938916882,0.00115608536446508425,0.99999777439261805511,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169095106532040,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -105 ,0 ,-2.3387533543740888219,1.49741176966112354840,0.00000000000000000000,1.00000000000000000000,-0.0025728016084709350,0.00112628892466718074,0.99999605607479358226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169080992156523,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -106 ,0 ,-2.3567286784570660174,1.46182450476703418296,0.00000000000000000000,1.00000000000000000000,-0.0033807274127697437,0.00109257939874372531,0.99999368845629121871,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169217243503226,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -107 ,0 ,-2.3746233748262484120,1.42618732208324439092,0.00000000000000000000,1.00000000000000000000,-0.0041885929368984222,0.00105495625178692064,0.99999067133474595081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169503976205305,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -108 ,0 ,-2.3924374959899750159,1.39050014986692449525,0.00000000000000000000,1.00000000000000000000,-0.0049963690990553009,0.00101341922926299183,0.99998700455420508337,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169941308206034,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -109 ,0 ,-2.4101710937922362631,1.35476291505305046491,0.00000000000000000000,1.00000000000000000000,-0.0058040268089997078,0.00096796835721946162,0.99998268800517742249,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170529359576903,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -110 ,0 ,-2.4278242193969417073,1.31897554325967236721,0.00000000000000000000,1.00000000000000000000,-0.0066115369715283225,0.00091860394244711366,0.99997772162467257750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171268252590380,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -111 ,0 ,-2.4453969232724457327,1.28313795880162229146,0.00000000000000000000,1.00000000000000000000,-0.0074188704899551313,0.00086532657258927029,0.99997210539623360148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172158111956377,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -112 ,0 ,-2.1759207372965811977,1.72513278030467476220,0.00000000000000000000,1.00000000000000000000,0.00314805012312363791,0.00201495800577536745,0.99999301483793234801,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173089216652442,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -113 ,0 ,-2.1944048877516384443,1.68998115490939837535,0.00000000000000000000,1.00000000000000000000,0.00233675494021542062,0.00200893473972634526,0.99999525186750815031,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8171897979718778,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -114 ,0 ,-2.2128080165367358667,1.65478020787695601079,0.00000000000000000000,1.00000000000000000000,0.00152531388887898488,0.00199897977731118992,0.99999683874369860170,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170856256092520,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -115 ,0 ,-2.2311301813617712141,1.61952987691190442021,0.00000000000000000000,1.00000000000000000000,0.00071375616746991550,0.00198509087000456720,0.99999777498071018566,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169964147273276,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -116 ,0 ,-2.2493714393838666332,1.58423009833855465977,0.00000000000000000000,1.00000000000000000000,-0.0000978889924568955,0.00196726605063828399,0.99999806013913428159,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169221757289051,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -117 ,0 ,-2.2675318471906389383,1.54888080711105646791,0.00000000000000000000,1.00000000000000000000,-0.0009095923296254710,0.00194550363392906279,0.99999769382604297707,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168629192314256,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -118 ,0 ,-2.2856114607839779218,1.51348193681630815987,0.00000000000000000000,1.00000000000000000000,-0.0017213245565271435,0.00191980221694237657,0.99999667569508388087,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168186560997128,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -119 ,0 ,-2.3036103355637411738,1.47803341968017054597,0.00000000000000000000,1.00000000000000000000,-0.0025330563629173503,0.00189016067951307850,0.99999500544656128031,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167893974095932,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -120 ,0 ,-2.3215285263114697755,1.44253518657512258549,0.00000000000000000000,1.00000000000000000000,-0.0033447584193198758,0.00185657818461334479,0.99999268282750986003,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167751544824568,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -121 ,0 ,-2.3393660871743260365,1.40698716702472093054,0.00000000000000000000,1.00000000000000000000,-0.0041564013805382230,0.00181905417866952043,0.99998970763176298071,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167759388616104,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -122 ,0 ,-2.3571230716489730561,1.37138928921206648681,0.00000000000000000000,1.00000000000000000000,-0.0049679558891727359,0.00177758839182863732,0.99998607970000885636,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167917623140965,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -123 ,0 ,-2.3747995325656350296,1.33574147998406100867,0.00000000000000000000,1.00000000000000000000,-0.0057793925791427887,0.00173218083817438845,0.99998179891984040335,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168226368343312,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -124 ,0 ,-2.3923955220721411230,1.30004366485951483589,0.00000000000000000000,1.00000000000000000000,-0.0065906820792132224,0.00168283181589332715,0.99997686522579631862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168685746459232,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -125 ,0 ,-2.4099110916183126285,1.26429576803957033348,0.00000000000000000000,1.00000000000000000000,-0.0074017950165239584,0.00162954190738309355,0.99997127859939338723,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169295881871221,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -126 ,0 ,-2.1412665643218860012,1.70515446664061953718,0.00000000000000000000,1.00000000000000000000,0.00321463061575414993,0.00278080619016320097,0.99999096659266739628,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8173717416284489,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -127 ,0 ,-2.1596935426203200947,1.67009091541624155041,0.00000000000000000000,1.00000000000000000000,0.00239954863156012282,0.00277510833640793892,0.99999327044739960701,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172249007966456,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -128 ,0 ,-2.1780394898597990049,1.63497817485578300633,0.00000000000000000000,1.00000000000000000000,0.00158431763068086475,0.00276545083449438204,0.99999492109676624274,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170929906045785,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -129 ,0 ,-2.1963044647583478408,1.59981618268103908953,0.00000000000000000000,1.00000000000000000000,0.00076896708720718760,0.00275183139664025595,0.99999591804846055254,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169760211894754,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -130 ,0 ,-2.2144885254802022522,1.56460487522002544835,0.00000000000000000000,1.00000000000000000000,-0.0000464734909731591,0.00273424801977603269,0.99999626085699999666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168740029159380,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -131 ,0 ,-2.2325917296193877881,1.52934418741926392293,0.00000000000000000000,1.00000000000000000000,-0.0008619745657040396,0.00271269898607014560,0.99999594912382483435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167869463795796,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -132 ,0 ,-2.2506141341830185886,1.49403405284425394583,0.00000000000000000000,1.00000000000000000000,-0.0016775065720985768,0.00268718286341086730,0.99999498249739215971,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167148624124820,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -133 ,0 ,-2.2685557955748323344,1.45867440368538292538,0.00000000000000000000,1.00000000000000000000,-0.0024930399220858675,0.00265769850583133515,0.99999336067325916843,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166577620795578,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -134 ,0 ,-2.2864167695788806256,1.42326517076847003373,0.00000000000000000000,1.00000000000000000000,-0.0033085450079655379,0.00262424505388528846,0.99999108339416076240,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166156566621793,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -135 ,0 ,-2.3041971113429622342,1.38780628355598012468,0.00000000000000000000,1.00000000000000000000,-0.0041239922059689605,0.00258682193497388997,0.99998815045007516388,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165885576927394,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -136 ,0 ,-2.3218968753626278989,1.35229767015730240053,0.00000000000000000000,1.00000000000000000000,-0.0049393518798270183,0.00254542886361437594,0.99998456167828297935,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165764769219094,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -137 ,0 ,-2.3395161154648080881,1.31673925733487950928,0.00000000000000000000,1.00000000000000000000,-0.0057545943843426540,0.00250006584166491538,0.99998031696341860286,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165794263204588,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -138 ,0 ,-2.3570548847919474688,1.28113097050905100360,0.00000000000000000000,1.00000000000000000000,-0.0065696900689678284,0.00245073315848879985,0.99997541623751118322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165974180974444,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -139 ,0 ,-2.3745132357858711458,1.24547273376800848865,0.00000000000000000000,1.00000000000000000000,-0.0073846092813839329,0.00239743139107486888,0.99996985948001804178,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166304646838398,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -140 ,0 ,-2.1067014634411278528,1.68519569450859529879,0.00000000000000000000,1.00000000000000000000,0.00328167333886849720,0.00355032439836240566,0.99998831284008693476,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174215491344511,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -141 ,0 ,-2.1250711870077476639,1.65022017996860670407,0.00000000000000000000,1.00000000000000000000,0.00246277777516560681,0.00354495586785890087,0.99999068396336820985,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172469969103985,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -142 ,0 ,-2.1433598698653759662,1.61519560919658622388,0.00000000000000000000,1.00000000000000000000,0.00164373000081322723,0.00353559947191487257,0.99999239881514045968,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170873546296206,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -143 ,0 ,-2.1615675717505289377,1.58012191993295059155,0.00000000000000000000,1.00000000000000000000,0.00082455976889487625,0.00352225288284049994,0.99999345689650231960,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169426323875086,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -144 ,0 ,-2.1796943518453351096,1.54499904851539460182,0.00000000000000000000,1.00000000000000000000,0.00000529686689920441,0.00350491406105292576,0.99999385775582039226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168128405268362,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -145 ,0 ,-2.1977402687608229570,1.50982692987969313591,0.00000000000000000000,1.00000000000000000000,-0.0008140288868588135,0.00348358125561409534,0.99999360098882983383,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166979896050179,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -146 ,0 ,-2.2157053805199442564,1.47460549757493297740,0.00000000000000000000,1.00000000000000000000,-0.0016333876468259285,0.00345825300472327960,0.99999268623872961114,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165980904323077,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -147 ,0 ,-2.2335897445410717310,1.43933468375742412703,0.00000000000000000000,1.00000000000000000000,-0.0024527495438081249,0.00342892813614778003,0.99999111319626865501,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165131540554284,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -148 ,0 ,-2.2513934176212768711,1.40401441920602509938,0.00000000000000000000,1.00000000000000000000,-0.0032720846885760301,0.00339560576761043951,0.99998888159982135537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8164431917302863,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -149 ,0 ,-2.2691164559198755412,1.36864463332695085462,0.00000000000000000000,1.00000000000000000000,-0.0040913631754773234,0.00335828530711860520,0.99998599123545850453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163882149674464,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -150 ,0 ,-2.2867589149418598992,1.33322525415507753265,0.00000000000000000000,1.00000000000000000000,-0.0049105550860553690,0.00331696645324462951,0.99998244193700469573,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163482354921143,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -151 ,0 ,-2.3043208495217433195,1.29775620836706795380,0.00000000000000000000,1.00000000000000000000,-0.0057296304926735021,0.00327164919534897891,0.99997823358609161381,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163232652605074,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -152 ,0 ,-2.3218023138070469357,1.26223742128611715607,0.00000000000000000000,1.00000000000000000000,-0.0065485594621430207,0.00322233381375711764,0.99997336611219977964,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163133164707687,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -153 ,0 ,-2.3392033612423586141,1.22666881689095741414,0.00000000000000000000,1.00000000000000000000,-0.0073673120593552585,0.00316902087987760419,0.99996783949269252289,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163184015356819,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -154 ,0 ,-2.0722254502706474177,1.66525642694883457828,0.00000000000000000000,1.00000000000000000000,0.00334918283775689513,0.00432353830564974860,0.99998504488359185593,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174583046657062,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -155 ,0 ,-2.0905378357717121495,1.63036891131571803903,0.00000000000000000000,1.00000000000000000000,0.00252644666535522524,0.00431850306048734474,0.99998748372095314085,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172560468119627,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -156 ,0 ,-2.1087691706489040122,1.59543247336805782410,0.00000000000000000000,1.00000000000000000000,0.00170355504191968824,0.00430945146397916124,0.99998926320651027044,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170686781704716,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -157 ,0 ,-2.1269195156679829850,1.56044705086883905842,0.00000000000000000000,1.00000000000000000000,0.00088053800282957483,0.00429638114786037774,0.99999038283468411059,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168962088129774,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -158 ,0 ,-2.1449889310397978192,1.52541258016180658607,0.00000000000000000000,1.00000000000000000000,0.00005742561848879642,0.00427929003541486531,0.99999084214761269073,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167386490385979,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -159 ,0 ,-2.1629774764029945366,1.49032899618132574914,0.00000000000000000000,1.00000000000000000000,-0.0007657520093034267,0.00425817634203115146,0.99999064073525256723,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165960093956527,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -160 ,0 ,-2.1808852108072884767,1.45519623245511819931,0.00000000000000000000,1.00000000000000000000,-0.0015889647509927898,0.00423303857569540774,0.99998977823547630094,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8164683006525592,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -161 ,0 ,-2.1987121926964183771,1.42001422111020225713,0.00000000000000000000,1.00000000000000000000,-0.0024121824529184307,0.00420387553743881061,0.99998825433415949870,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163555338342121,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -162 ,0 ,-2.2164584798914139796,1.38478289288132572210,0.00000000000000000000,1.00000000000000000000,-0.0032353749409702588,0.00417068632172861060,0.99998606876525908404,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8162577201765088,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -163 ,0 ,-2.2341241295737988004,1.34950217711506970097,0.00000000000000000000,1.00000000000000000000,-0.0040585120242531830,0.00413347031680729847,0.99998322131088246411,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8161748711663676,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -164 ,0 ,-2.2517091982689705353,1.31417200177627435664,0.00000000000000000000,1.00000000000000000000,-0.0048815634987580446,0.00409222720497699407,0.99997971180134992419,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8161069985089852,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -165 ,0 ,-2.2692137418297400053,1.27879229345942313500,0.00000000000000000000,1.00000000000000000000,-0.0057044991510376771,0.00404695696282978117,0.99997554011524569794,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8160541141514841,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -166 ,0 ,-2.2866378154196556060,1.24336297738757917130,0.00000000000000000000,1.00000000000000000000,-0.0065272887618875044,0.00399765986142681939,0.99997070617946193227,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8160162302556273,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -167 ,0 ,-2.3039814734969130682,1.20788397743084541247,0.00000000000000000000,1.00000000000000000000,-0.0073499021100298673,0.00394433646642115311,0.99996520996923332624,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8159933592323795,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -168 ,0 ,-2.0378385405958572285,1.64533662613968489907,0.00000000000000000000,1.00000000000000000000,0.00341716371182855830,0.00510047381994418579,0.99998115390190167595,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174819683426903,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -169 ,0 ,-2.0560935039297141280,1.61053707134771117992,0.00000000000000000000,1.00000000000000000000,0.00259055964765466046,0.00509577587410237758,0.99998366090099333192,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172520106163574,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -170 ,0 ,-2.0742674064561446023,1.57568872897907485963,0.00000000000000000000,1.00000000000000000000,0.00176379684491676218,0.00508703281921035841,0.99998550545384734533,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8170369213530648,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -171 ,0 ,-2.0923603099812217998,1.54079153682025382643,0.00000000000000000000,1.00000000000000000000,0.00093690562463967215,0.00507424224574363775,0.99998668704812365692,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8168367105827201,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -172 ,0 ,-2.1103722757552039190,1.50584543122973535389,0.00000000000000000000,1.00000000000000000000,0.00010991634350450684,0.00505740203922771820,0.99998720521965245300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166513885844324,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -173 ,0 ,-2.1283033644554940622,1.47085034713754114754,0.00000000000000000000,1.00000000000000000000,-0.0007171406098333234,0.00503651038079214186,0.99998705955253730515,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8164809658719605,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -174 ,0 ,-2.1461536361693824837,1.43580621805440200589,0.00000000000000000000,1.00000000000000000000,-0.0015442348184358909,0.00501156574768207418,0.99998624967925564543,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163254531937127,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -175 ,0 ,-2.1639231503769891240,1.40071297607947164998,0.00000000000000000000,1.00000000000000000000,-0.0023713358407841740,0.00498256691371075279,0.99998477528074447562,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8161848615400231,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -176 ,0 ,-2.1816119659342243508,1.36557055190297815805,0.00000000000000000000,1.00000000000000000000,-0.0031984132144878244,0.00494951294966036042,0.99998263608648263467,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8160592021304182,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -177 ,0 ,-2.1992201410558469554,1.33037887481608563255,0.00000000000000000000,1.00000000000000000000,-0.0040254364600021625,0.00491240322362769717,0.99997983187456085385,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8159484864263504,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -178 ,0 ,-2.2167477332986473825,1.29513787271242453158,0.00000000000000000000,1.00000000000000000000,-0.0048523750843520513,0.00487123740131359742,0.99997636247174404022,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8158527261093695,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -179 ,0 ,-2.2341947995447068997,1.25984747210444081311,0.00000000000000000000,1.00000000000000000000,-0.0056791985848609416,0.00482601544626290977,0.99997222775352423429,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8157719331138650,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -180 ,0 ,-2.2515613959846625391,1.22450759812080756105,0.00000000000000000000,1.00000000000000000000,-0.0065058764528848041,0.00477673762004365148,0.99996742764416535198,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8157061195852293,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -181 ,0 ,-2.2688475781012589216,1.18911817451889811891,0.00000000000000000000,1.00000000000000000000,-0.0073323781775494435,0.00472340448237570410,0.99996196211673871179,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8156552979162370,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -182 ,0 ,-2.0035407503742526102,1.62543625339962982678,0.00000000000000000000,1.00000000000000000000,0.00348562061537536181,0.00588115708434078839,0.99997663094708133524,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8174924999366339,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -183 ,0 ,-2.0217382066615501301,1.59072462108100465272,0.00000000000000000000,1.00000000000000000000,0.00265512111951540048,0.00587680050446925082,0.99997920655765215602,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8172348480911750,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -184 ,0 ,-2.0398545916855792548,1.55596433675856227196,0.00000000000000000000,1.00000000000000000000,0.00182445954967705849,0.00586836978281458660,0.99998111661343103140,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8169920439358975,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -185 ,0 ,-2.0578899683035793977,1.52115533824336957025,0.00000000000000000000,1.00000000000000000000,0.00099366651592838251,0.00585586246790620670,0.99998236059523182284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8167640974588721,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -186 ,0 ,-2.0758443988164114735,1.48629756190684836347,0.00000000000000000000,1.00000000000000000000,0.00016277266463689621,0.00583927640686449003,0.99998293803249671540,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165510189246560,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -187 ,0 ,-2.0937179449512099971,1.45139094267892998502,0.00000000000000000000,1.00000000000000000000,-0.0006681913252651840,0.00581860974597213018,0.99998284850340146689,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163528188033524,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -188 ,0 ,-2.1115106678440267451,1.41643541405569006741,0.00000000000000000000,1.00000000000000000000,-0.0014991947460259254,0.00579386093119039873,0.99998209163495710427,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8161695078179036,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -189 ,0 ,-2.1292226280223713885,1.38143090810800361900,0.00000000000000000000,1.00000000000000000000,-0.0023302068648282949,0.00576502870862664103,0.99998066710309774229,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8160010969331779,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -190 ,0 ,-2.1468538853882499495,1.34637735548778669780,0.00000000000000000000,1.00000000000000000000,-0.0031611969275534765,0.00573211212493750840,0.99997857463276307310,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8158475973541499,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -191 ,0 ,-2.1644044992007649419,1.31127468542554503905,0.00000000000000000000,1.00000000000000000000,-0.0039921341625515915,0.00569511052768555472,0.99997581399797175194,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8157090205022541,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -192 ,0 ,-2.1818745280591937962,1.27612282575298463527,0.00000000000000000000,1.00000000000000000000,-0.0048229877844192213,0.00565402356563793340,0.99997238502188201536,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8155853780572215,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -193 ,0 ,-2.1992640298860965941,1.24092170289664127658,0.00000000000000000000,1.00000000000000000000,-0.0056537269977825644,0.00560885118900348277,0.99996828757684819155,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8154766819188807,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -194 ,0 ,-2.2165730619103167775,1.20567124188750729452,0.00000000000000000000,1.00000000000000000000,-0.0064843210010853014,0.00555959364962443306,0.99996352158446566438,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8153829442235291,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -195 ,0 ,-2.2338016806502785094,1.17037136637793004467,0.00000000000000000000,1.00000000000000000000,-0.0073147389903801627,0.00550625150110777960,0.99995808701560551234,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8153041773439326,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -196 ,0 ,-2.4563588963684805932,1.88566694638255527571,0.00000000000000000000,1.00000000000000000000,0.00263151831936488589,-0.0039827128367267844,0.99998860648999166045,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8163425414531957,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -197 ,0 ,-2.4752975393902545420,1.84980941156449962825,0.00000000000000000000,1.00000000000000000000,0.00184958271504007576,-0.0039912045009440960,0.99999032461839953978,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8164453621066058,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -198 ,0 ,-2.4941552268756161936,1.81390152454463460252,0.00000000000000000000,1.00000000000000000000,0.00106752486455018820,-0.0040034134425516549,0.99999141649889777827,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8165632986292621,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 -199 ,0 ,-2.5129320088353086504,1.77794322296416229534,0.00000000000000000000,1.00000000000000000000,0.00028537187233473469,-0.0040193416182971062,0.99999188169497155165,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11098.8166963614112319,0.00000000000000000000,3.00000000000000000000,321.000000000000000000 diff --git a/Intern/RAY-Core/tests/output/toroid.rayui.csv b/Intern/RAY-Core/tests/output/toroid.rayui.csv deleted file mode 100644 index efbf27525..000000000 --- a/Intern/RAY-Core/tests/output/toroid.rayui.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.0691513020354870000,-0.1384655869163929908,0.00000000000000000000,-1.0000000000000000000,0.00511999075325057003,0.00483541137152327001,0.99997520193830502499,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006875281230804829,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-0.0585239127486429991,-0.1290353201373639902,0.00000000000000000000,-1.0000000000000000000,0.00433260488091832991,0.00486832767963155024,0.99997876373478500333,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005892301059020610,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,-0.0478909000881459975,-0.1211781605232079978,0.00000000000000000000,-1.0000000000000000000,0.00354506650441355989,0.00489575905078607018,0.99998173185653504990,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005070598900829279,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,-0.0372532747502148028,-0.1148933466393450009,0.00000000000000000000,-1.0000000000000000000,0.00275740334975018005,0.00491770487711714991,0.99998410632644996187,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004411566849285010,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-0.0266120544724969994,-0.1101802693028850060,0.00000000000000000000,-1.0000000000000000000,0.00196964314415274018,0.00493416467234956013,0.99998588716284897426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003916318446499639,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-0.0159682624690277996,-0.1070384715963819954,0.00000000000000000000,-1.0000000000000000000,0.00118181361578715009,0.00494513807177832023,0.99998707437947798037,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003585688896237120,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,-0.0053229258654937695,-0.1054676488991640043,0.00000000000000000000,-1.0000000000000000000,0.00039394249349174702,0.00495062483227404030,0.99998766798550198231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003420234910436190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,0.00532292586549376958,-0.1054676488991640043,0.00000000000000000000,-1.0000000000000000000,-0.0003939424934917470,0.00495062483227404030,0.99998766798550198231,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003420234910436190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,0.01596826246902779966,-0.1070384715963819954,0.00000000000000000000,-1.0000000000000000000,-0.0011818136157871500,0.00494513807177832023,0.99998707437947798037,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003585688896237120,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,0.02661205447249680167,-0.1101802693028850060,0.00000000000000000000,-1.0000000000000000000,-0.0019696431441527401,0.00493416467234956013,0.99998588716284897426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003916318446499639,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,0.03725327475021480289,-0.1148933466393450009,0.00000000000000000000,-1.0000000000000000000,-0.0027574033497501800,0.00491770487711714991,0.99998410632644996187,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004411566849285010,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,0.04789090008814599758,-0.1211781605232079978,0.00000000000000000000,-1.0000000000000000000,-0.0035450665044135598,0.00489575905078607018,0.99998173185653504990,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005070598900829279,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,0.05852391274864209708,-0.1290353201373639902,0.00000000000000000000,-1.0000000000000000000,-0.0043326048809183299,0.00486832767963155024,0.99997876373478500333,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005892301059020610,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,0.06915130203548700005,-0.1384655869163929908,0.00000000000000000000,-1.0000000000000000000,-0.0051199907532505700,0.00483541137152327001,0.99997520193830502499,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006875281230804829,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,-0.0577609925286904010,-0.1093267650906570020,0.00000000000000000000,-1.0000000000000000000,0.00510687780018120006,0.00407730460910770992,0.99997864746516396117,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005009720247244330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,-0.0488847118053232984,-0.0997882458956960011,0.00000000000000000000,-1.0000000000000000000,0.00432150890463304029,0.00411016569554754039,0.99998221539122500445,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004177670966782899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-0.0400034310725038977,-0.0918408709061324934,0.00000000000000000000,-1.0000000000000000000,0.00353598770522071991,0.00413755104784627007,0.99998518862144902819,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003481740195638849,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-0.0311180476951338005,-0.0854838814252695949,0.00000000000000000000,-1.0000000000000000000,0.00275034189153588017,0.00415946005856430035,0.99998756717846304375,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002923322431342970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,-0.0222294660750379999,-0.0807166704695631981,0.00000000000000000000,-1.0000000000000000000,0.00196459915438245997,0.00417589224178066976,0.99998935108037401153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002503533096387399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,-0.0133385960867904006,-0.0775387827674141050,0.00000000000000000000,-1.0000000000000000000,0.00117878718550683009,0.00418684723305162969,0.99999054034076595431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002223208807663470,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -20 ,0 ,-0.0044463515140700203,-0.0759499147982660993,0.00000000000000000000,-1.0000000000000000000,0.00039293367732863099,0.00419232478942483006,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002082907230942510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -21 ,0 ,0.00444635151407002035,-0.0759499147982660993,0.00000000000000000000,-1.0000000000000000000,-0.0003929336773286309,0.00419232478942483006,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002082907230942510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -22 ,0 ,0.01333859608679040069,-0.0775387827674141050,0.00000000000000000000,-1.0000000000000000000,-0.0011787871855068300,0.00418684723305162969,0.99999054034076595431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002223208807663470,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -23 ,0 ,0.02222946607503839891,-0.0807166704695631981,0.00000000000000000000,-1.0000000000000000000,-0.0019645991543824599,0.00417589224178066976,0.99998935108037401153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002503533096387399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -24 ,0 ,0.03111804769513380058,-0.0854838814252695949,0.00000000000000000000,-1.0000000000000000000,-0.0027503418915358801,0.00415946005856430035,0.99998756717846304375,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002923322431342970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -25 ,0 ,0.04000343107250389773,-0.0918408709061324934,0.00000000000000000000,-1.0000000000000000000,-0.0035359877052207199,0.00413755104784627007,0.99998518862144902819,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003481740195638849,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -26 ,0 ,0.04888471180532329846,-0.0997882458956960011,0.00000000000000000000,-1.0000000000000000000,-0.0043215089046330402,0.00411016569554754039,0.99998221539122500445,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004177670966782899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -27 ,0 ,0.05776099252869040107,-0.1093267650906570020,0.00000000000000000000,-1.0000000000000000000,-0.0051068778001812000,0.00407730460910770992,0.99997864746516396117,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005009720247244330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -28 ,0 ,-0.0464610105416242979,-0.0849975978430772965,0.00000000000000000000,-1.0000000000000000000,0.00509375016303548026,0.00331795763403813998,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003545005472460619,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -29 ,0 ,-0.0393219420521547027,-0.0753509896778355031,0.00000000000000000000,-1.0000000000000000000,0.00431040050436462974,0.00335076355300085006,0.99998509630449194940,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002864567493361390,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -30 ,0 ,-0.0321784968116300973,-0.0673135355299713938,0.00000000000000000000,-1.0000000000000000000,0.00352689874163562020,0.00337810293159821004,0.99998807463181804688,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002294975150789469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -31 ,0 ,-0.0250314588727910992,-0.0608844794425590987,0.00000000000000000000,-1.0000000000000000000,0.00274327252810932986,0.00339997516283250004,0.99999045726683200019,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001837625285361359,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -32 ,0 ,-0.0178816193207143002,-0.0560632166163559028,0.00000000000000000000,-1.0000000000000000000,0.00195954951826028981,0.00341637976112851978,0.99999224422743104856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001493635206770699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -33 ,0 ,-0.0107297747097802997,-0.0528492934225174987,0.00000000000000000000,-1.0000000000000000000,0.00117575736750669991,0.00342731636230744979,0.99999343552703701121,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001263842979142280,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -34 ,0 ,-0.0035767255009469000,-0.0512424074334947021,0.00000000000000000000,-1.0000000000000000000,0.00039192373194079700,0.00343278472359046004,0.99999403117460095025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001148807194795149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -35 ,0 ,0.00357672550094690006,-0.0512424074334947021,0.00000000000000000000,-1.0000000000000000000,-0.0003919237319407970,0.00343278472359046004,0.99999403117460095025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001148807194795149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -36 ,0 ,0.01072977470978029972,-0.0528492934225174987,0.00000000000000000000,-1.0000000000000000000,-0.0011757573675066999,0.00342731636230744979,0.99999343552703701121,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001263842979142280,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -37 ,0 ,0.01788161932071469922,-0.0560632166163559028,0.00000000000000000000,-1.0000000000000000000,-0.0019595495182602898,0.00341637976112851978,0.99999224422743104856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001493635206770699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -38 ,0 ,0.02503145887279109929,-0.0608844794425590987,0.00000000000000000000,-1.0000000000000000000,-0.0027432725281093298,0.00339997516283250004,0.99999045726683200019,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001837625285361359,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -39 ,0 ,0.03217849681163009734,-0.0673135355299713938,0.00000000000000000000,-1.0000000000000000000,-0.0035268987416356202,0.00337810293159821004,0.99998807463181804688,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002294975150789469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -40 ,0 ,0.03932194205215380072,-0.0753509896778355031,0.00000000000000000000,-1.0000000000000000000,-0.0043104005043646401,0.00335076355300085006,0.99998509630449194940,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002864567493361390,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -41 ,0 ,0.04646101054162429799,-0.0849975978430772965,0.00000000000000000000,-1.0000000000000000000,-0.0050937501630354802,0.00331795763403813998,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003545005472460619,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -42 ,0 ,-0.0352516439989943031,-0.0655011979605548966,0.00000000000000000000,-1.0000000000000000000,0.00508060774906991027,0.00255736347909710009,0.99998382352762904545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002409662868103620,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -43 ,0 ,-0.0298358470831549989,-0.0557466618369688998,0.00000000000000000000,-1.0000000000000000000,0.00429927960163709998,0.00259011428476171997,0.99998740367211602642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001881521592395069,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -44 ,0 ,-0.0244162965861974001,-0.0476192627268762977,0.00000000000000000000,-1.0000000000000000000,0.00351779954945020002,0.00261740773480795014,0.99999038708533605213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001438838844478600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -45 ,0 ,-0.0189936632645885984,-0.0411182474018447971,0.00000000000000000000,-1.0000000000000000000,0.00273619520953058978,0.00263924322267979983,0.99999277378938400406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001083013777360970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -46 ,0 ,-0.0135686249026815992,-0.0362430132398103982,0.00000000000000000000,-1.0000000000000000000,0.00195449420011470018,0.00265562026314864006,0.99999456380194395865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000815165665244421,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -47 ,0 ,-0.0081418647507447393,-0.0329931082469517023,0.00000000000000000000,-1.0000000000000000000,0.00117272414038376991,0.00266653849229652991,0.99999575713627897322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000636133914895253,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -48 ,0 ,-0.0027140699631844102,-0.0313682310867159988,0.00000000000000000000,-1.0000000000000000000,0.00039091265019390797,0.00267199766752120992,0.99999635380123497174,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000546478172509523,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -49 ,0 ,0.00271406996318441021,-0.0313682310867159988,0.00000000000000000000,-1.0000000000000000000,-0.0003909126501939079,0.00267199766752120992,0.99999635380123497174,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000546478172509523,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -50 ,0 ,0.00814186475074473933,-0.0329931082469517023,0.00000000000000000000,-1.0000000000000000000,-0.0011727241403837699,0.00266653849229652991,0.99999575713627897322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000636133914895253,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -51 ,0 ,0.01356862490268180045,-0.0362430132398103982,0.00000000000000000000,-1.0000000000000000000,-0.0019544942001147001,0.00265562026314864006,0.99999456380194395865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000815165665244421,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -52 ,0 ,0.01899366326458859846,-0.0411182474018447971,0.00000000000000000000,-1.0000000000000000000,-0.0027361952095305897,0.00263924322267979983,0.99999277378938400406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001083013777360970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -53 ,0 ,0.02441629658619740017,-0.0476192627268762977,0.00000000000000000000,-1.0000000000000000000,-0.0035177995494502000,0.00261740773480795014,0.99999038708533605213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001438838844478600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -54 ,0 ,0.02983584708315410033,-0.0557466618369688998,0.00000000000000000000,-1.0000000000000000000,-0.0042992796016370999,0.00259011428476171997,0.99998740367211602642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001881521592395069,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -55 ,0 ,0.03525164399899430311,-0.0655011979605548966,0.00000000000000000000,-1.0000000000000000000,-0.0050806077490699102,0.00255736347909710009,0.99998382352762904545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002409662868103620,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -56 ,0 ,-0.0241331842480994006,-0.0508609450882622007,0.00000000000000000000,-1.0000000000000000000,0.00506745046530147034,0.00179551514632003998,0.99998554843114695334,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001531398100951259,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -57 ,0 ,-0.0204266733882399013,-0.0409986395723440991,0.00000000000000000000,-1.0000000000000000000,0.00428814611777175985,0.00182821089285268006,0.99998913466487404644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001156244004505420,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -58 ,0 ,-0.0167170320461402996,-0.0327814276622308969,0.00000000000000000000,-1.0000000000000000000,0.00350869006429054995,0.00185545845949438995,0.99999212315294605524,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000841046196455863,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -59 ,0 ,-0.0130048176946449007,-0.0262085588385216998,0.00000000000000000000,-1.0000000000000000000,0.00272910988573079986,0.00187725724011881004,0.99999451391719396120,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000587206258160222,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -60 ,0 ,-0.0092905948302861602,-0.0212794326542181007,0.00000000000000000000,-1.0000000000000000000,0.00194943316418206007,0.00189360674984840010,0.99999630697508801180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000395845274852036,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -61 ,0 ,-0.0055749334121419896,-0.0179935987412232004,0.00000000000000000000,-1.0000000000000000000,0.00116968748267979997,0.00190450662502467007,0.99999750233973494495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000267804209670430,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -62 ,0 ,-0.0018584073010747799,-0.0163507568490892998,0.00000000000000000000,-1.0000000000000000000,0.00038990042493520300,0.00190995662321969002,0.99999810001987299301,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000203643520535479,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -63 ,0 ,0.00185840730107477997,-0.0163507568490892998,0.00000000000000000000,-1.0000000000000000000,-0.0003899004249352030,0.00190995662321969002,0.99999810001987299301,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000203643520535479,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -64 ,0 ,0.00557493341214198960,-0.0179935987412232004,0.00000000000000000000,-1.0000000000000000000,-0.0011696874826797999,0.00190450662502467007,0.99999750233973494495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000267804209670430,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -65 ,0 ,0.00929059483028616024,-0.0212794326542181007,0.00000000000000000000,-1.0000000000000000000,-0.0019494331641820600,0.00189360674984840010,0.99999630697508801180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000395845274852036,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -66 ,0 ,0.01300481769464490074,-0.0262085588385216998,0.00000000000000000000,-1.0000000000000000000,-0.0027291098857307998,0.00187725724011881004,0.99999451391719396120,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000587206258160222,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -67 ,0 ,0.01671703204614029963,-0.0327814276622308969,0.00000000000000000000,-1.0000000000000000000,-0.0035086900642905499,0.00185545845949438995,0.99999212315294605524,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000841046196455863,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -68 ,0 ,0.02042667338823990139,-0.0409986395723440991,0.00000000000000000000,-1.0000000000000000000,-0.0042881461177717598,0.00182821089285268006,0.99998913466487404644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001156244004505420,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -69 ,0 ,0.02413318424809940063,-0.0508609450882622007,0.00000000000000000000,-1.0000000000000000000,-0.0050674504653014703,0.00179551514632003998,0.99998554843114695334,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001531398100951259,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -70 ,0 ,-0.0131059260823142998,-0.0411004881235816979,0.00000000000000000000,-1.0000000000000000000,0.00505427821850702990,0.00103240560681800005,0.99998669411665297435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000837085160583228,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -71 ,0 ,-0.0110946703732456991,-0.0311305693342600990,0.00000000000000000000,-1.0000000000000000000,0.00427699997388695987,0.00106504634838954989,0.99999028642657294962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000615613813579330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -72 ,0 ,-0.0090809072270157092,-0.0228236747346212999,0.00000000000000000000,-1.0000000000000000000,0.00349957022161663001,0.00109224807676316991,0.99999327997862197392,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000428480609571124,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -73 ,0 ,-0.0070650808425507501,-0.0161790565194964014,0.00000000000000000000,-1.0000000000000000000,0.00272201650651188002,0.00111401018625559007,0.99999567479436801686,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000277089477549453,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -74 ,0 ,-0.0050476424381729100,-0.0111961163957836999,0.00000000000000000000,-1.0000000000000000000,0.00194436637460642996,0.00113033219232972002,0.99999747089107005049,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000162563454750852,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -75 ,0 ,-0.0030290486915984802,-0.0078744056239890003,0.00000000000000000000,-1.0000000000000000000,0.00116664737288116999,0.00114121373159283999,0.99999866828167605081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000085744870830239,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -76 ,0 ,-0.0010097601799682900,-0.0062136250328894701,0.00000000000000000000,-1.0000000000000000000,0.00038888704899347098,0.00114665456178814008,0.99999926697482099946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000047195218257911,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -77 ,0 ,0.00100976017996829000,-0.0062136250328894701,0.00000000000000000000,-1.0000000000000000000,-0.0003888870489934709,0.00114665456178814008,0.99999926697482099946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000047195218257911,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -78 ,0 ,0.00302904869159848020,-0.0078744056239890003,0.00000000000000000000,-1.0000000000000000000,-0.0011666473728811699,0.00114121373159283999,0.99999866828167605081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000085744870830239,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -79 ,0 ,0.00504764243817202012,-0.0111961163957836999,0.00000000000000000000,-1.0000000000000000000,-0.0019443663746064299,0.00113033219232972002,0.99999747089107005049,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000162563454750852,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -80 ,0 ,0.00706508084255075014,-0.0161790565194964014,0.00000000000000000000,-1.0000000000000000000,-0.0027220165065118800,0.00111401018625559007,0.99999567479436801686,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000277089477549453,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -81 ,0 ,0.00908090722701570922,-0.0228236747346212999,0.00000000000000000000,-1.0000000000000000000,-0.0034995702216166300,0.00109224807676316991,0.99999327997862197392,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000428480609571124,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -82 ,0 ,0.01109467037324569915,-0.0311305693342600990,0.00000000000000000000,-1.0000000000000000000,-0.0042769999738869598,0.00106504634838954989,0.99999028642657294962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000615613813579330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -83 ,0 ,0.01310592608231429985,-0.0411004881235816979,0.00000000000000000000,-1.0000000000000000000,-0.0050542782185070299,0.00103240560681800005,0.99998669411665297435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000837085160583228,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -84 ,0 ,-0.0021701677651400101,-0.0362437476570783012,0.00000000000000000000,-1.0000000000000000000,0.00504109091522312018,0.00026802780063103797,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000252754572329649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -85 ,0 ,-0.0018400903799431500,-0.0261663692328015992,0.00000000000000000000,-1.0000000000000000000,0.00426584109089738015,0.00030061359139585397,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000185666882543955,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -86 ,0 ,-0.0015081285665319299,-0.0177699200075248989,0.00000000000000000000,-1.0000000000000000000,0.00349043995672192013,0.00032776952664412300,0.99999385467914003733,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000127182294136218,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -87 ,0 ,-0.0011746132561110099,-0.0110536548548784991,0.00000000000000000000,-1.0000000000000000000,0.00271491502154621016,0.00034949500111161602,0.99999625353781695924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000078707186048632,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -88 ,0 ,-0.0008398823954327560,-0.0060169776463137600,0.00000000000000000000,-1.0000000000000000000,0.00193929379543940003,0.00036578953061691698,0.99999805266690100502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000041366560026290,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -89 ,0 ,-0.0005042793873859530,-0.0026594412515151800,0.00000000000000000000,-1.0000000000000000000,0.00116360378941876996,0.00037665275202092301,0.99999925207918305414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000016004094050003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -90 ,0 ,-0.0001681515320923749,-0.0009807475807314110,0.00000000000000000000,-1.0000000000000000000,0.00038787251517899098,0.00038208442324511000,0.99999985178319195089,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000003182238970111,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -91 ,0 ,0.00016815153209237499,-0.0009807475807314110,0.00000000000000000000,-1.0000000000000000000,-0.0003878725151789909,0.00038208442324511000,0.99999985178319195089,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000003182238970111,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -92 ,0 ,0.00050427938738595301,-0.0026594412515151800,0.00000000000000000000,-1.0000000000000000000,-0.0011636037894187699,0.00037665275202092301,0.99999925207918305414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000016004094050003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -93 ,0 ,0.00083988239543231202,-0.0060169776463137600,0.00000000000000000000,-1.0000000000000000000,-0.0019392937954394000,0.00036578953061691698,0.99999805266690100502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000041366560026290,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -94 ,0 ,0.00117461325611100991,-0.0110536548548784991,0.00000000000000000000,-1.0000000000000000000,-0.0027149150215462101,0.00034949500111161602,0.99999625353781695924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000078707186048632,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -95 ,0 ,0.00150812856653192994,-0.0177699200075248989,0.00000000000000000000,-1.0000000000000000000,-0.0034904399567219201,0.00032776952664412300,0.99999385467914003733,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000127182294136218,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -96 ,0 ,0.00184009037994315003,-0.0261663692328015992,0.00000000000000000000,-1.0000000000000000000,-0.0042658410908973801,0.00030061359139585397,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000185666882543955,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -97 ,0 ,0.00217016776514001013,-0.0362437476570783012,0.00000000000000000000,-1.0000000000000000000,-0.0050410909152231201,0.00026802780063103797,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000252754572329649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -98 ,0 ,0.00867378894596803999,-0.0363149184143784012,0.00000000000000000000,-1.0000000000000000000,0.00502788846174509040,-0.0004976253634616509,0.99998723627185004403,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002964183101994419,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -99 ,0 ,0.00733681129338403965,-0.0261302315219580985,0.00000000000000000000,-1.0000000000000000000,0.00425466938951398008,-0.0004650944693407880,0.99999084069581400946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002084162156279489,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -100 ,0 ,0.00600109507887492017,-0.0176443536542283015,0.00000000000000000000,-1.0000000000000000000,0.00348129920473297990,-0.0004379842820879940,0.99999384434386195952,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001376636487293579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -101 ,0 ,0.00466642263560945996,-0.0108565423700690000,0.00000000000000000000,-1.0000000000000000000,0.00270780538037644017,-0.0004162954065340119,0.99999624723703695039,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000827518999813037,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -102 ,0 ,0.00333256928516200996,-0.0057662036846696795,0.00000000000000000000,-1.0000000000000000000,0.00193421539063980997,-0.0004000283265169489,0.99999804939217795674,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000425540827109215,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -103 ,0 ,0.00199930489600830003,-0.0023728920789584701,0.00000000000000000000,-1.0000000000000000000,0.00116055671066785993,-0.0003891834049142560,0.99999925082191898351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000162250796620356,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -104 ,0 ,0.00066639544158880704,-0.0006763105347092900,0.00000000000000000000,-1.0000000000000000000,0.00038685681628350897,-0.0003837608836338440,0.99999985153468295973,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000032014042972150,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -105 ,0 ,-0.0006663954415888070,-0.0006763105347092900,0.00000000000000000000,-1.0000000000000000000,-0.0003868568162835089,-0.0003837608836338440,0.99999985153468295973,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000032014042972150,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -106 ,0 ,-0.0019993048960083000,-0.0023728920789584701,0.00000000000000000000,-1.0000000000000000000,-0.0011605567106678599,-0.0003891834049142560,0.99999925082191898351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000162250796620356,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -107 ,0 ,-0.0033325692851617900,-0.0057662036846696795,0.00000000000000000000,-1.0000000000000000000,-0.0019342153906398099,-0.0004000283265169489,0.99999804939217795674,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000425540827109215,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -108 ,0 ,-0.0046664226356094599,-0.0108565423700690000,0.00000000000000000000,-1.0000000000000000000,-0.0027078053803764401,-0.0004162954065340119,0.99999624723703695039,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000827518999813037,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -109 ,0 ,-0.0060010950788749201,-0.0176443536542283015,0.00000000000000000000,-1.0000000000000000000,-0.0034812992047329799,-0.0004379842820879940,0.99999384434386195952,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001376636487293579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -110 ,0 ,-0.0073368112933840396,-0.0261302315219580985,0.00000000000000000000,-1.0000000000000000000,-0.0042546693895139800,-0.0004650944693407880,0.99999084069581400946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002084162156279489,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -111 ,0 ,-0.0086737889459680399,-0.0363149184143784012,0.00000000000000000000,-1.0000000000000000000,-0.0050278884617450904,-0.0004976253634616509,0.99998723627185004403,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002964183101994419,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -112 ,0 ,0.01942563877513680051,-0.0413384717459934977,0.00000000000000000000,-1.0000000000000000000,0.00501467076412681969,-0.0012645610081005698,0.99998662689187201024,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008861254286784969,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -113 ,0 ,0.01643577637159939972,-0.0310466250516901014,0.00000000000000000000,-1.0000000000000000000,0.00424348479024315959,-0.0012320849564647399,0.99999023735409298119,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006423217803330770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -114 ,0 ,0.01344655241715080051,-0.0224714424491252000,0.00000000000000000000,-1.0000000000000000000,0.00347214790060916978,-0.0012050204720752699,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004417390425714980,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -115 ,0 ,0.01045786250927660011,-0.0156121841737741993,0.00000000000000000000,-1.0000000000000000000,0.00270068753241512003,-0.0011833681593253499,0.99999565295387704555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002829660218139910,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -116 ,0 ,0.00746959523778390008,-0.0104682583740509996,0.00000000000000000000,-1.0000000000000000000,0.00192913112407363997,-0.0011671285017129100,0.99999745812885298956,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001648739475967890,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -117 ,0 ,0.00448163374228727033,-0.0070392211367769101,0.00000000000000000000,-1.0000000000000000000,0.00115750611494795001,-0.0011563018618550599,0.99999866157190298032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000866162201873522,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -118 ,0 ,0.00149385726950967989,-0.0053247765085211503,0.00000000000000000000,-1.0000000000000000000,0.00038583994508018898,-0.0011508884814914500,0.99999926329134802838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000476284503747593,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -119 ,0 ,-0.0014938572695096798,-0.0053247765085211503,0.00000000000000000000,-1.0000000000000000000,-0.0003858399450801889,-0.0011508884814914500,0.99999926329134802838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000476284503747593,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -120 ,0 ,-0.0044816337422872703,-0.0070392211367769101,0.00000000000000000000,-1.0000000000000000000,-0.0011575061149479500,-0.0011563018618550599,0.99999866157190298032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000866162201873522,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -121 ,0 ,-0.0074695952377841203,-0.0104682583740509996,0.00000000000000000000,-1.0000000000000000000,-0.0019291311240736399,-0.0011671285017129100,0.99999745812885298956,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001648739475967890,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -122 ,0 ,-0.0104578625092766001,-0.0156121841737741993,0.00000000000000000000,-1.0000000000000000000,-0.0027006875324151200,-0.0011833681593253499,0.99999565295387704555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002829660218139910,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -123 ,0 ,-0.0134465524171508005,-0.0224714424491252000,0.00000000000000000000,-1.0000000000000000000,-0.0034721479006091697,-0.0012050204720752699,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004417390425714980,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -124 ,0 ,-0.0164357763715993997,-0.0310466250516901014,0.00000000000000000000,-1.0000000000000000000,-0.0042434847902431595,-0.0012320849564647399,0.99999023735409298119,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006423217803330770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -125 ,0 ,-0.0194256387751368005,-0.0413384717459934977,0.00000000000000000000,-1.0000000000000000000,-0.0050146707641268196,-0.0012645610081005698,0.99998662689187201024,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008861254286784969,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -126 ,0 ,0.03008507290358690064,-0.0513391581335573971,0.00000000000000000000,-1.0000000000000000000,0.00500143772818009962,-0.0020327862875212702,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015929378218970698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -127 ,0 ,0.02545654358181699897,-0.0409402977946283011,0.00000000000000000000,-1.0000000000000000000,0.00423228721338655012,-0.0020003650242103598,0.99998904308233005355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011926154593311400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -128 ,0 ,0.02082802970359680025,-0.0322759322777586010,0.00000000000000000000,-1.0000000000000000000,0.00346298597914238004,-0.0019733461975441598,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008616048194198809,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -129 ,0 ,0.01619954013401070022,-0.0253453244766038005,0.00000000000000000000,-1.0000000000000000000,0.00269356142694451980,-0.0019517304114895200,0.99999446772231703750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005984924280255649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -130 ,0 ,0.01157107673412080019,-0.0201478846690005992,0.00000000000000000000,-1.0000000000000000000,0.00192404095951378994,-0.0019355181491999299,0.99999627591100603840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004021474501314510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -131 ,0 ,0.00694263591767940984,-0.0166831705406366992,0.00000000000000000000,-1.0000000000000000000,0.00115445198052272998,-0.0019247097730322199,0.99999748136328503456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002717219479109190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -132 ,0 ,0.00231421020761291007,-0.0149508872007284993,0.00000000000000000000,-1.0000000000000000000,0.00038482189432357698,-0.0019193055245567398,0.99999808408737100862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002066505282982690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -133 ,0 ,-0.0023142102076129100,-0.0149508872007284993,0.00000000000000000000,-1.0000000000000000000,-0.0003848218943235769,-0.0019193055245567398,0.99999808408737100862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002066505282982690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -134 ,0 ,-0.0069426359176794098,-0.0166831705406366992,0.00000000000000000000,-1.0000000000000000000,-0.0011544519805227299,-0.0019247097730322199,0.99999748136328503456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002717219479109190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -135 ,0 ,-0.0115710767341217005,-0.0201478846690005992,0.00000000000000000000,-1.0000000000000000000,-0.0019240409595137899,-0.0019355181491999299,0.99999627591100603840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004021474501314510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -136 ,0 ,-0.0161995401340107002,-0.0253453244766038005,0.00000000000000000000,-1.0000000000000000000,-0.0026935614269445198,-0.0019517304114895200,0.99999446772231703750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005984924280255649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -137 ,0 ,-0.0208280297035968002,-0.0322759322777586010,0.00000000000000000000,-1.0000000000000000000,-0.0034629859791423800,-0.0019733461975441598,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008616048194198809,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -138 ,0 ,-0.0254565435818169989,-0.0409402977946283011,0.00000000000000000000,-1.0000000000000000000,-0.0042322872133865501,-0.0020003650242103598,0.99998904308233005355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011926154593311400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -139 ,0 ,-0.0300850729035869006,-0.0513391581335573971,0.00000000000000000000,-1.0000000000000000000,-0.0050014377281800996,-0.0020327862875212702,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015929378218970698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -140 ,0 ,0.04065177894479800324,-0.0663420097337179964,0.00000000000000000000,-1.0000000000000000000,0.00498818925947424988,-0.0028023083877208600,0.99998363238385601370,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00024943181517755901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -141 ,0 ,0.03439884863241800261,-0.0558362793825009015,0.00000000000000000000,-1.0000000000000000000,0.00422107657904061996,-0.0027699418585717902,0.99998725488608797284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019367541267456498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -142 ,0 ,0.02814531072381989962,-0.0470828506633486978,0.00000000000000000000,-1.0000000000000000000,0.00345381337495648992,-0.0027429686444921399,0.99999027360079195680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014747132161119200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -143 ,0 ,0.02189128735807480130,-0.0400809891211312968,0.00000000000000000000,-1.0000000000000000000,0.00268642701311631003,-0.0027213893490188900,0.99999268854822798147,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011067794889640899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -144 ,0 ,0.01563689367383139933,-0.0348301071533212019,0.00000000000000000000,-1.0000000000000000000,0.00191894486063988998,-0.0027052044549645301,0.99999449974461296353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008318202355894749,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -145 ,0 ,0.00938223936519944068,-0.0313297640335842980,0.00000000000000000000,-1.0000000000000000000,0.00115139428559990009,-0.0026944143244310701,0.99999570720210895213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006489860095371109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -146 ,0 ,0.00312743023744210986,-0.0295796659328350988,0.00000000000000000000,-1.0000000000000000000,0.00038380265674957001,-0.0026890191988159502,0.99999631092883001226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005577104548137869,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -147 ,0 ,-0.0031274302374421098,-0.0295796659328350988,0.00000000000000000000,-1.0000000000000000000,-0.0003838026567495700,-0.0026890191988159502,0.99999631092883001226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005577104548137869,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -148 ,0 ,-0.0093822393651994406,-0.0313297640335842980,0.00000000000000000000,-1.0000000000000000000,-0.0011513942855999000,-0.0026944143244310701,0.99999570720210895213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006489860095371109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -149 ,0 ,-0.0156368936738313993,-0.0348301071533212019,0.00000000000000000000,-1.0000000000000000000,-0.0019189448606398899,-0.0027052044549645301,0.99999449974461296353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008318202355894749,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -150 ,0 ,-0.0218912873580748013,-0.0400809891211312968,0.00000000000000000000,-1.0000000000000000000,-0.0026864270131163100,-0.0027213893490188900,0.99999268854822798147,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011067794889640899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -151 ,0 ,-0.0281453107238198996,-0.0470828506633486978,0.00000000000000000000,-1.0000000000000000000,-0.0034538133749564899,-0.0027429686444921399,0.99999027360079195680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014747132161119200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -152 ,0 ,-0.0343988486324188977,-0.0558362793825009015,0.00000000000000000000,-1.0000000000000000000,-0.0042210765790406199,-0.0027699418585717902,0.99998725488608797284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019367541267456498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -153 ,0 ,-0.0406517789447980032,-0.0663420097337179964,0.00000000000000000000,-1.0000000000000000000,-0.0049881892594742498,-0.0028023083877208600,0.99998363238385601370,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00024943181517755901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -154 ,0 ,0.05112544091951939928,-0.0863723429355535976,0.00000000000000000000,-1.0000000000000000000,0.00497492526333551988,-0.0035731345266403501,0.99998124123819398523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036686330099655600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -155 ,0 ,0.04326242419188459920,-0.0757598836704511946,0.00000000000000000000,-1.0000000000000000000,0.00420985280709623016,-0.0035408226774800198,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029530986580539298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -156 ,0 ,0.03539817677627119657,-0.0669175093479173060,0.00000000000000000000,-1.0000000000000000000,0.00344463002250720981,-0.0035138950308439601,0.99998789345957594942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00023594202491494800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -157 ,0 ,0.02753293409536939836,-0.0598444881556660993,0.00000000000000000000,-1.0000000000000000000,0.00267928423995129980,-0.0034923521898372099,0.99999031240914704188,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018861794262647898,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -158 ,0 ,0.01966692457493859902,-0.0545402346039413968,0.00000000000000000000,-1.0000000000000000000,0.00191384279103806991,-0.0034761946369314400,0.99999212660731395807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015322415799801100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -159 ,0 ,0.01180037119889370059,-0.0510043095473914978,0.00000000000000000000,-1.0000000000000000000,0.00114833300833110996,-0.0034654227339727897,0.99999333606608498126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012967557381671199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -160 ,0 ,0.00393349306421808975,-0.0492364202124239980,0.00000000000000000000,-1.0000000000000000000,0.00038278222507536900,-0.0034600367221897499,0.99999394079346703989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011791546126005399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -161 ,0 ,-0.0039334930642180897,-0.0492364202124239980,0.00000000000000000000,-1.0000000000000000000,-0.0003827822250753690,-0.0034600367221897499,0.99999394079346703989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011791546126005399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -162 ,0 ,-0.0118003711988937005,-0.0510043095473914978,0.00000000000000000000,-1.0000000000000000000,-0.0011483330083311099,-0.0034654227339727897,0.99999333606608498126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012967557381671199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -163 ,0 ,-0.0196669245749385990,-0.0545402346039413968,0.00000000000000000000,-1.0000000000000000000,-0.0019138427910380699,-0.0034761946369314400,0.99999212660731395807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015322415799801100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -164 ,0 ,-0.0275329340953693983,-0.0598444881556660993,0.00000000000000000000,-1.0000000000000000000,-0.0026792842399512998,-0.0034923521898372099,0.99999031240914704188,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018861794262647898,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -165 ,0 ,-0.0353981767762711965,-0.0669175093479173060,0.00000000000000000000,-1.0000000000000000000,-0.0034446300225072098,-0.0035138950308439601,0.99998789345957594942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00023594202491494800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -166 ,0 ,-0.0432624241918845992,-0.0757598836704511946,0.00000000000000000000,-1.0000000000000000000,-0.0042098528070962301,-0.0035408226774800198,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029530986580539298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -167 ,0 ,-0.0511254409195193992,-0.0863723429355535976,0.00000000000000000000,-1.0000000000000000000,-0.0049749252633355198,-0.0035731345266403501,0.99998124123819398523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036686330099655600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -168 ,0 ,0.06150573923037769979,-0.1114557609710779967,0.00000000000000000000,-1.0000000000000000000,0.00496164564484674001,-0.0043452719543262997,0.99997825010553997859,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00051951655677839902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -169 ,0 ,0.05204699986743400313,-0.1007367113309689948,0.00000000000000000000,-1.0000000000000000000,0.00419861581723810980,-0.0043130147309824199,0.99998188460049097781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043209263230892198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -170 ,0 ,0.04258640665483909987,-0.0918055068772467980,0.00000000000000000000,-1.0000000000000000000,0.00343543585608166012,-0.0042861326066397902,0.99998491331007399729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035949983066529999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -171 ,0 ,0.03312430831183289792,-0.0846614184265215008,0.00000000000000000000,-1.0000000000000000000,0.00267213305633922986,-0.0042646261839777398,0.99998733625403501967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030159607013047201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -172 ,0 ,0.02366104656408540146,-0.0793038625887003967,0.00000000000000000000,-1.0000000000000000000,0.00190873471420085994,-0.0042484959451300997,0.99998915344817396189,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025826769706327500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -173 ,0 ,0.01419695769799590029,-0.0757324017991809067,0.00000000000000000000,-1.0000000000000000000,0.00114526812681179008,-0.0042377422516867695,0.99999036490434500823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022942946952753099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -174 ,0 ,0.00473237411488957974,-0.0739467443369958982,0.00000000000000000000,-1.0000000000000000000,0.00038176059199945101,-0.0042323653447002302,0.99999097063045494504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021502456183952698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -175 ,0 ,-0.0047323741148895797,-0.0739467443369958982,0.00000000000000000000,-1.0000000000000000000,-0.0003817605919994510,-0.0042323653447002302,0.99999097063045494504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021502456183952698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -176 ,0 ,-0.0141969576979959002,-0.0757324017991809067,0.00000000000000000000,-1.0000000000000000000,-0.0011452681268117900,-0.0042377422516867695,0.99999036490434500823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022942946952753099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -177 ,0 ,-0.0236610465640854014,-0.0793038625887003967,0.00000000000000000000,-1.0000000000000000000,-0.0019087347142008599,-0.0042484959451300997,0.99998915344817396189,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025826769706327500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -178 ,0 ,-0.0331243083118328979,-0.0846614184265215008,0.00000000000000000000,-1.0000000000000000000,-0.0026721330563392298,-0.0042646261839777398,0.99998733625403501967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030159607013047201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -179 ,0 ,-0.0425864066548390998,-0.0918055068772467980,0.00000000000000000000,-1.0000000000000000000,-0.0034354358560816601,-0.0042861326066397902,0.99998491331007399729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035949983066529999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -180 ,0 ,-0.0520469998674348982,-0.1007367113309689948,0.00000000000000000000,-1.0000000000000000000,-0.0041986158172381202,-0.0043130147309824199,0.99998188460049097781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043209263230892198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -181 ,0 ,-0.0615057392303776997,-0.1114557609710779967,0.00000000000000000000,-1.0000000000000000000,-0.0049616456448467400,-0.0043452719543262997,0.99997825010553997859,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00051951655677839902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -182 ,0 ,0.07179235063644730241,-0.1416181565232350059,0.00000000000000000000,-1.0000000000000000000,0.00494835030884669020,-0.0051187279531199596,0.99997465590552003789,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00071541281863574102,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -183 ,0 ,0.06075230218330850140,-0.1307926524852600080,0.00000000000000000000,-1.0000000000000000000,0.00418736552894469985,-0.0050865253014042398,0.99997829637961899162,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00061204435087347497,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -184 ,0 ,0.04970977663105809879,-0.1217727312328750061,0.00000000000000000000,-1.0000000000000000000,0.00342623080979812021,-0.0050596886541970096,0.99998133007229694779,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00052616487528211997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -185 ,0 ,0.03866523601165990087,-0.1145576662003290058,0.00000000000000000000,-1.0000000000000000000,0.00266497341103844997,-0.0050382186137555903,0.99998375700304198421,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045763207140225902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -186 ,0 ,0.02761913536669659968,-0.1091468760940289967,0.00000000000000000000,-1.0000000000000000000,0.00190362059352694001,-0.0050221156618696100,0.99998557718744895961,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040633208391227499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -187 ,0 ,0.01657192430101180058,-0.1055399249197829930,0.00000000000000000000,-1.0000000000000000000,0.00114219961908110993,-0.0050113801598746197,0.99998679063721795934,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00037217952922219399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -188 ,0 ,0.00552404853617355015,-0.1037365220023700046,0.00000000000000000000,-1.0000000000000000000,0.00038073775020152099,-0.0050060123486569104,0.99998739736015196388,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035511748205863097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -189 ,0 ,-0.0055240485361735501,-0.1037365220023700046,0.00000000000000000000,-1.0000000000000000000,-0.0003807377502015209,-0.0050060123486569104,0.99998739736015196388,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035511748205863097,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -190 ,0 ,-0.0165719243010118005,-0.1055399249197829930,0.00000000000000000000,-1.0000000000000000000,-0.0011421996190811099,-0.0050113801598746197,0.99998679063721795934,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00037217952922219399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -191 ,0 ,-0.0276191353666963984,-0.1091468760940289967,0.00000000000000000000,-1.0000000000000000000,-0.0019036205935269400,-0.0050221156618696100,0.99998557718744895961,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00040633208391227499,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -192 ,0 ,-0.0386652360116599008,-0.1145576662003290058,0.00000000000000000000,-1.0000000000000000000,-0.0026649734110384499,-0.0050382186137555903,0.99998375700304198421,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00045763207140225902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -193 ,0 ,-0.0497097766310580987,-0.1217727312328750061,0.00000000000000000000,-1.0000000000000000000,-0.0034262308097981202,-0.0050596886541970096,0.99998133007229694779,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00052616487528211997,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -194 ,0 ,-0.0607523021833094034,-0.1307926524852600080,0.00000000000000000000,-1.0000000000000000000,-0.0041873655289446998,-0.0050865253014042398,0.99997829637961899162,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00061204435087347497,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -195 ,0 ,-0.0717923506364473024,-0.1416181565232350059,0.00000000000000000000,-1.0000000000000000000,-0.0049483503088466902,-0.0051187279531199596,0.99997465590552003789,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00071541281863574102,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -196 ,0 ,-0.0691513020354870000,-0.1384655869163929908,0.00000000000000000000,-1.0000000000000000000,0.00511999075325057003,0.00483541137152327001,0.99997520193830502499,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0006875281230804829,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -197 ,0 ,-0.0585239127486429991,-0.1290353201373639902,0.00000000000000000000,-1.0000000000000000000,0.00433260488091832991,0.00486832767963155024,0.99997876373478500333,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005892301059020610,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -198 ,0 ,-0.0478909000881459975,-0.1211781605232079978,0.00000000000000000000,-1.0000000000000000000,0.00354506650441355989,0.00489575905078607018,0.99998173185653504990,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005070598900829279,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -199 ,0 ,-0.0372532747502148028,-0.1148933466393450009,0.00000000000000000000,-1.0000000000000000000,0.00275740334975018005,0.00491770487711714991,0.99998410632644996187,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004411566849285010,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/toroid.rayx.csv b/Intern/RAY-Core/tests/output/toroid.rayx.csv deleted file mode 100644 index 3eaed04e5..000000000 --- a/Intern/RAY-Core/tests/output/toroid.rayx.csv +++ /dev/null @@ -1,201 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.0691513020354815460,-0.1384655869166047381,0.00000000000000000000,1.00000000000000000000,0.00511999075325057263,0.00483541137152350766,0.99997520193830535806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993124718785111,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-0.0585239127486374202,-0.1290353201369802971,0.00000000000000000000,1.00000000000000000000,0.00433260488091832558,0.00486832767963134727,0.99997876373478533640,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994107698967127,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,-0.0478909000881478155,-0.1211781605236761233,0.00000000000000000000,1.00000000000000000000,0.00354506650441356466,0.00489575905078617167,0.99998173185653516092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994929401091212,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,-0.0372532747502124089,-0.1148933466396456354,0.00000000000000000000,1.00000000000000000000,0.00275740334975018265,0.00491770487711727915,0.99998410632644962880,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995588433175726,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-0.0266120544724905531,-0.1101802693022423534,0.00000000000000000000,1.00000000000000000000,0.00196964314415273150,0.00493416467234817669,0.99998588716284930733,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996083681544405,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-0.0159682624690252045,-0.1070384715957757582,0.00000000000000000000,1.00000000000000000000,0.00118181361578715139,0.00494513807177834191,0.99998707437947820242,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996414311135595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,-0.0053229258654932803,-0.1054676488989859245,0.00000000000000000000,1.00000000000000000000,0.00039394249349174680,0.00495062483227414872,0.99998766798550153822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996579765102069,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,0.00532292586549328039,-0.1054676488989859245,0.00000000000000000000,1.00000000000000000000,-0.0003939424934917468,0.00495062483227414872,0.99998766798550153822,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996579765102069,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,0.01596826246902520451,-0.1070384715957757582,0.00000000000000000000,1.00000000000000000000,-0.0011818136157871513,0.00494513807177834191,0.99998707437947820242,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996414311135595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,0.02661205447249015421,-0.1101802693022423534,0.00000000000000000000,1.00000000000000000000,-0.0019696431441527323,0.00493416467234817669,0.99998588716284930733,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996083681544405,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,0.03725327475021240897,-0.1148933466396456354,0.00000000000000000000,1.00000000000000000000,-0.0027574033497501826,0.00491770487711727915,0.99998410632644962880,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995588433175726,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,0.04789090008814781557,-0.1211781605236761233,0.00000000000000000000,1.00000000000000000000,-0.0035450665044135646,0.00489575905078617167,0.99998173185653516092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994929401091212,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,0.05852391274863742026,-0.1290353201369802971,0.00000000000000000000,1.00000000000000000000,-0.0043326048809183255,0.00486832767963134727,0.99997876373478533640,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994107698967127,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,0.06915130203548154608,-0.1384655869166047381,0.00000000000000000000,1.00000000000000000000,-0.0051199907532505726,0.00483541137152350766,0.99997520193830535806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993124718785111,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,-0.0577609925286916292,-0.1093267650908639199,0.00000000000000000000,1.00000000000000000000,0.00510687780018119746,0.00407730460910759977,0.99997864746516385014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994990279737976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,-0.0488847118053255744,-0.0997882458961587143,0.00000000000000000000,1.00000000000000000000,0.00432150890463304376,0.00411016569554786999,0.99998221539122467138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995822329037764,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-0.0400034310725046957,-0.0918408709060117428,0.00000000000000000000,1.00000000000000000000,0.00353598770522071600,0.00413755104784618854,0.99998518862144880614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996518259795266,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-0.0311180476951321699,-0.0854838814254137713,0.00000000000000000000,1.00000000000000000000,0.00275034189153587887,0.00415946005856411473,0.99998756717846259967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997076677591394,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,-0.0222294660750391379,-0.0807166704701236664,0.00000000000000000000,1.00000000000000000000,0.00196459915438246257,0.00417589224178094731,0.99998935108037378949,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997496466894517,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,-0.0133385960867913894,-0.0775387827678029190,0.00000000000000000000,1.00000000000000000000,0.00117878718550683205,0.00418684723305186041,0.99999054034076628738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997776791169599,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -20 ,0 ,-0.0044463515140699544,-0.0759499147988377393,0.00000000000000000000,1.00000000000000000000,0.00039293367732863159,0.00419232478942523946,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997917092769057,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,0 ,0.00444635151406995443,-0.0759499147988377393,0.00000000000000000000,1.00000000000000000000,-0.0003929336773286315,0.00419232478942523946,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997917092769057,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,0 ,0.01333859608679138948,-0.0775387827678029190,0.00000000000000000000,1.00000000000000000000,-0.0011787871855068320,0.00418684723305186041,0.99999054034076628738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997776791169599,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -23 ,0 ,0.02222946607503895749,-0.0807166704701236664,0.00000000000000000000,1.00000000000000000000,-0.0019645991543824634,0.00417589224178094731,0.99998935108037378949,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997496466894517,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -24 ,0 ,0.03111804769513216994,-0.0854838814254137713,0.00000000000000000000,1.00000000000000000000,-0.0027503418915358788,0.00415946005856411473,0.99998756717846259967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997076677591394,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,0 ,0.04000343107250469570,-0.0918408709060117428,0.00000000000000000000,1.00000000000000000000,-0.0035359877052207160,0.00413755104784618854,0.99998518862144880614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996518259795266,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,0 ,0.04888471180532557441,-0.0997882458961587143,0.00000000000000000000,1.00000000000000000000,-0.0043215089046330437,0.00411016569554786999,0.99998221539122467138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995822329037764,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -27 ,0 ,0.05776099252869162925,-0.1093267650908639199,0.00000000000000000000,1.00000000000000000000,-0.0051068778001811974,0.00407730460910759977,0.99997864746516385014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994990279737976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -28 ,0 ,-0.0464610105416149929,-0.0849975978430929368,0.00000000000000000000,1.00000000000000000000,0.00509375016303547853,0.00331795763403769719,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996454994543455,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -29 ,0 ,-0.0393219420521473961,-0.0753509896782248861,0.00000000000000000000,1.00000000000000000000,0.00431040050436464101,0.00335076355300120308,0.99998509630449161633,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997135432531649,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,0 ,-0.0321784968116239980,-0.0673135355290724879,0.00000000000000000000,1.00000000000000000000,0.00352689874163562063,0.00337810293159805001,0.99998807463181760279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997705024834431,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,0 ,-0.0250314588727935799,-0.0608844794426780175,0.00000000000000000000,1.00000000000000000000,0.00274327252810932639,0.00339997516283276545,0.99999045726683222223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998162374722596,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -32 ,0 ,-0.0178816193207116218,-0.0560632166159977449,0.00000000000000000000,1.00000000000000000000,0.00195954951826028721,0.00341637976112846818,0.99999224422743049345,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998506364809145,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -33 ,0 ,-0.0107297747097852905,-0.0528492934238696254,0.00000000000000000000,1.00000000000000000000,0.00117575736750670381,0.00342731636230940786,0.99999343552703645610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998736157031089,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -34 ,0 ,-0.0035767255009463367,-0.0512424074335438850,0.00000000000000000000,1.00000000000000000000,0.00039192373194079597,0.00343278472359009228,0.99999403117460128331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998851192813162,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -35 ,0 ,0.00357672550094633671,-0.0512424074335438850,0.00000000000000000000,1.00000000000000000000,-0.0003919237319407959,0.00343278472359009228,0.99999403117460128331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998851192813162,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,0 ,0.01072977470978529052,-0.0528492934238696254,0.00000000000000000000,1.00000000000000000000,-0.0011757573675067038,0.00342731636230940786,0.99999343552703645610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998736157031089,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,0 ,0.01788161932071163917,-0.0560632166159977449,0.00000000000000000000,1.00000000000000000000,-0.0019595495182602876,0.00341637976112846818,0.99999224422743049345,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998506364809145,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -38 ,0 ,0.02503145887279357995,-0.0608844794426780175,0.00000000000000000000,1.00000000000000000000,-0.0027432725281093263,0.00339997516283276545,0.99999045726683222223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998162374722596,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -39 ,0 ,0.03217849681162399805,-0.0673135355290724879,0.00000000000000000000,1.00000000000000000000,-0.0035268987416356206,0.00337810293159805001,0.99998807463181760279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997705024834431,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -40 ,0 ,0.03932194205214743082,-0.0753509896782248861,0.00000000000000000000,1.00000000000000000000,-0.0043104005043646418,0.00335076355300120308,0.99998509630449161633,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997135432531649,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,0 ,0.04646101054161499294,-0.0849975978430929368,0.00000000000000000000,1.00000000000000000000,-0.0050937501630354785,0.00331795763403769719,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996454994543455,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -42 ,0 ,-0.0352516439989982166,-0.0655011979610730099,0.00000000000000000000,1.00000000000000000000,0.00508060774906991894,0.00255736347909776579,0.99998382352762871239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997590337152360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -43 ,0 ,-0.0298358470831469671,-0.0557466618369392499,0.00000000000000000000,1.00000000000000000000,0.00429927960163709044,0.00259011428476110328,0.99998740367211536028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998118478415563,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,0 ,-0.0244162965861969005,-0.0476192627273722551,0.00000000000000000000,1.00000000000000000000,0.00351779954945019655,0.00261740773480791458,0.99999038708533583008,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998561161173711,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,0 ,-0.0189936632645890911,-0.0411182474019981050,0.00000000000000000000,1.00000000000000000000,0.00273619520953059455,0.00263924322268011208,0.99999277378938411509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998916986223775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,0 ,-0.0135686249026792434,-0.0362430132397585785,0.00000000000000000000,1.00000000000000000000,0.00195449420011470321,0.00265562026314863225,0.99999456380194351456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999184834359766,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -47 ,0 ,-0.0081418647507434990,-0.0329931082467662256,0.00000000000000000000,1.00000000000000000000,0.00117272414038376731,0.00266653849229657327,0.99999575713627864015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999363866081694,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -48 ,0 ,-0.0027140699631842315,-0.0313682310870676966,0.00000000000000000000,1.00000000000000000000,0.00039091265019390803,0.00267199766752118693,0.99999635380123463868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999453521850227,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -49 ,0 ,0.00271406996318423153,-0.0313682310870676966,0.00000000000000000000,1.00000000000000000000,-0.0003909126501939080,0.00267199766752118693,0.99999635380123463868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999453521850227,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -50 ,0 ,0.00814186475074349901,-0.0329931082467662256,0.00000000000000000000,1.00000000000000000000,-0.0011727241403837673,0.00266653849229657327,0.99999575713627864015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999363866081694,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -51 ,0 ,0.01356862490267948286,-0.0362430132397585785,0.00000000000000000000,1.00000000000000000000,-0.0019544942001147036,0.00265562026314863225,0.99999456380194351456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999184834359766,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,0 ,0.01899366326458909112,-0.0411182474019981050,0.00000000000000000000,1.00000000000000000000,-0.0027361952095305945,0.00263924322268011208,0.99999277378938411509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998916986223775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -53 ,0 ,0.02441629658619690057,-0.0476192627273722551,0.00000000000000000000,1.00000000000000000000,-0.0035177995494501965,0.00261740773480791458,0.99999038708533583008,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998561161173711,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -54 ,0 ,0.02983584708314785532,-0.0557466618369392499,0.00000000000000000000,1.00000000000000000000,-0.0042992796016370904,0.00259011428476110328,0.99998740367211536028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998118478415563,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -55 ,0 ,0.03525164399899821665,-0.0655011979610730099,0.00000000000000000000,1.00000000000000000000,-0.0050806077490699189,0.00255736347909776579,0.99998382352762871239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997590337152360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -56 ,0 ,-0.0241331842480904737,-0.0508609450884720121,0.00000000000000000000,1.00000000000000000000,0.00506745046530147381,0.00179551514632005234,0.99998554843114662027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998468601916101,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -57 ,0 ,-0.0204266733882428261,-0.0409986395724077842,0.00000000000000000000,1.00000000000000000000,0.00428814611777176592,0.00182821089285328591,0.99998913466487393542,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998843755984125,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -58 ,0 ,-0.0167170320461315739,-0.0327814276616158611,0.00000000000000000000,1.00000000000000000000,0.00350869006429054561,0.00185545845949406078,0.99999212315294638830,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999158953814912,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -59 ,0 ,-0.0130048176946463700,-0.0262085588385477276,0.00000000000000000000,1.00000000000000000000,0.00272910988573079899,0.00187725724011885211,0.99999451391719418325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999412793749797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -60 ,0 ,-0.0092905948302787789,-0.0212794326528603881,0.00000000000000000000,1.00000000000000000000,0.00194943316418205074,0.00189360674984721745,0.99999630697508834487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999604154727421,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -61 ,0 ,-0.0055749334121439828,-0.0179935987421909263,0.00000000000000000000,1.00000000000000000000,0.00116968748267980279,0.00190450662502623675,0.99999750233973472290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999732195828983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,0 ,-0.0018584073010751223,-0.0163507568495243477,0.00000000000000000000,1.00000000000000000000,0.00038990042493520279,0.00190995662321962584,0.99999810001987288199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999796356478327,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -63 ,0 ,0.00185840730107512236,-0.0163507568495243477,0.00000000000000000000,1.00000000000000000000,-0.0003899004249352027,0.00190995662321962584,0.99999810001987288199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999796356478327,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -64 ,0 ,0.00557493341214398280,-0.0179935987421909263,0.00000000000000000000,1.00000000000000000000,-0.0011696874826798027,0.00190450662502623675,0.99999750233973472290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999732195828983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -65 ,0 ,0.00929059483027857950,-0.0212794326528603881,0.00000000000000000000,1.00000000000000000000,-0.0019494331641820513,0.00189360674984721745,0.99999630697508834487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999604154727421,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -66 ,0 ,0.01300481769464637005,-0.0262085588385477276,0.00000000000000000000,1.00000000000000000000,-0.0027291098857307989,0.00187725724011885211,0.99999451391719418325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999412793749797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,0 ,0.01671703204613157398,-0.0327814276616158611,0.00000000000000000000,1.00000000000000000000,-0.0035086900642905456,0.00185545845949406078,0.99999212315294638830,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999158953814912,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -68 ,0 ,0.02042667338824371431,-0.0409986395724077842,0.00000000000000000000,1.00000000000000000000,-0.0042881461177717659,0.00182821089285328591,0.99998913466487393542,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998843755984125,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -69 ,0 ,0.02413318424809047374,-0.0508609450884720121,0.00000000000000000000,1.00000000000000000000,-0.0050674504653014738,0.00179551514632005234,0.99998554843114662027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998468601916101,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -70 ,0 ,-0.0131059260823182602,-0.0411004881237069172,0.00000000000000000000,1.00000000000000000000,0.00505427821850702729,0.00103240560681797902,0.99998669411665308537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999162914828048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -71 ,0 ,-0.0110946703732476316,-0.0311305693336752092,0.00000000000000000000,1.00000000000000000000,0.00427699997388696333,0.00106504634838992741,0.99999028642657261656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999384386155725,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -72 ,0 ,-0.0090809072270111677,-0.0228236747346513765,0.00000000000000000000,1.00000000000000000000,0.00349957022161662177,0.00109224807676278545,0.99999327997862186290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999571519401797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -73 ,0 ,-0.0070650808425428502,-0.0161790565189359816,0.00000000000000000000,1.00000000000000000000,0.00272201650651187872,0.00111401018625538385,0.99999567479436768380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999722910542914,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -74 ,0 ,-0.0050476424381723002,-0.0111961163963447338,0.00000000000000000000,1.00000000000000000000,0.00194436637460643321,0.00113033219233001015,0.99999747089106971742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999837436535017,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -75 ,0 ,-0.0030290486915975655,-0.0078744056242051434,0.00000000000000000000,1.00000000000000000000,0.00116664737288117302,0.00114121373159281895,0.99999866828167593979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999914255113253,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -76 ,0 ,-0.0010097601799680078,-0.0062136250326939304,0.00000000000000000000,1.00000000000000000000,0.00038888704899347098,0.00114665456178830033,0.99999926697482066639,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999952804791973,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -77 ,0 ,0.00100976017996800789,-0.0062136250326939304,0.00000000000000000000,1.00000000000000000000,-0.0003888870489934709,0.00114665456178830033,0.99999926697482066639,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999952804791973,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -78 ,0 ,0.00302904869159756557,-0.0078744056242051434,0.00000000000000000000,1.00000000000000000000,-0.0011666473728811730,0.00114121373159281895,0.99999866828167593979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999914255113253,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -79 ,0 ,0.00504764243817210425,-0.0111961163963447338,0.00000000000000000000,1.00000000000000000000,-0.0019443663746064340,0.00113033219233001015,0.99999747089106971742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999837436535017,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -80 ,0 ,0.00706508084254285021,-0.0161790565189359816,0.00000000000000000000,1.00000000000000000000,-0.0027220165065118787,0.00111401018625538385,0.99999567479436768380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999722910542914,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -81 ,0 ,0.00908090722701116771,-0.0228236747346513765,0.00000000000000000000,1.00000000000000000000,-0.0034995702216166217,0.00109224807676278545,0.99999327997862186290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999571519401797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -82 ,0 ,0.01109467037324679550,-0.0311305693336752092,0.00000000000000000000,1.00000000000000000000,-0.0042769999738869650,0.00106504634838992741,0.99999028642657261656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999384386155725,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -83 ,0 ,0.01310592608231826022,-0.0411004881237069172,0.00000000000000000000,1.00000000000000000000,-0.0050542782185070272,0.00103240560681797902,0.99998669411665308537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999162914828048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -84 ,0 ,-0.0021701677651352838,-0.0362437476573020667,0.00000000000000000000,1.00000000000000000000,0.00504109091522312278,0.00026802780063152662,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999747245437902,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -85 ,0 ,-0.0018400903799371704,-0.0261663692330218050,0.00000000000000000000,1.00000000000000000000,0.00426584109089738362,0.00030061359139585278,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999814333150425,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -86 ,0 ,-0.0015081285665318371,-0.0177699200076863982,0.00000000000000000000,1.00000000000000000000,0.00349043995672192360,0.00032776952664430016,0.99999385467914014835,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999872817716095,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -87 ,0 ,-0.0011746132561055047,-0.0110536548544858739,0.00000000000000000000,1.00000000000000000000,0.00271491502154620712,0.00034949500111104432,0.99999625353781662617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999921292801445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -88 ,0 ,-0.0008398823954302222,-0.0060169776464253331,0.00000000000000000000,1.00000000000000000000,0.00193929379543939612,0.00036578953061679604,0.99999805266690089400,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999958633452479,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -89 ,0 ,-0.0005042793873899099,-0.0026594412529892205,0.00000000000000000000,1.00000000000000000000,0.00116360378941877712,0.00037665275202271964,0.99999925207918294312,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999983995912771,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -90 ,0 ,-0.0001681515320926823,-0.0009807475809615502,0.00000000000000000000,1.00000000000000000000,0.00038787251517899163,0.00038208442324539368,0.99999985178319161782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999996817750798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,0 ,0.00016815153209268231,-0.0009807475809615502,0.00000000000000000000,1.00000000000000000000,-0.0003878725151789916,0.00038208442324539368,0.99999985178319161782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999996817750798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -92 ,0 ,0.00050427938738990991,-0.0026594412529892205,0.00000000000000000000,1.00000000000000000000,-0.0011636037894187771,0.00037665275202271964,0.99999925207918294312,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999983995912771,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -93 ,0 ,0.00083988239542981206,-0.0060169776464253331,0.00000000000000000000,1.00000000000000000000,-0.0019392937954393974,0.00036578953061679604,0.99999805266690089400,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999958633452479,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -94 ,0 ,0.00117461325610550477,-0.0110536548544858739,0.00000000000000000000,1.00000000000000000000,-0.0027149150215462071,0.00034949500111104432,0.99999625353781662617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999921292801445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -95 ,0 ,0.00150812856653183714,-0.0177699200076863982,0.00000000000000000000,1.00000000000000000000,-0.0034904399567219236,0.00032776952664430016,0.99999385467914014835,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999872817716095,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -96 ,0 ,0.00184009037993719298,-0.0261663692330218050,0.00000000000000000000,1.00000000000000000000,-0.0042658410908973844,0.00030061359139585278,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999814333150425,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -97 ,0 ,0.00217016776513528387,-0.0362437476573020667,0.00000000000000000000,1.00000000000000000000,-0.0050410909152231227,0.00026802780063152662,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999747245437902,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -98 ,0 ,0.00867378894596583863,-0.0363149184144127001,0.00000000000000000000,1.00000000000000000000,0.00502788846174509300,-0.0004976253634616102,0.99998723627185037710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000296418329526,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -99 ,0 ,0.00733681129338948929,-0.0261302315220993917,0.00000000000000000000,1.00000000000000000000,0.00425466938951398615,-0.0004650944693405224,0.99999084069581356537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000208416240639,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -100 ,0 ,0.00600109507889677856,-0.0176443536524477084,0.00000000000000000000,1.00000000000000000000,0.00348129920473295171,-0.0004379842820900633,0.99999384434386162645,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000137663664645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -101 ,0 ,0.00466642263561978069,-0.0108565423691527902,0.00000000000000000000,1.00000000000000000000,0.00270780538037642673,-0.0004162954065354200,0.99999624723703628426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000082751903391,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -102 ,0 ,0.00333256928516520098,-0.0057662036849406095,0.00000000000000000000,1.00000000000000000000,0.00193421539063980520,-0.0004000283265173431,0.99999804939217762367,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042554092942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -103 ,0 ,0.00199930489600901430,-0.0023728920789259969,0.00000000000000000000,1.00000000000000000000,0.00116055671066785386,-0.0003891834049146128,0.99999925082191853942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000016225076251,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -104 ,0 ,0.00066639544158892500,-0.0006763105351176216,0.00000000000000000000,1.00000000000000000000,0.00038685681628350946,-0.0003837608836337441,0.99999985153468262666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000003201421350,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -105 ,0 ,-0.0006663954415889250,-0.0006763105351176216,0.00000000000000000000,1.00000000000000000000,-0.0003868568162835094,-0.0003837608836337441,0.99999985153468262666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000003201421350,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -106 ,0 ,-0.0019993048960090143,-0.0023728920789259969,0.00000000000000000000,1.00000000000000000000,-0.0011605567106678538,-0.0003891834049146128,0.99999925082191853942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000016225076251,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -107 ,0 ,-0.0033325692851654039,-0.0057662036849406095,0.00000000000000000000,1.00000000000000000000,-0.0019342153906398060,-0.0004000283265173431,0.99999804939217762367,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042554092942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -108 ,0 ,-0.0046664226356197806,-0.0108565423691527902,0.00000000000000000000,1.00000000000000000000,-0.0027078053803764267,-0.0004162954065354200,0.99999624723703628426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000082751903391,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -109 ,0 ,-0.0060010950788967785,-0.0176443536524477084,0.00000000000000000000,1.00000000000000000000,-0.0034812992047329517,-0.0004379842820900633,0.99999384434386162645,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000137663664645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -110 ,0 ,-0.0073368112933894702,-0.0261302315220993917,0.00000000000000000000,1.00000000000000000000,-0.0042546693895139870,-0.0004650944693405224,0.99999084069581356537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000208416240639,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -111 ,0 ,-0.0086737889459658386,-0.0363149184144127001,0.00000000000000000000,1.00000000000000000000,-0.0050278884617450930,-0.0004976253634616102,0.99998723627185037710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000296418329526,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -112 ,0 ,0.01942563877513757419,-0.0413384717463330594,0.00000000000000000000,1.00000000000000000000,0.00501467076412681796,-0.0012645610081007162,0.99998662689187178820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000886125435499,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -113 ,0 ,0.01643577637158456436,-0.0310466250533483548,0.00000000000000000000,1.00000000000000000000,0.00424348479024318648,-0.0012320849564629514,0.99999023735409264812,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000642321792838,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -114 ,0 ,0.01344655241715156726,-0.0224714424495627770,0.00000000000000000000,1.00000000000000000000,0.00347214790060917585,-0.0012050204720749234,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000441739066445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -115 ,0 ,0.01045786250927579000,-0.0156121841746222032,0.00000000000000000000,1.00000000000000000000,0.00270068753241511786,-0.0011833681593252140,0.99999565295387715657,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000282966029772,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -116 ,0 ,0.00746959523778303012,-0.0104682583751428102,0.00000000000000000000,1.00000000000000000000,0.00192913112407364106,-0.0011671285017129055,0.99999745812885254547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000164873963512,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -117 ,0 ,0.00448163374228885153,-0.0070392211369284486,0.00000000000000000000,1.00000000000000000000,0.00115750611494795023,-0.0011563018618554463,0.99999866157190309134,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000086616237240,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -118 ,0 ,0.00149385726951012181,-0.0053247765085518731,0.00000000000000000000,1.00000000000000000000,0.00038583994508018844,-0.0011508884814915984,0.99999926329134836144,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000047628454922,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -119 ,0 ,-0.0014938572695101218,-0.0053247765085518731,0.00000000000000000000,1.00000000000000000000,-0.0003858399450801884,-0.0011508884814915984,0.99999926329134836144,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000047628454922,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -120 ,0 ,-0.0044816337422888515,-0.0070392211369284486,0.00000000000000000000,1.00000000000000000000,-0.0011575061149479502,-0.0011563018618554463,0.99999866157190309134,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000086616237240,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -121 ,0 ,-0.0074695952377830223,-0.0104682583751428102,0.00000000000000000000,1.00000000000000000000,-0.0019291311240736414,-0.0011671285017129055,0.99999745812885254547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000164873963512,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -122 ,0 ,-0.0104578625092757900,-0.0156121841746222032,0.00000000000000000000,1.00000000000000000000,-0.0027006875324151178,-0.0011833681593252140,0.99999565295387715657,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000282966029772,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -123 ,0 ,-0.0134465524171515672,-0.0224714424495627770,0.00000000000000000000,1.00000000000000000000,-0.0034721479006091758,-0.0012050204720749234,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000441739066445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -124 ,0 ,-0.0164357763715854247,-0.0310466250533483548,0.00000000000000000000,1.00000000000000000000,-0.0042434847902431882,-0.0012320849564629514,0.99999023735409264812,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000642321792838,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -125 ,0 ,-0.0194256387751375741,-0.0413384717463330594,0.00000000000000000000,1.00000000000000000000,-0.0050146707641268179,-0.0012645610081007162,0.99998662689187178820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000886125435499,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -126 ,0 ,0.03008507290358788249,-0.0513391581338997690,0.00000000000000000000,1.00000000000000000000,0.00500143772818010135,-0.0020327862875208677,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001592937824170,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -127 ,0 ,0.02545654358182089863,-0.0409402977951373800,0.00000000000000000000,1.00000000000000000000,0.00423228721338655185,-0.0020003650242100437,0.99998904308232949844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001192615454783,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -128 ,0 ,0.02082802970359465613,-0.0322759322780291277,0.00000000000000000000,1.00000000000000000000,0.00346298597914238134,-0.0019733461975443822,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000861604821693,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -129 ,0 ,0.01619954013400299805,-0.0253453244778393885,0.00000000000000000000,1.00000000000000000000,0.00269356142694453497,-0.0019517304114879381,0.99999446772231692648,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000598492424614,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -130 ,0 ,0.01157107673412261818,-0.0201478846692347939,0.00000000000000000000,1.00000000000000000000,0.00192404095951379146,-0.0019355181491995687,0.99999627591100559431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000402147470595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -131 ,0 ,0.00694263591767913922,-0.0166831705412857946,0.00000000000000000000,1.00000000000000000000,0.00115445198052272694,-0.0019247097730319103,0.99999748136328514558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000271721946774,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -132 ,0 ,0.00231421020761353414,-0.0149508872007979055,0.00000000000000000000,1.00000000000000000000,0.00038482189432357703,-0.0019193055245568452,0.99999808408737089759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000206650529435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -133 ,0 ,-0.0023142102076135341,-0.0149508872007979055,0.00000000000000000000,1.00000000000000000000,-0.0003848218943235770,-0.0019193055245568452,0.99999808408737089759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000206650529435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -134 ,0 ,-0.0069426359176791392,-0.0166831705412857946,0.00000000000000000000,1.00000000000000000000,-0.0011544519805227269,-0.0019247097730319103,0.99999748136328514558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000271721946774,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -135 ,0 ,-0.0115710767341221740,-0.0201478846692347939,0.00000000000000000000,1.00000000000000000000,-0.0019240409595137914,-0.0019355181491995687,0.99999627591100559431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000402147470595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -136 ,0 ,-0.0161995401340029980,-0.0253453244778393885,0.00000000000000000000,1.00000000000000000000,-0.0026935614269445349,-0.0019517304114879381,0.99999446772231692648,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000598492424614,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -137 ,0 ,-0.0208280297035946561,-0.0322759322780291277,0.00000000000000000000,1.00000000000000000000,-0.0034629859791423813,-0.0019733461975443822,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000861604821693,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -138 ,0 ,-0.0254565435818208882,-0.0409402977951373800,0.00000000000000000000,1.00000000000000000000,-0.0042322872133865527,-0.0020003650242100437,0.99998904308232949844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001192615454783,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -139 ,0 ,-0.0300850729035878824,-0.0513391581338997690,0.00000000000000000000,1.00000000000000000000,-0.0050014377281801013,-0.0020327862875208677,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001592937824170,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -140 ,0 ,0.04065177894480398457,-0.0663420097339615794,0.00000000000000000000,1.00000000000000000000,0.00498818925947426029,-0.0028023083877204780,0.99998363238385623574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002494318177923,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -141 ,0 ,0.03439884863242140267,-0.0558362793822584219,0.00000000000000000000,1.00000000000000000000,0.00422107657904061996,-0.0027699418585719168,0.99998725488608786182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001936754124471,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -142 ,0 ,0.02814531072382245313,-0.0470828506634946575,0.00000000000000000000,1.00000000000000000000,0.00345381337495648645,-0.0027429686444921759,0.99999027360079162374,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001474713208153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -143 ,0 ,0.02189128735806861528,-0.0400809891224744446,0.00000000000000000000,1.00000000000000000000,0.00268642701311632607,-0.0027213893490169085,0.99999268854822831453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001106779491237,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -144 ,0 ,0.01563689367383414713,-0.0348301071534400374,0.00000000000000000000,1.00000000000000000000,0.00191894486063988456,-0.0027052044549649048,0.99999449974461274148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000831820252642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -145 ,0 ,0.00938223936520081458,-0.0313297640336747534,0.00000000000000000000,1.00000000000000000000,0.00115139428559989901,-0.0026944143244313988,0.99999570720210939622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000648986006126,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -146 ,0 ,0.00312743023744256696,-0.0295796659325841850,0.00000000000000000000,1.00000000000000000000,0.00038380265674957034,-0.0026890191988158799,0.99999631092882967919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000557710482098,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -147 ,0 ,-0.0031274302374425669,-0.0295796659325841850,0.00000000000000000000,1.00000000000000000000,-0.0003838026567495703,-0.0026890191988158799,0.99999631092882967919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000557710482098,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -148 ,0 ,-0.0093822393652008145,-0.0313297640336747534,0.00000000000000000000,1.00000000000000000000,-0.0011513942855998990,-0.0026944143244313988,0.99999570720210939622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000648986006126,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -149 ,0 ,-0.0156368936738339250,-0.0348301071534400374,0.00000000000000000000,1.00000000000000000000,-0.0019189448606398847,-0.0027052044549649048,0.99999449974461274148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000831820252642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -150 ,0 ,-0.0218912873580686152,-0.0400809891224744446,0.00000000000000000000,1.00000000000000000000,-0.0026864270131163260,-0.0027213893490169085,0.99999268854822831453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001106779491237,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -151 ,0 ,-0.0281453107238224531,-0.0470828506634946575,0.00000000000000000000,1.00000000000000000000,-0.0034538133749564864,-0.0027429686444921759,0.99999027360079162374,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001474713208153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -152 ,0 ,-0.0343988486324213957,-0.0558362793822584219,0.00000000000000000000,1.00000000000000000000,-0.0042210765790406208,-0.0027699418585719168,0.99998725488608786182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001936754124471,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -153 ,0 ,-0.0406517789448039845,-0.0663420097339615794,0.00000000000000000000,1.00000000000000000000,-0.0049881892594742602,-0.0028023083877204780,0.99998363238385623574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002494318177923,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -154 ,0 ,0.05112544091953231950,-0.0863723429352390992,0.00000000000000000000,1.00000000000000000000,0.00497492526333551295,-0.0035731345266406398,0.99998124123819365216,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003668633034976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -155 ,0 ,0.04326242419188671556,-0.0757598836707088080,0.00000000000000000000,1.00000000000000000000,0.00420985280709623276,-0.0035408226774800571,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002953098664875,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -156 ,0 ,0.03539817677627560971,-0.0669175093475321142,0.00000000000000000000,1.00000000000000000000,0.00344463002250721588,-0.0035138950308438200,0.99998789345957583840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002359420250286,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -157 ,0 ,0.02753293409537677788,-0.0598444881553492416,0.00000000000000000000,1.00000000000000000000,0.00267928423995130067,-0.0034923521898375855,0.99999031240914693086,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001886179452412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -158 ,0 ,0.01966692457493831799,-0.0545402346041753763,0.00000000000000000000,1.00000000000000000000,0.00191384279103807381,-0.0034761946369316438,0.99999212660731340296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001532241585664,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -159 ,0 ,0.01180037119889326691,-0.0510043095478574931,0.00000000000000000000,1.00000000000000000000,0.00114833300833110866,-0.0034654227339725842,0.99999333606608420410,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001296755726798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -160 ,0 ,0.00393349306421846532,-0.0492364202131529635,0.00000000000000000000,1.00000000000000000000,0.00038278222507536911,-0.0034600367221895344,0.99999394079346737296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001179154623969,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -161 ,0 ,-0.0039334930642184653,-0.0492364202131529635,0.00000000000000000000,1.00000000000000000000,-0.0003827822250753691,-0.0034600367221895344,0.99999394079346737296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001179154623969,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -162 ,0 ,-0.0118003711988932669,-0.0510043095478574931,0.00000000000000000000,1.00000000000000000000,-0.0011483330083311086,-0.0034654227339725842,0.99999333606608420410,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001296755726798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -163 ,0 ,-0.0196669245749383179,-0.0545402346041753763,0.00000000000000000000,1.00000000000000000000,-0.0019138427910380742,-0.0034761946369316438,0.99999212660731340296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001532241585664,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -164 ,0 ,-0.0275329340953767778,-0.0598444881553492416,0.00000000000000000000,1.00000000000000000000,-0.0026792842399513006,-0.0034923521898375855,0.99999031240914693086,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001886179452412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -165 ,0 ,-0.0353981767762756097,-0.0669175093475321142,0.00000000000000000000,1.00000000000000000000,-0.0034446300225072158,-0.0035138950308438200,0.99998789345957583840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002359420250286,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -166 ,0 ,-0.0432624241918849392,-0.0757598836707088080,0.00000000000000000000,1.00000000000000000000,-0.0042098528070962318,-0.0035408226774800571,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002953098664875,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -167 ,0 ,-0.0511254409195323195,-0.0863723429352390992,0.00000000000000000000,1.00000000000000000000,-0.0049749252633355129,-0.0035731345266406398,0.99998124123819365216,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003668633034976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -168 ,0 ,0.06150573923039394375,-0.1114557609702490625,0.00000000000000000000,1.00000000000000000000,0.00496164564484673394,-0.0043452719543268765,0.99997825010553986757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005195165576878,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -169 ,0 ,0.05204699986745520146,-0.1007367113297423927,0.00000000000000000000,1.00000000000000000000,0.00419861581723808639,-0.0043130147309842232,0.99998188460049075576,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004320926345826,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -170 ,0 ,0.04258640665483895415,-0.0918055068772783561,0.00000000000000000000,1.00000000000000000000,0.00343543585608166533,-0.0042861326066395075,0.99998491331007421933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003594998306652,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -171 ,0 ,0.03312430831183234281,-0.0846614184270701730,0.00000000000000000000,1.00000000000000000000,0.00267213305633923290,-0.0042646261839776279,0.99998733625403468661,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003015960719494,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -172 ,0 ,0.02366104656408118261,-0.0793038625894410958,0.00000000000000000000,1.00000000000000000000,0.00190873471420086081,-0.0042484959451296877,0.99998915344817351780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002582676970632,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -173 ,0 ,0.01419695769799116796,-0.0757324018003851517,0.00000000000000000000,1.00000000000000000000,0.00114526812681179355,-0.0042377422516848249,0.99999036490434511925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002294294699822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -174 ,0 ,0.00473237411488996746,-0.0739467443366051968,0.00000000000000000000,1.00000000000000000000,0.00038176059199945057,-0.0042323653447003794,0.99999097063045472300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002150245618395,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -175 ,0 ,-0.0047323741148899674,-0.0739467443366051968,0.00000000000000000000,1.00000000000000000000,-0.0003817605919994505,-0.0042323653447003794,0.99999097063045472300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002150245618395,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -176 ,0 ,-0.0141969576979911679,-0.0757324018003851517,0.00000000000000000000,1.00000000000000000000,-0.0011452681268117935,-0.0042377422516848249,0.99999036490434511925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002294294699822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -177 ,0 ,-0.0236610465640816267,-0.0793038625894410958,0.00000000000000000000,1.00000000000000000000,-0.0019087347142008616,-0.0042484959451296877,0.99998915344817351780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002582676970632,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -178 ,0 ,-0.0331243083118323428,-0.0846614184270701730,0.00000000000000000000,1.00000000000000000000,-0.0026721330563392329,-0.0042646261839776279,0.99998733625403468661,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003015960719494,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -179 ,0 ,-0.0425864066548389541,-0.0918055068772783561,0.00000000000000000000,1.00000000000000000000,-0.0034354358560816653,-0.0042861326066395075,0.99998491331007421933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003594998306652,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -180 ,0 ,-0.0520469998674552014,-0.1007367113297423927,0.00000000000000000000,1.00000000000000000000,-0.0041986158172380872,-0.0043130147309842232,0.99998188460049075576,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004320926345826,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -181 ,0 ,-0.0615057392303939437,-0.1114557609702490625,0.00000000000000000000,1.00000000000000000000,-0.0049616456448467339,-0.0043452719543268765,0.99997825010553986757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005195165576878,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -182 ,0 ,0.07179235063644029413,-0.1416181565235676287,0.00000000000000000000,1.00000000000000000000,0.00494835030884669888,-0.0051187279531195563,0.99997465590551981584,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007154128179536,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -183 ,0 ,0.06075230218331690440,-0.1307926524850087646,0.00000000000000000000,1.00000000000000000000,0.00418736552894469465,-0.0050865253014043838,0.99997829637961888060,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006120443504187,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -184 ,0 ,0.04970977663104799576,-0.1217727312345871781,0.00000000000000000000,1.00000000000000000000,0.00342623080979814233,-0.0050596886541950389,0.99998133007229705881,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005261648766463,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -185 ,0 ,0.03866523601166032414,-0.1145576662006838192,0.00000000000000000000,1.00000000000000000000,0.00266497341103845387,-0.0050382186137551106,0.99998375700304165114,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004576320716296,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -186 ,0 ,0.02761913536669712357,-0.1091468760944830085,0.00000000000000000000,1.00000000000000000000,0.00190362059352693893,-0.0050221156618697887,0.99998557718744840450,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004063320848217,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -187 ,0 ,0.01657192430101386490,-0.1055399249195162203,0.00000000000000000000,1.00000000000000000000,0.00114219961908111362,-0.0050113801598748834,0.99998679063721784832,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003721795292221,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -188 ,0 ,0.00552404853617350418,-0.1037365220024588641,0.00000000000000000000,1.00000000000000000000,0.00038073775020152082,-0.0050060123486569485,0.99998739736015196388,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003551174831954,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -189 ,0 ,-0.0055240485361735041,-0.1037365220024588641,0.00000000000000000000,1.00000000000000000000,-0.0003807377502015208,-0.0050060123486569485,0.99998739736015196388,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003551174831954,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -190 ,0 ,-0.0165719243010138649,-0.1055399249195162203,0.00000000000000000000,1.00000000000000000000,-0.0011421996190811136,-0.0050113801598748834,0.99998679063721784832,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003721795292221,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -191 ,0 ,-0.0276191353666966794,-0.1091468760944830085,0.00000000000000000000,1.00000000000000000000,-0.0019036205935269389,-0.0050221156618697887,0.99998557718744840450,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004063320848217,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -192 ,0 ,-0.0386652360116603241,-0.1145576662006838192,0.00000000000000000000,1.00000000000000000000,-0.0026649734110384538,-0.0050382186137551106,0.99998375700304165114,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004576320716296,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -193 ,0 ,-0.0497097766310479957,-0.1217727312345871781,0.00000000000000000000,1.00000000000000000000,-0.0034262308097981423,-0.0050596886541950389,0.99998133007229705881,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005261648766463,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -194 ,0 ,-0.0607523021833160162,-0.1307926524850087646,0.00000000000000000000,1.00000000000000000000,-0.0041873655289446946,-0.0050865253014043838,0.99997829637961888060,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0006120443504187,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -195 ,0 ,-0.0717923506364402941,-0.1416181565235676287,0.00000000000000000000,1.00000000000000000000,-0.0049483503088466988,-0.0051187279531195563,0.99997465590551981584,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0007154128179536,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -196 ,0 ,-0.0691513020354815460,-0.1384655869166047381,0.00000000000000000000,1.00000000000000000000,0.00511999075325057263,0.00483541137152350766,0.99997520193830535806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9993124718785111,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -197 ,0 ,-0.0585239127486374202,-0.1290353201369802971,0.00000000000000000000,1.00000000000000000000,0.00433260488091832558,0.00486832767963134727,0.99997876373478533640,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994107698967127,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -198 ,0 ,-0.0478909000881478155,-0.1211781605236761233,0.00000000000000000000,1.00000000000000000000,0.00354506650441356466,0.00489575905078617167,0.99998173185653516092,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994929401091212,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -199 ,0 ,-0.0372532747502124089,-0.1148933466396456354,0.00000000000000000000,1.00000000000000000000,0.00275740334975018265,0.00491770487711727915,0.99998410632644962880,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995588433175726,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/toroid_swapped.rayui.csv b/Intern/RAY-Core/tests/output/toroid_swapped.rayui.csv deleted file mode 100644 index 2c8afaf18..000000000 --- a/Intern/RAY-Core/tests/output/toroid_swapped.rayui.csv +++ /dev/null @@ -1,169 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.0577609925286904010,-0.1093267650906570020,0.00000000000000000000,-1.0000000000000000000,0.00510687780018120006,0.00407730460910770992,0.99997864746516396117,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005009720247244330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -1 ,0 ,-0.0488847118053232984,-0.0997882458956960011,0.00000000000000000000,-1.0000000000000000000,0.00432150890463304029,0.00411016569554754039,0.99998221539122500445,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004177670966782899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -2 ,0 ,-0.0400034310725038977,-0.0918408709061324934,0.00000000000000000000,-1.0000000000000000000,0.00353598770522071991,0.00413755104784627007,0.99998518862144902819,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003481740195638849,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -3 ,0 ,-0.0311180476951338005,-0.0854838814252695949,0.00000000000000000000,-1.0000000000000000000,0.00275034189153588017,0.00415946005856430035,0.99998756717846304375,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002923322431342970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -4 ,0 ,-0.0222294660750379999,-0.0807166704695631981,0.00000000000000000000,-1.0000000000000000000,0.00196459915438245997,0.00417589224178066976,0.99998935108037401153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002503533096387399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -5 ,0 ,-0.0133385960867904006,-0.0775387827674141050,0.00000000000000000000,-1.0000000000000000000,0.00117878718550683009,0.00418684723305162969,0.99999054034076595431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002223208807663470,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -6 ,0 ,-0.0044463515140700203,-0.0759499147982660993,0.00000000000000000000,-1.0000000000000000000,0.00039293367732863099,0.00419232478942483006,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002082907230942510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -7 ,0 ,0.00444635151407002035,-0.0759499147982660993,0.00000000000000000000,-1.0000000000000000000,-0.0003929336773286309,0.00419232478942483006,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002082907230942510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -8 ,0 ,0.01333859608679040069,-0.0775387827674141050,0.00000000000000000000,-1.0000000000000000000,-0.0011787871855068300,0.00418684723305162969,0.99999054034076595431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002223208807663470,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -9 ,0 ,0.02222946607503839891,-0.0807166704695631981,0.00000000000000000000,-1.0000000000000000000,-0.0019645991543824599,0.00417589224178066976,0.99998935108037401153,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002503533096387399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -10 ,0 ,0.03111804769513380058,-0.0854838814252695949,0.00000000000000000000,-1.0000000000000000000,-0.0027503418915358801,0.00415946005856430035,0.99998756717846304375,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002923322431342970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -11 ,0 ,0.04000343107250389773,-0.0918408709061324934,0.00000000000000000000,-1.0000000000000000000,-0.0035359877052207199,0.00413755104784627007,0.99998518862144902819,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003481740195638849,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -12 ,0 ,0.04888471180532329846,-0.0997882458956960011,0.00000000000000000000,-1.0000000000000000000,-0.0043215089046330402,0.00411016569554754039,0.99998221539122500445,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0004177670966782899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -13 ,0 ,0.05776099252869040107,-0.1093267650906570020,0.00000000000000000000,-1.0000000000000000000,-0.0051068778001812000,0.00407730460910770992,0.99997864746516396117,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0005009720247244330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -14 ,0 ,-0.0464610105416242979,-0.0849975978430772965,0.00000000000000000000,-1.0000000000000000000,0.00509375016303548026,0.00331795763403813998,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003545005472460619,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -15 ,0 ,-0.0393219420521547027,-0.0753509896778355031,0.00000000000000000000,-1.0000000000000000000,0.00431040050436462974,0.00335076355300085006,0.99998509630449194940,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002864567493361390,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -16 ,0 ,-0.0321784968116300973,-0.0673135355299713938,0.00000000000000000000,-1.0000000000000000000,0.00352689874163562020,0.00337810293159821004,0.99998807463181804688,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002294975150789469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -17 ,0 ,-0.0250314588727910992,-0.0608844794425590987,0.00000000000000000000,-1.0000000000000000000,0.00274327252810932986,0.00339997516283250004,0.99999045726683200019,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001837625285361359,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -18 ,0 ,-0.0178816193207143002,-0.0560632166163559028,0.00000000000000000000,-1.0000000000000000000,0.00195954951826028981,0.00341637976112851978,0.99999224422743104856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001493635206770699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -19 ,0 ,-0.0107297747097802997,-0.0528492934225174987,0.00000000000000000000,-1.0000000000000000000,0.00117575736750669991,0.00342731636230744979,0.99999343552703701121,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001263842979142280,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -20 ,0 ,-0.0035767255009469000,-0.0512424074334947021,0.00000000000000000000,-1.0000000000000000000,0.00039192373194079700,0.00343278472359046004,0.99999403117460095025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001148807194795149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -21 ,0 ,0.00357672550094690006,-0.0512424074334947021,0.00000000000000000000,-1.0000000000000000000,-0.0003919237319407970,0.00343278472359046004,0.99999403117460095025,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001148807194795149,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -22 ,0 ,0.01072977470978029972,-0.0528492934225174987,0.00000000000000000000,-1.0000000000000000000,-0.0011757573675066999,0.00342731636230744979,0.99999343552703701121,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001263842979142280,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -23 ,0 ,0.01788161932071469922,-0.0560632166163559028,0.00000000000000000000,-1.0000000000000000000,-0.0019595495182602898,0.00341637976112851978,0.99999224422743104856,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001493635206770699,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -24 ,0 ,0.02503145887279109929,-0.0608844794425590987,0.00000000000000000000,-1.0000000000000000000,-0.0027432725281093298,0.00339997516283250004,0.99999045726683200019,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001837625285361359,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -25 ,0 ,0.03217849681163009734,-0.0673135355299713938,0.00000000000000000000,-1.0000000000000000000,-0.0035268987416356202,0.00337810293159821004,0.99998807463181804688,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002294975150789469,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -26 ,0 ,0.03932194205215380072,-0.0753509896778355031,0.00000000000000000000,-1.0000000000000000000,-0.0043104005043646401,0.00335076355300085006,0.99998509630449194940,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002864567493361390,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -27 ,0 ,0.04646101054162429799,-0.0849975978430772965,0.00000000000000000000,-1.0000000000000000000,-0.0050937501630354802,0.00331795763403813998,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0003545005472460619,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -28 ,0 ,-0.0352516439989943031,-0.0655011979605548966,0.00000000000000000000,-1.0000000000000000000,0.00508060774906991027,0.00255736347909710009,0.99998382352762904545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002409662868103620,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -29 ,0 ,-0.0298358470831549989,-0.0557466618369688998,0.00000000000000000000,-1.0000000000000000000,0.00429927960163709998,0.00259011428476171997,0.99998740367211602642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001881521592395069,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -30 ,0 ,-0.0244162965861974001,-0.0476192627268762977,0.00000000000000000000,-1.0000000000000000000,0.00351779954945020002,0.00261740773480795014,0.99999038708533605213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001438838844478600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -31 ,0 ,-0.0189936632645885984,-0.0411182474018447971,0.00000000000000000000,-1.0000000000000000000,0.00273619520953058978,0.00263924322267979983,0.99999277378938400406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001083013777360970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -32 ,0 ,-0.0135686249026815992,-0.0362430132398103982,0.00000000000000000000,-1.0000000000000000000,0.00195449420011470018,0.00265562026314864006,0.99999456380194395865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000815165665244421,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -33 ,0 ,-0.0081418647507447393,-0.0329931082469517023,0.00000000000000000000,-1.0000000000000000000,0.00117272414038376991,0.00266653849229652991,0.99999575713627897322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000636133914895253,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -34 ,0 ,-0.0027140699631844102,-0.0313682310867159988,0.00000000000000000000,-1.0000000000000000000,0.00039091265019390797,0.00267199766752120992,0.99999635380123497174,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000546478172509523,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -35 ,0 ,0.00271406996318441021,-0.0313682310867159988,0.00000000000000000000,-1.0000000000000000000,-0.0003909126501939079,0.00267199766752120992,0.99999635380123497174,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000546478172509523,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -36 ,0 ,0.00814186475074473933,-0.0329931082469517023,0.00000000000000000000,-1.0000000000000000000,-0.0011727241403837699,0.00266653849229652991,0.99999575713627897322,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000636133914895253,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -37 ,0 ,0.01356862490268180045,-0.0362430132398103982,0.00000000000000000000,-1.0000000000000000000,-0.0019544942001147001,0.00265562026314864006,0.99999456380194395865,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000815165665244421,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -38 ,0 ,0.01899366326458859846,-0.0411182474018447971,0.00000000000000000000,-1.0000000000000000000,-0.0027361952095305897,0.00263924322267979983,0.99999277378938400406,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001083013777360970,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -39 ,0 ,0.02441629658619740017,-0.0476192627268762977,0.00000000000000000000,-1.0000000000000000000,-0.0035177995494502000,0.00261740773480795014,0.99999038708533605213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001438838844478600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -40 ,0 ,0.02983584708315410033,-0.0557466618369688998,0.00000000000000000000,-1.0000000000000000000,-0.0042992796016370999,0.00259011428476171997,0.99998740367211602642,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001881521592395069,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -41 ,0 ,0.03525164399899430311,-0.0655011979605548966,0.00000000000000000000,-1.0000000000000000000,-0.0050806077490699102,0.00255736347909710009,0.99998382352762904545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0002409662868103620,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -42 ,0 ,-0.0241331842480994006,-0.0508609450882622007,0.00000000000000000000,-1.0000000000000000000,0.00506745046530147034,0.00179551514632003998,0.99998554843114695334,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001531398100951259,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -43 ,0 ,-0.0204266733882399013,-0.0409986395723440991,0.00000000000000000000,-1.0000000000000000000,0.00428814611777175985,0.00182821089285268006,0.99998913466487404644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001156244004505420,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -44 ,0 ,-0.0167170320461402996,-0.0327814276622308969,0.00000000000000000000,-1.0000000000000000000,0.00350869006429054995,0.00185545845949438995,0.99999212315294605524,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000841046196455863,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -45 ,0 ,-0.0130048176946449007,-0.0262085588385216998,0.00000000000000000000,-1.0000000000000000000,0.00272910988573079986,0.00187725724011881004,0.99999451391719396120,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000587206258160222,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -46 ,0 ,-0.0092905948302861602,-0.0212794326542181007,0.00000000000000000000,-1.0000000000000000000,0.00194943316418206007,0.00189360674984840010,0.99999630697508801180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000395845274852036,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -47 ,0 ,-0.0055749334121419896,-0.0179935987412232004,0.00000000000000000000,-1.0000000000000000000,0.00116968748267979997,0.00190450662502467007,0.99999750233973494495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000267804209670430,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -48 ,0 ,-0.0018584073010747799,-0.0163507568490892998,0.00000000000000000000,-1.0000000000000000000,0.00038990042493520300,0.00190995662321969002,0.99999810001987299301,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000203643520535479,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -49 ,0 ,0.00185840730107477997,-0.0163507568490892998,0.00000000000000000000,-1.0000000000000000000,-0.0003899004249352030,0.00190995662321969002,0.99999810001987299301,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000203643520535479,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -50 ,0 ,0.00557493341214198960,-0.0179935987412232004,0.00000000000000000000,-1.0000000000000000000,-0.0011696874826797999,0.00190450662502467007,0.99999750233973494495,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000267804209670430,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -51 ,0 ,0.00929059483028616024,-0.0212794326542181007,0.00000000000000000000,-1.0000000000000000000,-0.0019494331641820600,0.00189360674984840010,0.99999630697508801180,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000395845274852036,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -52 ,0 ,0.01300481769464490074,-0.0262085588385216998,0.00000000000000000000,-1.0000000000000000000,-0.0027291098857307998,0.00187725724011881004,0.99999451391719396120,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000587206258160222,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -53 ,0 ,0.01671703204614029963,-0.0327814276622308969,0.00000000000000000000,-1.0000000000000000000,-0.0035086900642905499,0.00185545845949438995,0.99999212315294605524,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000841046196455863,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -54 ,0 ,0.02042667338823990139,-0.0409986395723440991,0.00000000000000000000,-1.0000000000000000000,-0.0042881461177717598,0.00182821089285268006,0.99998913466487404644,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001156244004505420,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -55 ,0 ,0.02413318424809940063,-0.0508609450882622007,0.00000000000000000000,-1.0000000000000000000,-0.0050674504653014703,0.00179551514632003998,0.99998554843114695334,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0001531398100951259,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -56 ,0 ,-0.0131059260823142998,-0.0411004881235816979,0.00000000000000000000,-1.0000000000000000000,0.00505427821850702990,0.00103240560681800005,0.99998669411665297435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000837085160583228,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -57 ,0 ,-0.0110946703732456991,-0.0311305693342600990,0.00000000000000000000,-1.0000000000000000000,0.00427699997388695987,0.00106504634838954989,0.99999028642657294962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000615613813579330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -58 ,0 ,-0.0090809072270157092,-0.0228236747346212999,0.00000000000000000000,-1.0000000000000000000,0.00349957022161663001,0.00109224807676316991,0.99999327997862197392,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000428480609571124,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -59 ,0 ,-0.0070650808425507501,-0.0161790565194964014,0.00000000000000000000,-1.0000000000000000000,0.00272201650651188002,0.00111401018625559007,0.99999567479436801686,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000277089477549453,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -60 ,0 ,-0.0050476424381729100,-0.0111961163957836999,0.00000000000000000000,-1.0000000000000000000,0.00194436637460642996,0.00113033219232972002,0.99999747089107005049,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000162563454750852,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -61 ,0 ,-0.0030290486915984802,-0.0078744056239890003,0.00000000000000000000,-1.0000000000000000000,0.00116664737288116999,0.00114121373159283999,0.99999866828167605081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000085744870830239,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -62 ,0 ,-0.0010097601799682900,-0.0062136250328894701,0.00000000000000000000,-1.0000000000000000000,0.00038888704899347098,0.00114665456178814008,0.99999926697482099946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000047195218257911,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -63 ,0 ,0.00100976017996829000,-0.0062136250328894701,0.00000000000000000000,-1.0000000000000000000,-0.0003888870489934709,0.00114665456178814008,0.99999926697482099946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000047195218257911,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -64 ,0 ,0.00302904869159848020,-0.0078744056239890003,0.00000000000000000000,-1.0000000000000000000,-0.0011666473728811699,0.00114121373159283999,0.99999866828167605081,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000085744870830239,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -65 ,0 ,0.00504764243817202012,-0.0111961163957836999,0.00000000000000000000,-1.0000000000000000000,-0.0019443663746064299,0.00113033219232972002,0.99999747089107005049,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000162563454750852,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -66 ,0 ,0.00706508084255075014,-0.0161790565194964014,0.00000000000000000000,-1.0000000000000000000,-0.0027220165065118800,0.00111401018625559007,0.99999567479436801686,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000277089477549453,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -67 ,0 ,0.00908090722701570922,-0.0228236747346212999,0.00000000000000000000,-1.0000000000000000000,-0.0034995702216166300,0.00109224807676316991,0.99999327997862197392,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000428480609571124,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -68 ,0 ,0.01109467037324569915,-0.0311305693342600990,0.00000000000000000000,-1.0000000000000000000,-0.0042769999738869598,0.00106504634838954989,0.99999028642657294962,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000615613813579330,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -69 ,0 ,0.01310592608231429985,-0.0411004881235816979,0.00000000000000000000,-1.0000000000000000000,-0.0050542782185070299,0.00103240560681800005,0.99998669411665297435,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000837085160583228,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -70 ,0 ,-0.0021701677651400101,-0.0362437476570783012,0.00000000000000000000,-1.0000000000000000000,0.00504109091522312018,0.00026802780063103797,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000252754572329649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -71 ,0 ,-0.0018400903799431500,-0.0261663692328015992,0.00000000000000000000,-1.0000000000000000000,0.00426584109089738015,0.00030061359139585397,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000185666882543955,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -72 ,0 ,-0.0015081285665319299,-0.0177699200075248989,0.00000000000000000000,-1.0000000000000000000,0.00349043995672192013,0.00032776952664412300,0.99999385467914003733,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000127182294136218,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -73 ,0 ,-0.0011746132561110099,-0.0110536548548784991,0.00000000000000000000,-1.0000000000000000000,0.00271491502154621016,0.00034949500111161602,0.99999625353781695924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000078707186048632,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -74 ,0 ,-0.0008398823954327560,-0.0060169776463137600,0.00000000000000000000,-1.0000000000000000000,0.00193929379543940003,0.00036578953061691698,0.99999805266690100502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000041366560026290,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -75 ,0 ,-0.0005042793873859530,-0.0026594412515151800,0.00000000000000000000,-1.0000000000000000000,0.00116360378941876996,0.00037665275202092301,0.99999925207918305414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000016004094050003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -76 ,0 ,-0.0001681515320923749,-0.0009807475807314110,0.00000000000000000000,-1.0000000000000000000,0.00038787251517899098,0.00038208442324511000,0.99999985178319195089,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000003182238970111,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -77 ,0 ,0.00016815153209237499,-0.0009807475807314110,0.00000000000000000000,-1.0000000000000000000,-0.0003878725151789909,0.00038208442324511000,0.99999985178319195089,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000003182238970111,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -78 ,0 ,0.00050427938738595301,-0.0026594412515151800,0.00000000000000000000,-1.0000000000000000000,-0.0011636037894187699,0.00037665275202092301,0.99999925207918305414,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000016004094050003,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -79 ,0 ,0.00083988239543231202,-0.0060169776463137600,0.00000000000000000000,-1.0000000000000000000,-0.0019392937954394000,0.00036578953061691698,0.99999805266690100502,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000041366560026290,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -80 ,0 ,0.00117461325611100991,-0.0110536548548784991,0.00000000000000000000,-1.0000000000000000000,-0.0027149150215462101,0.00034949500111161602,0.99999625353781695924,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000078707186048632,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -81 ,0 ,0.00150812856653192994,-0.0177699200075248989,0.00000000000000000000,-1.0000000000000000000,-0.0034904399567219201,0.00032776952664412300,0.99999385467914003733,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000127182294136218,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -82 ,0 ,0.00184009037994315003,-0.0261663692328015992,0.00000000000000000000,-1.0000000000000000000,-0.0042658410908973801,0.00030061359139585397,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000185666882543955,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -83 ,0 ,0.00217016776514001013,-0.0362437476570783012,0.00000000000000000000,-1.0000000000000000000,-0.0050410909152231201,0.00026802780063103797,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,-0.0000252754572329649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -84 ,0 ,0.00867378894596803999,-0.0363149184143784012,0.00000000000000000000,-1.0000000000000000000,0.00502788846174509040,-0.0004976253634616509,0.99998723627185004403,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002964183101994419,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -85 ,0 ,0.00733681129338403965,-0.0261302315219580985,0.00000000000000000000,-1.0000000000000000000,0.00425466938951398008,-0.0004650944693407880,0.99999084069581400946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002084162156279489,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -86 ,0 ,0.00600109507887492017,-0.0176443536542283015,0.00000000000000000000,-1.0000000000000000000,0.00348129920473297990,-0.0004379842820879940,0.99999384434386195952,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001376636487293579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -87 ,0 ,0.00466642263560945996,-0.0108565423700690000,0.00000000000000000000,-1.0000000000000000000,0.00270780538037644017,-0.0004162954065340119,0.99999624723703695039,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000827518999813037,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -88 ,0 ,0.00333256928516200996,-0.0057662036846696795,0.00000000000000000000,-1.0000000000000000000,0.00193421539063980997,-0.0004000283265169489,0.99999804939217795674,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000425540827109215,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -89 ,0 ,0.00199930489600830003,-0.0023728920789584701,0.00000000000000000000,-1.0000000000000000000,0.00116055671066785993,-0.0003891834049142560,0.99999925082191898351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000162250796620356,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -90 ,0 ,0.00066639544158880704,-0.0006763105347092900,0.00000000000000000000,-1.0000000000000000000,0.00038685681628350897,-0.0003837608836338440,0.99999985153468295973,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000032014042972150,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -91 ,0 ,-0.0006663954415888070,-0.0006763105347092900,0.00000000000000000000,-1.0000000000000000000,-0.0003868568162835089,-0.0003837608836338440,0.99999985153468295973,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000032014042972150,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -92 ,0 ,-0.0019993048960083000,-0.0023728920789584701,0.00000000000000000000,-1.0000000000000000000,-0.0011605567106678599,-0.0003891834049142560,0.99999925082191898351,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000162250796620356,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -93 ,0 ,-0.0033325692851617900,-0.0057662036846696795,0.00000000000000000000,-1.0000000000000000000,-0.0019342153906398099,-0.0004000283265169489,0.99999804939217795674,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000425540827109215,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -94 ,0 ,-0.0046664226356094599,-0.0108565423700690000,0.00000000000000000000,-1.0000000000000000000,-0.0027078053803764401,-0.0004162954065340119,0.99999624723703695039,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000827518999813037,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -95 ,0 ,-0.0060010950788749201,-0.0176443536542283015,0.00000000000000000000,-1.0000000000000000000,-0.0034812992047329799,-0.0004379842820879940,0.99999384434386195952,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001376636487293579,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -96 ,0 ,-0.0073368112933840396,-0.0261302315219580985,0.00000000000000000000,-1.0000000000000000000,-0.0042546693895139800,-0.0004650944693407880,0.99999084069581400946,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002084162156279489,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -97 ,0 ,-0.0086737889459680399,-0.0363149184143784012,0.00000000000000000000,-1.0000000000000000000,-0.0050278884617450904,-0.0004976253634616509,0.99998723627185004403,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002964183101994419,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -98 ,0 ,0.01942563877513680051,-0.0413384717459934977,0.00000000000000000000,-1.0000000000000000000,0.00501467076412681969,-0.0012645610081005698,0.99998662689187201024,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008861254286784969,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -99 ,0 ,0.01643577637159939972,-0.0310466250516901014,0.00000000000000000000,-1.0000000000000000000,0.00424348479024315959,-0.0012320849564647399,0.99999023735409298119,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006423217803330770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -100 ,0 ,0.01344655241715080051,-0.0224714424491252000,0.00000000000000000000,-1.0000000000000000000,0.00347214790060916978,-0.0012050204720752699,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004417390425714980,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -101 ,0 ,0.01045786250927660011,-0.0156121841737741993,0.00000000000000000000,-1.0000000000000000000,0.00270068753241512003,-0.0011833681593253499,0.99999565295387704555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002829660218139910,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -102 ,0 ,0.00746959523778390008,-0.0104682583740509996,0.00000000000000000000,-1.0000000000000000000,0.00192913112407363997,-0.0011671285017129100,0.99999745812885298956,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001648739475967890,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -103 ,0 ,0.00448163374228727033,-0.0070392211367769101,0.00000000000000000000,-1.0000000000000000000,0.00115750611494795001,-0.0011563018618550599,0.99999866157190298032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000866162201873522,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -104 ,0 ,0.00149385726950967989,-0.0053247765085211503,0.00000000000000000000,-1.0000000000000000000,0.00038583994508018898,-0.0011508884814914500,0.99999926329134802838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000476284503747593,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -105 ,0 ,-0.0014938572695096798,-0.0053247765085211503,0.00000000000000000000,-1.0000000000000000000,-0.0003858399450801889,-0.0011508884814914500,0.99999926329134802838,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000476284503747593,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -106 ,0 ,-0.0044816337422872703,-0.0070392211367769101,0.00000000000000000000,-1.0000000000000000000,-0.0011575061149479500,-0.0011563018618550599,0.99999866157190298032,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00000866162201873522,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -107 ,0 ,-0.0074695952377841203,-0.0104682583740509996,0.00000000000000000000,-1.0000000000000000000,-0.0019291311240736399,-0.0011671285017129100,0.99999745812885298956,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00001648739475967890,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -108 ,0 ,-0.0104578625092766001,-0.0156121841737741993,0.00000000000000000000,-1.0000000000000000000,-0.0027006875324151200,-0.0011833681593253499,0.99999565295387704555,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002829660218139910,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -109 ,0 ,-0.0134465524171508005,-0.0224714424491252000,0.00000000000000000000,-1.0000000000000000000,-0.0034721479006091697,-0.0012050204720752699,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004417390425714980,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -110 ,0 ,-0.0164357763715993997,-0.0310466250516901014,0.00000000000000000000,-1.0000000000000000000,-0.0042434847902431595,-0.0012320849564647399,0.99999023735409298119,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006423217803330770,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -111 ,0 ,-0.0194256387751368005,-0.0413384717459934977,0.00000000000000000000,-1.0000000000000000000,-0.0050146707641268196,-0.0012645610081005698,0.99998662689187201024,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008861254286784969,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -112 ,0 ,0.03008507290358690064,-0.0513391581335573971,0.00000000000000000000,-1.0000000000000000000,0.00500143772818009962,-0.0020327862875212702,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015929378218970698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -113 ,0 ,0.02545654358181699897,-0.0409402977946283011,0.00000000000000000000,-1.0000000000000000000,0.00423228721338655012,-0.0020003650242103598,0.99998904308233005355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011926154593311400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -114 ,0 ,0.02082802970359680025,-0.0322759322777586010,0.00000000000000000000,-1.0000000000000000000,0.00346298597914238004,-0.0019733461975441598,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008616048194198809,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -115 ,0 ,0.01619954013401070022,-0.0253453244766038005,0.00000000000000000000,-1.0000000000000000000,0.00269356142694451980,-0.0019517304114895200,0.99999446772231703750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005984924280255649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -116 ,0 ,0.01157107673412080019,-0.0201478846690005992,0.00000000000000000000,-1.0000000000000000000,0.00192404095951378994,-0.0019355181491999299,0.99999627591100603840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004021474501314510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -117 ,0 ,0.00694263591767940984,-0.0166831705406366992,0.00000000000000000000,-1.0000000000000000000,0.00115445198052272998,-0.0019247097730322199,0.99999748136328503456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002717219479109190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -118 ,0 ,0.00231421020761291007,-0.0149508872007284993,0.00000000000000000000,-1.0000000000000000000,0.00038482189432357698,-0.0019193055245567398,0.99999808408737100862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002066505282982690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -119 ,0 ,-0.0023142102076129100,-0.0149508872007284993,0.00000000000000000000,-1.0000000000000000000,-0.0003848218943235769,-0.0019193055245567398,0.99999808408737100862,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002066505282982690,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -120 ,0 ,-0.0069426359176794098,-0.0166831705406366992,0.00000000000000000000,-1.0000000000000000000,-0.0011544519805227299,-0.0019247097730322199,0.99999748136328503456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00002717219479109190,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -121 ,0 ,-0.0115710767341217005,-0.0201478846690005992,0.00000000000000000000,-1.0000000000000000000,-0.0019240409595137899,-0.0019355181491999299,0.99999627591100603840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00004021474501314510,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -122 ,0 ,-0.0161995401340107002,-0.0253453244766038005,0.00000000000000000000,-1.0000000000000000000,-0.0026935614269445198,-0.0019517304114895200,0.99999446772231703750,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005984924280255649,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -123 ,0 ,-0.0208280297035968002,-0.0322759322777586010,0.00000000000000000000,-1.0000000000000000000,-0.0034629859791423800,-0.0019733461975441598,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008616048194198809,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -124 ,0 ,-0.0254565435818169989,-0.0409402977946283011,0.00000000000000000000,-1.0000000000000000000,-0.0042322872133865501,-0.0020003650242103598,0.99998904308233005355,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011926154593311400,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -125 ,0 ,-0.0300850729035869006,-0.0513391581335573971,0.00000000000000000000,-1.0000000000000000000,-0.0050014377281800996,-0.0020327862875212702,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015929378218970698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -126 ,0 ,0.04065177894479800324,-0.0663420097337179964,0.00000000000000000000,-1.0000000000000000000,0.00498818925947424988,-0.0028023083877208600,0.99998363238385601370,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00024943181517755901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -127 ,0 ,0.03439884863241800261,-0.0558362793825009015,0.00000000000000000000,-1.0000000000000000000,0.00422107657904061996,-0.0027699418585717902,0.99998725488608797284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019367541267456498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -128 ,0 ,0.02814531072381989962,-0.0470828506633486978,0.00000000000000000000,-1.0000000000000000000,0.00345381337495648992,-0.0027429686444921399,0.99999027360079195680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014747132161119200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -129 ,0 ,0.02189128735807480130,-0.0400809891211312968,0.00000000000000000000,-1.0000000000000000000,0.00268642701311631003,-0.0027213893490188900,0.99999268854822798147,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011067794889640899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -130 ,0 ,0.01563689367383139933,-0.0348301071533212019,0.00000000000000000000,-1.0000000000000000000,0.00191894486063988998,-0.0027052044549645301,0.99999449974461296353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008318202355894749,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -131 ,0 ,0.00938223936519944068,-0.0313297640335842980,0.00000000000000000000,-1.0000000000000000000,0.00115139428559990009,-0.0026944143244310701,0.99999570720210895213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006489860095371109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -132 ,0 ,0.00312743023744210986,-0.0295796659328350988,0.00000000000000000000,-1.0000000000000000000,0.00038380265674957001,-0.0026890191988159502,0.99999631092883001226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005577104548137869,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -133 ,0 ,-0.0031274302374421098,-0.0295796659328350988,0.00000000000000000000,-1.0000000000000000000,-0.0003838026567495700,-0.0026890191988159502,0.99999631092883001226,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00005577104548137869,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -134 ,0 ,-0.0093822393651994406,-0.0313297640335842980,0.00000000000000000000,-1.0000000000000000000,-0.0011513942855999000,-0.0026944143244310701,0.99999570720210895213,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00006489860095371109,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -135 ,0 ,-0.0156368936738313993,-0.0348301071533212019,0.00000000000000000000,-1.0000000000000000000,-0.0019189448606398899,-0.0027052044549645301,0.99999449974461296353,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00008318202355894749,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -136 ,0 ,-0.0218912873580748013,-0.0400809891211312968,0.00000000000000000000,-1.0000000000000000000,-0.0026864270131163100,-0.0027213893490188900,0.99999268854822798147,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011067794889640899,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -137 ,0 ,-0.0281453107238198996,-0.0470828506633486978,0.00000000000000000000,-1.0000000000000000000,-0.0034538133749564899,-0.0027429686444921399,0.99999027360079195680,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00014747132161119200,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -138 ,0 ,-0.0343988486324188977,-0.0558362793825009015,0.00000000000000000000,-1.0000000000000000000,-0.0042210765790406199,-0.0027699418585717902,0.99998725488608797284,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00019367541267456498,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -139 ,0 ,-0.0406517789447980032,-0.0663420097337179964,0.00000000000000000000,-1.0000000000000000000,-0.0049881892594742498,-0.0028023083877208600,0.99998363238385601370,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00024943181517755901,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -140 ,0 ,0.05112544091951939928,-0.0863723429355535976,0.00000000000000000000,-1.0000000000000000000,0.00497492526333551988,-0.0035731345266403501,0.99998124123819398523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036686330099655600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -141 ,0 ,0.04326242419188459920,-0.0757598836704511946,0.00000000000000000000,-1.0000000000000000000,0.00420985280709623016,-0.0035408226774800198,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029530986580539298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -142 ,0 ,0.03539817677627119657,-0.0669175093479173060,0.00000000000000000000,-1.0000000000000000000,0.00344463002250720981,-0.0035138950308439601,0.99998789345957594942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00023594202491494800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -143 ,0 ,0.02753293409536939836,-0.0598444881556660993,0.00000000000000000000,-1.0000000000000000000,0.00267928423995129980,-0.0034923521898372099,0.99999031240914704188,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018861794262647898,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -144 ,0 ,0.01966692457493859902,-0.0545402346039413968,0.00000000000000000000,-1.0000000000000000000,0.00191384279103806991,-0.0034761946369314400,0.99999212660731395807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015322415799801100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -145 ,0 ,0.01180037119889370059,-0.0510043095473914978,0.00000000000000000000,-1.0000000000000000000,0.00114833300833110996,-0.0034654227339727897,0.99999333606608498126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012967557381671199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -146 ,0 ,0.00393349306421808975,-0.0492364202124239980,0.00000000000000000000,-1.0000000000000000000,0.00038278222507536900,-0.0034600367221897499,0.99999394079346703989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011791546126005399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -147 ,0 ,-0.0039334930642180897,-0.0492364202124239980,0.00000000000000000000,-1.0000000000000000000,-0.0003827822250753690,-0.0034600367221897499,0.99999394079346703989,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00011791546126005399,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -148 ,0 ,-0.0118003711988937005,-0.0510043095473914978,0.00000000000000000000,-1.0000000000000000000,-0.0011483330083311099,-0.0034654227339727897,0.99999333606608498126,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00012967557381671199,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -149 ,0 ,-0.0196669245749385990,-0.0545402346039413968,0.00000000000000000000,-1.0000000000000000000,-0.0019138427910380699,-0.0034761946369314400,0.99999212660731395807,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00015322415799801100,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -150 ,0 ,-0.0275329340953693983,-0.0598444881556660993,0.00000000000000000000,-1.0000000000000000000,-0.0026792842399512998,-0.0034923521898372099,0.99999031240914704188,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00018861794262647898,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -151 ,0 ,-0.0353981767762711965,-0.0669175093479173060,0.00000000000000000000,-1.0000000000000000000,-0.0034446300225072098,-0.0035138950308439601,0.99998789345957594942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00023594202491494800,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -152 ,0 ,-0.0432624241918845992,-0.0757598836704511946,0.00000000000000000000,-1.0000000000000000000,-0.0042098528070962301,-0.0035408226774800198,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00029530986580539298,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -153 ,0 ,-0.0511254409195193992,-0.0863723429355535976,0.00000000000000000000,-1.0000000000000000000,-0.0049749252633355198,-0.0035731345266403501,0.99998124123819398523,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00036686330099655600,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -154 ,0 ,0.06150573923037769979,-0.1114557609710779967,0.00000000000000000000,-1.0000000000000000000,0.00496164564484674001,-0.0043452719543262997,0.99997825010553997859,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00051951655677839902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -155 ,0 ,0.05204699986743400313,-0.1007367113309689948,0.00000000000000000000,-1.0000000000000000000,0.00419861581723810980,-0.0043130147309824199,0.99998188460049097781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043209263230892198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -156 ,0 ,0.04258640665483909987,-0.0918055068772467980,0.00000000000000000000,-1.0000000000000000000,0.00343543585608166012,-0.0042861326066397902,0.99998491331007399729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035949983066529999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -157 ,0 ,0.03312430831183289792,-0.0846614184265215008,0.00000000000000000000,-1.0000000000000000000,0.00267213305633922986,-0.0042646261839777398,0.99998733625403501967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030159607013047201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -158 ,0 ,0.02366104656408540146,-0.0793038625887003967,0.00000000000000000000,-1.0000000000000000000,0.00190873471420085994,-0.0042484959451300997,0.99998915344817396189,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025826769706327500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -159 ,0 ,0.01419695769799590029,-0.0757324017991809067,0.00000000000000000000,-1.0000000000000000000,0.00114526812681179008,-0.0042377422516867695,0.99999036490434500823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022942946952753099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -160 ,0 ,0.00473237411488957974,-0.0739467443369958982,0.00000000000000000000,-1.0000000000000000000,0.00038176059199945101,-0.0042323653447002302,0.99999097063045494504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021502456183952698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -161 ,0 ,-0.0047323741148895797,-0.0739467443369958982,0.00000000000000000000,-1.0000000000000000000,-0.0003817605919994510,-0.0042323653447002302,0.99999097063045494504,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00021502456183952698,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -162 ,0 ,-0.0141969576979959002,-0.0757324017991809067,0.00000000000000000000,-1.0000000000000000000,-0.0011452681268117900,-0.0042377422516867695,0.99999036490434500823,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00022942946952753099,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -163 ,0 ,-0.0236610465640854014,-0.0793038625887003967,0.00000000000000000000,-1.0000000000000000000,-0.0019087347142008599,-0.0042484959451300997,0.99998915344817396189,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00025826769706327500,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -164 ,0 ,-0.0331243083118328979,-0.0846614184265215008,0.00000000000000000000,-1.0000000000000000000,-0.0026721330563392298,-0.0042646261839777398,0.99998733625403501967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00030159607013047201,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -165 ,0 ,-0.0425864066548390998,-0.0918055068772467980,0.00000000000000000000,-1.0000000000000000000,-0.0034354358560816601,-0.0042861326066397902,0.99998491331007399729,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00035949983066529999,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -166 ,0 ,-0.0520469998674348982,-0.1007367113309689948,0.00000000000000000000,-1.0000000000000000000,-0.0041986158172381202,-0.0043130147309824199,0.99998188460049097781,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00043209263230892198,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 -167 ,0 ,-0.0615057392303776997,-0.1114557609710779967,0.00000000000000000000,-1.0000000000000000000,-0.0049616456448467400,-0.0043452719543262997,0.99997825010553997859,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,0.00051951655677839902,-1.0000000000000000000,-1.0000000000000000000,-1.0000000000000000000 diff --git a/Intern/RAY-Core/tests/output/toroid_swapped.rayx.csv b/Intern/RAY-Core/tests/output/toroid_swapped.rayx.csv deleted file mode 100644 index d02f5b56d..000000000 --- a/Intern/RAY-Core/tests/output/toroid_swapped.rayx.csv +++ /dev/null @@ -1,169 +0,0 @@ -Ray ID ,Snapshot ID ,X position ,Y position ,Z position ,Weight ,X direction ,Y direction ,Z direction ,Energy ,Stokes0 ,Stokes1 ,Stokes2 ,Stokes3 ,pathLength ,order ,lastElement ,extraParam -0 ,0 ,-0.0577609925286916292,-0.1093267650908639199,0.00000000000000000000,1.00000000000000000000,0.00510687780018119746,0.00407730460910759977,0.99997864746516385014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994990279737976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -1 ,0 ,-0.0488847118053255744,-0.0997882458961587143,0.00000000000000000000,1.00000000000000000000,0.00432150890463304376,0.00411016569554786999,0.99998221539122467138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995822329037764,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -2 ,0 ,-0.0400034310725046957,-0.0918408709060117428,0.00000000000000000000,1.00000000000000000000,0.00353598770522071600,0.00413755104784618854,0.99998518862144880614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996518259795266,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -3 ,0 ,-0.0311180476951321699,-0.0854838814254137713,0.00000000000000000000,1.00000000000000000000,0.00275034189153587887,0.00415946005856411473,0.99998756717846259967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997076677591394,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -4 ,0 ,-0.0222294660750391379,-0.0807166704701236664,0.00000000000000000000,1.00000000000000000000,0.00196459915438246257,0.00417589224178094731,0.99998935108037378949,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997496466894517,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -5 ,0 ,-0.0133385960867913894,-0.0775387827678029190,0.00000000000000000000,1.00000000000000000000,0.00117878718550683205,0.00418684723305186041,0.99999054034076628738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997776791169599,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -6 ,0 ,-0.0044463515140699544,-0.0759499147988377393,0.00000000000000000000,1.00000000000000000000,0.00039293367732863159,0.00419232478942523946,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997917092769057,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -7 ,0 ,0.00444635151406995443,-0.0759499147988377393,0.00000000000000000000,1.00000000000000000000,-0.0003929336773286315,0.00419232478942523946,0.99999113496869795891,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997917092769057,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -8 ,0 ,0.01333859608679138948,-0.0775387827678029190,0.00000000000000000000,1.00000000000000000000,-0.0011787871855068320,0.00418684723305186041,0.99999054034076628738,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997776791169599,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -9 ,0 ,0.02222946607503895749,-0.0807166704701236664,0.00000000000000000000,1.00000000000000000000,-0.0019645991543824634,0.00417589224178094731,0.99998935108037378949,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997496466894517,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -10 ,0 ,0.03111804769513216994,-0.0854838814254137713,0.00000000000000000000,1.00000000000000000000,-0.0027503418915358788,0.00415946005856411473,0.99998756717846259967,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997076677591394,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -11 ,0 ,0.04000343107250469570,-0.0918408709060117428,0.00000000000000000000,1.00000000000000000000,-0.0035359877052207160,0.00413755104784618854,0.99998518862144880614,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996518259795266,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -12 ,0 ,0.04888471180532557441,-0.0997882458961587143,0.00000000000000000000,1.00000000000000000000,-0.0043215089046330437,0.00411016569554786999,0.99998221539122467138,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9995822329037764,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -13 ,0 ,0.05776099252869162925,-0.1093267650908639199,0.00000000000000000000,1.00000000000000000000,-0.0051068778001811974,0.00407730460910759977,0.99997864746516385014,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9994990279737976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -14 ,0 ,-0.0464610105416149929,-0.0849975978430929368,0.00000000000000000000,1.00000000000000000000,0.00509375016303547853,0.00331795763403769719,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996454994543455,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -15 ,0 ,-0.0393219420521473961,-0.0753509896782248861,0.00000000000000000000,1.00000000000000000000,0.00431040050436464101,0.00335076355300120308,0.99998509630449161633,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997135432531649,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -16 ,0 ,-0.0321784968116239980,-0.0673135355290724879,0.00000000000000000000,1.00000000000000000000,0.00352689874163562063,0.00337810293159805001,0.99998807463181760279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997705024834431,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -17 ,0 ,-0.0250314588727935799,-0.0608844794426780175,0.00000000000000000000,1.00000000000000000000,0.00274327252810932639,0.00339997516283276545,0.99999045726683222223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998162374722596,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -18 ,0 ,-0.0178816193207116218,-0.0560632166159977449,0.00000000000000000000,1.00000000000000000000,0.00195954951826028721,0.00341637976112846818,0.99999224422743049345,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998506364809145,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -19 ,0 ,-0.0107297747097852905,-0.0528492934238696254,0.00000000000000000000,1.00000000000000000000,0.00117575736750670381,0.00342731636230940786,0.99999343552703645610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998736157031089,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -20 ,0 ,-0.0035767255009463367,-0.0512424074335438850,0.00000000000000000000,1.00000000000000000000,0.00039192373194079597,0.00343278472359009228,0.99999403117460128331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998851192813162,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -21 ,0 ,0.00357672550094633671,-0.0512424074335438850,0.00000000000000000000,1.00000000000000000000,-0.0003919237319407959,0.00343278472359009228,0.99999403117460128331,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998851192813162,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -22 ,0 ,0.01072977470978529052,-0.0528492934238696254,0.00000000000000000000,1.00000000000000000000,-0.0011757573675067038,0.00342731636230940786,0.99999343552703645610,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998736157031089,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -23 ,0 ,0.01788161932071163917,-0.0560632166159977449,0.00000000000000000000,1.00000000000000000000,-0.0019595495182602876,0.00341637976112846818,0.99999224422743049345,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998506364809145,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -24 ,0 ,0.02503145887279357995,-0.0608844794426780175,0.00000000000000000000,1.00000000000000000000,-0.0027432725281093263,0.00339997516283276545,0.99999045726683222223,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998162374722596,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -25 ,0 ,0.03217849681162399805,-0.0673135355290724879,0.00000000000000000000,1.00000000000000000000,-0.0035268987416356206,0.00337810293159805001,0.99998807463181760279,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997705024834431,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -26 ,0 ,0.03932194205214743082,-0.0753509896782248861,0.00000000000000000000,1.00000000000000000000,-0.0043104005043646418,0.00335076355300120308,0.99998509630449161633,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997135432531649,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -27 ,0 ,0.04646101054161499294,-0.0849975978430929368,0.00000000000000000000,1.00000000000000000000,-0.0050937501630354785,0.00331795763403769719,0.99998152226249403806,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9996454994543455,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -28 ,0 ,-0.0352516439989982166,-0.0655011979610730099,0.00000000000000000000,1.00000000000000000000,0.00508060774906991894,0.00255736347909776579,0.99998382352762871239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997590337152360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -29 ,0 ,-0.0298358470831469671,-0.0557466618369392499,0.00000000000000000000,1.00000000000000000000,0.00429927960163709044,0.00259011428476110328,0.99998740367211536028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998118478415563,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -30 ,0 ,-0.0244162965861969005,-0.0476192627273722551,0.00000000000000000000,1.00000000000000000000,0.00351779954945019655,0.00261740773480791458,0.99999038708533583008,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998561161173711,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -31 ,0 ,-0.0189936632645890911,-0.0411182474019981050,0.00000000000000000000,1.00000000000000000000,0.00273619520953059455,0.00263924322268011208,0.99999277378938411509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998916986223775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -32 ,0 ,-0.0135686249026792434,-0.0362430132397585785,0.00000000000000000000,1.00000000000000000000,0.00195449420011470321,0.00265562026314863225,0.99999456380194351456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999184834359766,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -33 ,0 ,-0.0081418647507434990,-0.0329931082467662256,0.00000000000000000000,1.00000000000000000000,0.00117272414038376731,0.00266653849229657327,0.99999575713627864015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999363866081694,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -34 ,0 ,-0.0027140699631842315,-0.0313682310870676966,0.00000000000000000000,1.00000000000000000000,0.00039091265019390803,0.00267199766752118693,0.99999635380123463868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999453521850227,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -35 ,0 ,0.00271406996318423153,-0.0313682310870676966,0.00000000000000000000,1.00000000000000000000,-0.0003909126501939080,0.00267199766752118693,0.99999635380123463868,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999453521850227,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -36 ,0 ,0.00814186475074349901,-0.0329931082467662256,0.00000000000000000000,1.00000000000000000000,-0.0011727241403837673,0.00266653849229657327,0.99999575713627864015,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999363866081694,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -37 ,0 ,0.01356862490267948286,-0.0362430132397585785,0.00000000000000000000,1.00000000000000000000,-0.0019544942001147036,0.00265562026314863225,0.99999456380194351456,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999184834359766,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -38 ,0 ,0.01899366326458909112,-0.0411182474019981050,0.00000000000000000000,1.00000000000000000000,-0.0027361952095305945,0.00263924322268011208,0.99999277378938411509,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998916986223775,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -39 ,0 ,0.02441629658619690057,-0.0476192627273722551,0.00000000000000000000,1.00000000000000000000,-0.0035177995494501965,0.00261740773480791458,0.99999038708533583008,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998561161173711,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -40 ,0 ,0.02983584708314785532,-0.0557466618369392499,0.00000000000000000000,1.00000000000000000000,-0.0042992796016370904,0.00259011428476110328,0.99998740367211536028,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998118478415563,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -41 ,0 ,0.03525164399899821665,-0.0655011979610730099,0.00000000000000000000,1.00000000000000000000,-0.0050806077490699189,0.00255736347909776579,0.99998382352762871239,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9997590337152360,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -42 ,0 ,-0.0241331842480904737,-0.0508609450884720121,0.00000000000000000000,1.00000000000000000000,0.00506745046530147381,0.00179551514632005234,0.99998554843114662027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998468601916101,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -43 ,0 ,-0.0204266733882428261,-0.0409986395724077842,0.00000000000000000000,1.00000000000000000000,0.00428814611777176592,0.00182821089285328591,0.99998913466487393542,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998843755984125,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -44 ,0 ,-0.0167170320461315739,-0.0327814276616158611,0.00000000000000000000,1.00000000000000000000,0.00350869006429054561,0.00185545845949406078,0.99999212315294638830,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999158953814912,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -45 ,0 ,-0.0130048176946463700,-0.0262085588385477276,0.00000000000000000000,1.00000000000000000000,0.00272910988573079899,0.00187725724011885211,0.99999451391719418325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999412793749797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -46 ,0 ,-0.0092905948302787789,-0.0212794326528603881,0.00000000000000000000,1.00000000000000000000,0.00194943316418205074,0.00189360674984721745,0.99999630697508834487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999604154727421,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -47 ,0 ,-0.0055749334121439828,-0.0179935987421909263,0.00000000000000000000,1.00000000000000000000,0.00116968748267980279,0.00190450662502623675,0.99999750233973472290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999732195828983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -48 ,0 ,-0.0018584073010751223,-0.0163507568495243477,0.00000000000000000000,1.00000000000000000000,0.00038990042493520279,0.00190995662321962584,0.99999810001987288199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999796356478327,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -49 ,0 ,0.00185840730107512236,-0.0163507568495243477,0.00000000000000000000,1.00000000000000000000,-0.0003899004249352027,0.00190995662321962584,0.99999810001987288199,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999796356478327,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -50 ,0 ,0.00557493341214398280,-0.0179935987421909263,0.00000000000000000000,1.00000000000000000000,-0.0011696874826798027,0.00190450662502623675,0.99999750233973472290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999732195828983,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -51 ,0 ,0.00929059483027857950,-0.0212794326528603881,0.00000000000000000000,1.00000000000000000000,-0.0019494331641820513,0.00189360674984721745,0.99999630697508834487,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999604154727421,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -52 ,0 ,0.01300481769464637005,-0.0262085588385477276,0.00000000000000000000,1.00000000000000000000,-0.0027291098857307989,0.00187725724011885211,0.99999451391719418325,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999412793749797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -53 ,0 ,0.01671703204613157398,-0.0327814276616158611,0.00000000000000000000,1.00000000000000000000,-0.0035086900642905456,0.00185545845949406078,0.99999212315294638830,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999158953814912,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -54 ,0 ,0.02042667338824371431,-0.0409986395724077842,0.00000000000000000000,1.00000000000000000000,-0.0042881461177717659,0.00182821089285328591,0.99998913466487393542,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998843755984125,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -55 ,0 ,0.02413318424809047374,-0.0508609450884720121,0.00000000000000000000,1.00000000000000000000,-0.0050674504653014738,0.00179551514632005234,0.99998554843114662027,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9998468601916101,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -56 ,0 ,-0.0131059260823182602,-0.0411004881237069172,0.00000000000000000000,1.00000000000000000000,0.00505427821850702729,0.00103240560681797902,0.99998669411665308537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999162914828048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -57 ,0 ,-0.0110946703732476316,-0.0311305693336752092,0.00000000000000000000,1.00000000000000000000,0.00427699997388696333,0.00106504634838992741,0.99999028642657261656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999384386155725,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -58 ,0 ,-0.0090809072270111677,-0.0228236747346513765,0.00000000000000000000,1.00000000000000000000,0.00349957022161662177,0.00109224807676278545,0.99999327997862186290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999571519401797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -59 ,0 ,-0.0070650808425428502,-0.0161790565189359816,0.00000000000000000000,1.00000000000000000000,0.00272201650651187872,0.00111401018625538385,0.99999567479436768380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999722910542914,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -60 ,0 ,-0.0050476424381723002,-0.0111961163963447338,0.00000000000000000000,1.00000000000000000000,0.00194436637460643321,0.00113033219233001015,0.99999747089106971742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999837436535017,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -61 ,0 ,-0.0030290486915975655,-0.0078744056242051434,0.00000000000000000000,1.00000000000000000000,0.00116664737288117302,0.00114121373159281895,0.99999866828167593979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999914255113253,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -62 ,0 ,-0.0010097601799680078,-0.0062136250326939304,0.00000000000000000000,1.00000000000000000000,0.00038888704899347098,0.00114665456178830033,0.99999926697482066639,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999952804791973,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -63 ,0 ,0.00100976017996800789,-0.0062136250326939304,0.00000000000000000000,1.00000000000000000000,-0.0003888870489934709,0.00114665456178830033,0.99999926697482066639,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999952804791973,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -64 ,0 ,0.00302904869159756557,-0.0078744056242051434,0.00000000000000000000,1.00000000000000000000,-0.0011666473728811730,0.00114121373159281895,0.99999866828167593979,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999914255113253,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -65 ,0 ,0.00504764243817210425,-0.0111961163963447338,0.00000000000000000000,1.00000000000000000000,-0.0019443663746064340,0.00113033219233001015,0.99999747089106971742,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999837436535017,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -66 ,0 ,0.00706508084254285021,-0.0161790565189359816,0.00000000000000000000,1.00000000000000000000,-0.0027220165065118787,0.00111401018625538385,0.99999567479436768380,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999722910542914,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -67 ,0 ,0.00908090722701116771,-0.0228236747346513765,0.00000000000000000000,1.00000000000000000000,-0.0034995702216166217,0.00109224807676278545,0.99999327997862186290,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999571519401797,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -68 ,0 ,0.01109467037324679550,-0.0311305693336752092,0.00000000000000000000,1.00000000000000000000,-0.0042769999738869650,0.00106504634838992741,0.99999028642657261656,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999384386155725,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -69 ,0 ,0.01310592608231826022,-0.0411004881237069172,0.00000000000000000000,1.00000000000000000000,-0.0050542782185070272,0.00103240560681797902,0.99998669411665308537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999162914828048,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -70 ,0 ,-0.0021701677651352838,-0.0362437476573020667,0.00000000000000000000,1.00000000000000000000,0.00504109091522312278,0.00026802780063152662,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999747245437902,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -71 ,0 ,-0.0018400903799371704,-0.0261663692330218050,0.00000000000000000000,1.00000000000000000000,0.00426584109089738362,0.00030061359139585278,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999814333150425,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -72 ,0 ,-0.0015081285665318371,-0.0177699200076863982,0.00000000000000000000,1.00000000000000000000,0.00349043995672192360,0.00032776952664430016,0.99999385467914014835,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999872817716095,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -73 ,0 ,-0.0011746132561055047,-0.0110536548544858739,0.00000000000000000000,1.00000000000000000000,0.00271491502154620712,0.00034949500111104432,0.99999625353781662617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999921292801445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -74 ,0 ,-0.0008398823954302222,-0.0060169776464253331,0.00000000000000000000,1.00000000000000000000,0.00193929379543939612,0.00036578953061679604,0.99999805266690089400,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999958633452479,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -75 ,0 ,-0.0005042793873899099,-0.0026594412529892205,0.00000000000000000000,1.00000000000000000000,0.00116360378941877712,0.00037665275202271964,0.99999925207918294312,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999983995912771,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -76 ,0 ,-0.0001681515320926823,-0.0009807475809615502,0.00000000000000000000,1.00000000000000000000,0.00038787251517899163,0.00038208442324539368,0.99999985178319161782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999996817750798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -77 ,0 ,0.00016815153209268231,-0.0009807475809615502,0.00000000000000000000,1.00000000000000000000,-0.0003878725151789916,0.00038208442324539368,0.99999985178319161782,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999996817750798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -78 ,0 ,0.00050427938738990991,-0.0026594412529892205,0.00000000000000000000,1.00000000000000000000,-0.0011636037894187771,0.00037665275202271964,0.99999925207918294312,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999983995912771,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -79 ,0 ,0.00083988239542981206,-0.0060169776464253331,0.00000000000000000000,1.00000000000000000000,-0.0019392937954393974,0.00036578953061679604,0.99999805266690089400,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999958633452479,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -80 ,0 ,0.00117461325610550477,-0.0110536548544858739,0.00000000000000000000,1.00000000000000000000,-0.0027149150215462071,0.00034949500111104432,0.99999625353781662617,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999921292801445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -81 ,0 ,0.00150812856653183714,-0.0177699200076863982,0.00000000000000000000,1.00000000000000000000,-0.0034904399567219236,0.00032776952664430016,0.99999385467914014835,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999872817716095,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -82 ,0 ,0.00184009037993719298,-0.0261663692330218050,0.00000000000000000000,1.00000000000000000000,-0.0042658410908973844,0.00030061359139585278,0.99999085607382198759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999814333150425,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -83 ,0 ,0.00217016776513528387,-0.0362437476573020667,0.00000000000000000000,1.00000000000000000000,-0.0050410909152231227,0.00026802780063152662,0.99998725770055796324,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,10999.9999747245437902,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -84 ,0 ,0.00867378894596583863,-0.0363149184144127001,0.00000000000000000000,1.00000000000000000000,0.00502788846174509300,-0.0004976253634616102,0.99998723627185037710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000296418329526,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -85 ,0 ,0.00733681129338948929,-0.0261302315220993917,0.00000000000000000000,1.00000000000000000000,0.00425466938951398615,-0.0004650944693405224,0.99999084069581356537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000208416240639,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -86 ,0 ,0.00600109507889677856,-0.0176443536524477084,0.00000000000000000000,1.00000000000000000000,0.00348129920473295171,-0.0004379842820900633,0.99999384434386162645,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000137663664645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -87 ,0 ,0.00466642263561978069,-0.0108565423691527902,0.00000000000000000000,1.00000000000000000000,0.00270780538037642673,-0.0004162954065354200,0.99999624723703628426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000082751903391,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -88 ,0 ,0.00333256928516520098,-0.0057662036849406095,0.00000000000000000000,1.00000000000000000000,0.00193421539063980520,-0.0004000283265173431,0.99999804939217762367,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042554092942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -89 ,0 ,0.00199930489600901430,-0.0023728920789259969,0.00000000000000000000,1.00000000000000000000,0.00116055671066785386,-0.0003891834049146128,0.99999925082191853942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000016225076251,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -90 ,0 ,0.00066639544158892500,-0.0006763105351176216,0.00000000000000000000,1.00000000000000000000,0.00038685681628350946,-0.0003837608836337441,0.99999985153468262666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000003201421350,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -91 ,0 ,-0.0006663954415889250,-0.0006763105351176216,0.00000000000000000000,1.00000000000000000000,-0.0003868568162835094,-0.0003837608836337441,0.99999985153468262666,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000003201421350,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -92 ,0 ,-0.0019993048960090143,-0.0023728920789259969,0.00000000000000000000,1.00000000000000000000,-0.0011605567106678538,-0.0003891834049146128,0.99999925082191853942,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000016225076251,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -93 ,0 ,-0.0033325692851654039,-0.0057662036849406095,0.00000000000000000000,1.00000000000000000000,-0.0019342153906398060,-0.0004000283265173431,0.99999804939217762367,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000042554092942,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -94 ,0 ,-0.0046664226356197806,-0.0108565423691527902,0.00000000000000000000,1.00000000000000000000,-0.0027078053803764267,-0.0004162954065354200,0.99999624723703628426,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000082751903391,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -95 ,0 ,-0.0060010950788967785,-0.0176443536524477084,0.00000000000000000000,1.00000000000000000000,-0.0034812992047329517,-0.0004379842820900633,0.99999384434386162645,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000137663664645,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -96 ,0 ,-0.0073368112933894702,-0.0261302315220993917,0.00000000000000000000,1.00000000000000000000,-0.0042546693895139870,-0.0004650944693405224,0.99999084069581356537,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000208416240639,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -97 ,0 ,-0.0086737889459658386,-0.0363149184144127001,0.00000000000000000000,1.00000000000000000000,-0.0050278884617450930,-0.0004976253634616102,0.99998723627185037710,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000296418329526,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -98 ,0 ,0.01942563877513757419,-0.0413384717463330594,0.00000000000000000000,1.00000000000000000000,0.00501467076412681796,-0.0012645610081007162,0.99998662689187178820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000886125435499,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -99 ,0 ,0.01643577637158456436,-0.0310466250533483548,0.00000000000000000000,1.00000000000000000000,0.00424348479024318648,-0.0012320849564629514,0.99999023735409264812,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000642321792838,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -100 ,0 ,0.01344655241715156726,-0.0224714424495627770,0.00000000000000000000,1.00000000000000000000,0.00347214790060917585,-0.0012050204720749234,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000441739066445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -101 ,0 ,0.01045786250927579000,-0.0156121841746222032,0.00000000000000000000,1.00000000000000000000,0.00270068753241511786,-0.0011833681593252140,0.99999565295387715657,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000282966029772,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -102 ,0 ,0.00746959523778303012,-0.0104682583751428102,0.00000000000000000000,1.00000000000000000000,0.00192913112407364106,-0.0011671285017129055,0.99999745812885254547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000164873963512,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -103 ,0 ,0.00448163374228885153,-0.0070392211369284486,0.00000000000000000000,1.00000000000000000000,0.00115750611494795023,-0.0011563018618554463,0.99999866157190309134,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000086616237240,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -104 ,0 ,0.00149385726951012181,-0.0053247765085518731,0.00000000000000000000,1.00000000000000000000,0.00038583994508018844,-0.0011508884814915984,0.99999926329134836144,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000047628454922,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -105 ,0 ,-0.0014938572695101218,-0.0053247765085518731,0.00000000000000000000,1.00000000000000000000,-0.0003858399450801884,-0.0011508884814915984,0.99999926329134836144,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000047628454922,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -106 ,0 ,-0.0044816337422888515,-0.0070392211369284486,0.00000000000000000000,1.00000000000000000000,-0.0011575061149479502,-0.0011563018618554463,0.99999866157190309134,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000086616237240,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -107 ,0 ,-0.0074695952377830223,-0.0104682583751428102,0.00000000000000000000,1.00000000000000000000,-0.0019291311240736414,-0.0011671285017129055,0.99999745812885254547,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000164873963512,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -108 ,0 ,-0.0104578625092757900,-0.0156121841746222032,0.00000000000000000000,1.00000000000000000000,-0.0027006875324151178,-0.0011833681593252140,0.99999565295387715657,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000282966029772,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -109 ,0 ,-0.0134465524171515672,-0.0224714424495627770,0.00000000000000000000,1.00000000000000000000,-0.0034721479006091758,-0.0012050204720749234,0.99999324603450101545,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000441739066445,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -110 ,0 ,-0.0164357763715854247,-0.0310466250533483548,0.00000000000000000000,1.00000000000000000000,-0.0042434847902431882,-0.0012320849564629514,0.99999023735409264812,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000642321792838,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -111 ,0 ,-0.0194256387751375741,-0.0413384717463330594,0.00000000000000000000,1.00000000000000000000,-0.0050146707641268179,-0.0012645610081007162,0.99998662689187178820,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000886125435499,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -112 ,0 ,0.03008507290358788249,-0.0513391581338997690,0.00000000000000000000,1.00000000000000000000,0.00500143772818010135,-0.0020327862875208677,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001592937824170,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -113 ,0 ,0.02545654358182089863,-0.0409402977951373800,0.00000000000000000000,1.00000000000000000000,0.00423228721338655185,-0.0020003650242100437,0.99998904308232949844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001192615454783,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -114 ,0 ,0.02082802970359465613,-0.0322759322780291277,0.00000000000000000000,1.00000000000000000000,0.00346298597914238134,-0.0019733461975443822,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000861604821693,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -115 ,0 ,0.01619954013400299805,-0.0253453244778393885,0.00000000000000000000,1.00000000000000000000,0.00269356142694453497,-0.0019517304114879381,0.99999446772231692648,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000598492424614,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -116 ,0 ,0.01157107673412261818,-0.0201478846692347939,0.00000000000000000000,1.00000000000000000000,0.00192404095951379146,-0.0019355181491995687,0.99999627591100559431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000402147470595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -117 ,0 ,0.00694263591767913922,-0.0166831705412857946,0.00000000000000000000,1.00000000000000000000,0.00115445198052272694,-0.0019247097730319103,0.99999748136328514558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000271721946774,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -118 ,0 ,0.00231421020761353414,-0.0149508872007979055,0.00000000000000000000,1.00000000000000000000,0.00038482189432357703,-0.0019193055245568452,0.99999808408737089759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000206650529435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -119 ,0 ,-0.0023142102076135341,-0.0149508872007979055,0.00000000000000000000,1.00000000000000000000,-0.0003848218943235770,-0.0019193055245568452,0.99999808408737089759,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000206650529435,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -120 ,0 ,-0.0069426359176791392,-0.0166831705412857946,0.00000000000000000000,1.00000000000000000000,-0.0011544519805227269,-0.0019247097730319103,0.99999748136328514558,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000271721946774,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -121 ,0 ,-0.0115710767341221740,-0.0201478846692347939,0.00000000000000000000,1.00000000000000000000,-0.0019240409595137914,-0.0019355181491995687,0.99999627591100559431,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000402147470595,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -122 ,0 ,-0.0161995401340029980,-0.0253453244778393885,0.00000000000000000000,1.00000000000000000000,-0.0026935614269445349,-0.0019517304114879381,0.99999446772231692648,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000598492424614,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -123 ,0 ,-0.0208280297035946561,-0.0322759322780291277,0.00000000000000000000,1.00000000000000000000,-0.0034629859791423813,-0.0019733461975443822,0.99999205678489899717,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000861604821693,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -124 ,0 ,-0.0254565435818208882,-0.0409402977951373800,0.00000000000000000000,1.00000000000000000000,-0.0042322872133865527,-0.0020003650242100437,0.99998904308232949844,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001192615454783,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -125 ,0 ,-0.0300850729035878824,-0.0513391581338997690,0.00000000000000000000,1.00000000000000000000,-0.0050014377281801013,-0.0020327862875208677,0.99998542659408795607,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001592937824170,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -126 ,0 ,0.04065177894480398457,-0.0663420097339615794,0.00000000000000000000,1.00000000000000000000,0.00498818925947426029,-0.0028023083877204780,0.99998363238385623574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002494318177923,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -127 ,0 ,0.03439884863242140267,-0.0558362793822584219,0.00000000000000000000,1.00000000000000000000,0.00422107657904061996,-0.0027699418585719168,0.99998725488608786182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001936754124471,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -128 ,0 ,0.02814531072382245313,-0.0470828506634946575,0.00000000000000000000,1.00000000000000000000,0.00345381337495648645,-0.0027429686444921759,0.99999027360079162374,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001474713208153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -129 ,0 ,0.02189128735806861528,-0.0400809891224744446,0.00000000000000000000,1.00000000000000000000,0.00268642701311632607,-0.0027213893490169085,0.99999268854822831453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001106779491237,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -130 ,0 ,0.01563689367383414713,-0.0348301071534400374,0.00000000000000000000,1.00000000000000000000,0.00191894486063988456,-0.0027052044549649048,0.99999449974461274148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000831820252642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -131 ,0 ,0.00938223936520081458,-0.0313297640336747534,0.00000000000000000000,1.00000000000000000000,0.00115139428559989901,-0.0026944143244313988,0.99999570720210939622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000648986006126,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -132 ,0 ,0.00312743023744256696,-0.0295796659325841850,0.00000000000000000000,1.00000000000000000000,0.00038380265674957034,-0.0026890191988158799,0.99999631092882967919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000557710482098,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -133 ,0 ,-0.0031274302374425669,-0.0295796659325841850,0.00000000000000000000,1.00000000000000000000,-0.0003838026567495703,-0.0026890191988158799,0.99999631092882967919,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000557710482098,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -134 ,0 ,-0.0093822393652008145,-0.0313297640336747534,0.00000000000000000000,1.00000000000000000000,-0.0011513942855998990,-0.0026944143244313988,0.99999570720210939622,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000648986006126,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -135 ,0 ,-0.0156368936738339250,-0.0348301071534400374,0.00000000000000000000,1.00000000000000000000,-0.0019189448606398847,-0.0027052044549649048,0.99999449974461274148,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0000831820252642,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -136 ,0 ,-0.0218912873580686152,-0.0400809891224744446,0.00000000000000000000,1.00000000000000000000,-0.0026864270131163260,-0.0027213893490169085,0.99999268854822831453,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001106779491237,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -137 ,0 ,-0.0281453107238224531,-0.0470828506634946575,0.00000000000000000000,1.00000000000000000000,-0.0034538133749564864,-0.0027429686444921759,0.99999027360079162374,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001474713208153,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -138 ,0 ,-0.0343988486324213957,-0.0558362793822584219,0.00000000000000000000,1.00000000000000000000,-0.0042210765790406208,-0.0027699418585719168,0.99998725488608786182,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001936754124471,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -139 ,0 ,-0.0406517789448039845,-0.0663420097339615794,0.00000000000000000000,1.00000000000000000000,-0.0049881892594742602,-0.0028023083877204780,0.99998363238385623574,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002494318177923,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -140 ,0 ,0.05112544091953231950,-0.0863723429352390992,0.00000000000000000000,1.00000000000000000000,0.00497492526333551295,-0.0035731345266406398,0.99998124123819365216,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003668633034976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -141 ,0 ,0.04326242419188671556,-0.0757598836707088080,0.00000000000000000000,1.00000000000000000000,0.00420985280709623276,-0.0035408226774800571,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002953098664875,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -142 ,0 ,0.03539817677627560971,-0.0669175093475321142,0.00000000000000000000,1.00000000000000000000,0.00344463002250721588,-0.0035138950308438200,0.99998789345957583840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002359420250286,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -143 ,0 ,0.02753293409537677788,-0.0598444881553492416,0.00000000000000000000,1.00000000000000000000,0.00267928423995130067,-0.0034923521898375855,0.99999031240914693086,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001886179452412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -144 ,0 ,0.01966692457493831799,-0.0545402346041753763,0.00000000000000000000,1.00000000000000000000,0.00191384279103807381,-0.0034761946369316438,0.99999212660731340296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001532241585664,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -145 ,0 ,0.01180037119889326691,-0.0510043095478574931,0.00000000000000000000,1.00000000000000000000,0.00114833300833110866,-0.0034654227339725842,0.99999333606608420410,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001296755726798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -146 ,0 ,0.00393349306421846532,-0.0492364202131529635,0.00000000000000000000,1.00000000000000000000,0.00038278222507536911,-0.0034600367221895344,0.99999394079346737296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001179154623969,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -147 ,0 ,-0.0039334930642184653,-0.0492364202131529635,0.00000000000000000000,1.00000000000000000000,-0.0003827822250753691,-0.0034600367221895344,0.99999394079346737296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001179154623969,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -148 ,0 ,-0.0118003711988932669,-0.0510043095478574931,0.00000000000000000000,1.00000000000000000000,-0.0011483330083311086,-0.0034654227339725842,0.99999333606608420410,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001296755726798,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -149 ,0 ,-0.0196669245749383179,-0.0545402346041753763,0.00000000000000000000,1.00000000000000000000,-0.0019138427910380742,-0.0034761946369316438,0.99999212660731340296,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001532241585664,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -150 ,0 ,-0.0275329340953767778,-0.0598444881553492416,0.00000000000000000000,1.00000000000000000000,-0.0026792842399513006,-0.0034923521898375855,0.99999031240914693086,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0001886179452412,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -151 ,0 ,-0.0353981767762756097,-0.0669175093475321142,0.00000000000000000000,1.00000000000000000000,-0.0034446300225072158,-0.0035138950308438200,0.99998789345957583840,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002359420250286,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -152 ,0 ,-0.0432624241918849392,-0.0757598836707088080,0.00000000000000000000,1.00000000000000000000,-0.0042098528070962318,-0.0035408226774800571,0.99998486974259204185,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002953098664875,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -153 ,0 ,-0.0511254409195323195,-0.0863723429352390992,0.00000000000000000000,1.00000000000000000000,-0.0049749252633355129,-0.0035731345266406398,0.99998124123819365216,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003668633034976,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -154 ,0 ,0.06150573923039394375,-0.1114557609702490625,0.00000000000000000000,1.00000000000000000000,0.00496164564484673394,-0.0043452719543268765,0.99997825010553986757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005195165576878,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -155 ,0 ,0.05204699986745520146,-0.1007367113297423927,0.00000000000000000000,1.00000000000000000000,0.00419861581723808639,-0.0043130147309842232,0.99998188460049075576,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004320926345826,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -156 ,0 ,0.04258640665483895415,-0.0918055068772783561,0.00000000000000000000,1.00000000000000000000,0.00343543585608166533,-0.0042861326066395075,0.99998491331007421933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003594998306652,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -157 ,0 ,0.03312430831183234281,-0.0846614184270701730,0.00000000000000000000,1.00000000000000000000,0.00267213305633923290,-0.0042646261839776279,0.99998733625403468661,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003015960719494,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -158 ,0 ,0.02366104656408118261,-0.0793038625894410958,0.00000000000000000000,1.00000000000000000000,0.00190873471420086081,-0.0042484959451296877,0.99998915344817351780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002582676970632,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -159 ,0 ,0.01419695769799116796,-0.0757324018003851517,0.00000000000000000000,1.00000000000000000000,0.00114526812681179355,-0.0042377422516848249,0.99999036490434511925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002294294699822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -160 ,0 ,0.00473237411488996746,-0.0739467443366051968,0.00000000000000000000,1.00000000000000000000,0.00038176059199945057,-0.0042323653447003794,0.99999097063045472300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002150245618395,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -161 ,0 ,-0.0047323741148899674,-0.0739467443366051968,0.00000000000000000000,1.00000000000000000000,-0.0003817605919994505,-0.0042323653447003794,0.99999097063045472300,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002150245618395,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -162 ,0 ,-0.0141969576979911679,-0.0757324018003851517,0.00000000000000000000,1.00000000000000000000,-0.0011452681268117935,-0.0042377422516848249,0.99999036490434511925,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002294294699822,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -163 ,0 ,-0.0236610465640816267,-0.0793038625894410958,0.00000000000000000000,1.00000000000000000000,-0.0019087347142008616,-0.0042484959451296877,0.99998915344817351780,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0002582676970632,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -164 ,0 ,-0.0331243083118323428,-0.0846614184270701730,0.00000000000000000000,1.00000000000000000000,-0.0026721330563392329,-0.0042646261839776279,0.99998733625403468661,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003015960719494,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -165 ,0 ,-0.0425864066548389541,-0.0918055068772783561,0.00000000000000000000,1.00000000000000000000,-0.0034354358560816653,-0.0042861326066395075,0.99998491331007421933,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0003594998306652,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -166 ,0 ,-0.0520469998674552014,-0.1007367113297423927,0.00000000000000000000,1.00000000000000000000,-0.0041986158172380872,-0.0043130147309842232,0.99998188460049075576,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0004320926345826,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 -167 ,0 ,-0.0615057392303939437,-0.1114557609702490625,0.00000000000000000000,1.00000000000000000000,-0.0049616456448467339,-0.0043452719543268765,0.99997825010553986757,100.000000000000000000,1.00000000000000000000,1.00000000000000000000,0.00000000000000000000,0.00000000000000000000,11000.0005195165576878,0.00000000000000000000,2.00000000000000000000,21.0000000000000000000 diff --git a/README.md b/README.md index d017f112e..9273a7402 100644 --- a/README.md +++ b/README.md @@ -7,4 +7,4 @@ RAY-X is a simulation tool for beamlines at electron storage rings. At this stag - Multiple beamlines can easily be traced in succession - Groups of objects can be added for easy group transforms (e.g., Reflection Zone Plates) -You can find our [Wiki here](https://hz-b.github.io/RAY-X/) +You can find our [Wiki here](https://hz-b.github.io/RAY-X/) \ No newline at end of file diff --git a/docs/changes/lastChanges.md b/docs/changes/lastChanges.md index d5d06fdae..933ec80ed 100644 --- a/docs/changes/lastChanges.md +++ b/docs/changes/lastChanges.md @@ -1,12 +1,5 @@ # Changes -- Introduce SemVer -- Introduced new Testsuite, improvements include - - performance - - readability - - some bug fixes -- Bugfix wiki math display -- Bugfix Metrix Beamline Tracing -- Bugfix Toroid & Ellipsoid -- Bugfix multi rzp script -- Minor code reworks \ No newline at end of file +- Jupyter notebook for visualizing tracing footprints +- CMake updates and fixes +- Documentation refactor and updates \ No newline at end of file diff --git a/docs/changes/v0.16.0.md b/docs/changes/v0.16.0.md new file mode 100644 index 000000000..d5d06fdae --- /dev/null +++ b/docs/changes/v0.16.0.md @@ -0,0 +1,12 @@ +# Changes + +- Introduce SemVer +- Introduced new Testsuite, improvements include + - performance + - readability + - some bug fixes +- Bugfix wiki math display +- Bugfix Metrix Beamline Tracing +- Bugfix Toroid & Ellipsoid +- Bugfix multi rzp script +- Minor code reworks \ No newline at end of file diff --git a/docs/changes/v0.17.0.md b/docs/changes/v0.17.0.md new file mode 100644 index 000000000..938293e24 --- /dev/null +++ b/docs/changes/v0.17.0.md @@ -0,0 +1,9 @@ +# Changes + + - API + - Added PushConstant support to VulkanEngine + - Cutouts and curvatures are now modular and any one can be added to any object + - Documentation + - Some general documentation improvements + - Improved Windows stability + - General bufixes and improvements \ No newline at end of file diff --git a/docs/src/Developer/Tools/How-to-use-Doxygen.md b/docs/src/API/How-to-use-Doxygen.md similarity index 100% rename from docs/src/Developer/Tools/How-to-use-Doxygen.md rename to docs/src/API/How-to-use-Doxygen.md diff --git a/docs/src/Backend/Backend.md b/docs/src/Backend/Backend.md new file mode 100644 index 000000000..781894a4f --- /dev/null +++ b/docs/src/Backend/Backend.md @@ -0,0 +1 @@ +# Backend diff --git a/docs/src/Developer/Developer.md b/docs/src/Backend/Developer.md similarity index 100% rename from docs/src/Developer/Developer.md rename to docs/src/Backend/Developer.md diff --git a/docs/src/Developer/Introduction/00-Introduction.md b/docs/src/Backend/Introduction/00-Introduction.md similarity index 100% rename from docs/src/Developer/Introduction/00-Introduction.md rename to docs/src/Backend/Introduction/00-Introduction.md diff --git a/docs/src/Developer/Introduction/01-How-to-Build.md b/docs/src/Backend/Introduction/01-How-to-Build.md similarity index 88% rename from docs/src/Developer/Introduction/01-How-to-Build.md rename to docs/src/Backend/Introduction/01-How-to-Build.md index c20fef9a4..3c991415c 100644 --- a/docs/src/Developer/Introduction/01-How-to-Build.md +++ b/docs/src/Backend/Introduction/01-How-to-Build.md @@ -14,11 +14,12 @@ to get the dev branch and to make sure, you also clone all of it's submodules. - Install [Vulkan](https://vulkan.lunarg.com/) for Windows (1.3 or newer) - Make sure to check the Vulkan Memory Allocator option (not used yet, but likely in the future) - Install [HDF5](https://www.hdfgroup.org/downloads/hdf5/) library -- Install python3, python3-dev and python3-matplotlib -- We also recommend to use the MSVC compiler for Windows [Visual Studio](https://visualstudio.microsoft.com/de/downloads/) (2019 or newer) +- Install python (3.8 or newer) and matplotlib and pandas for plotting +- We don't support gcc on Windows and recommend to use the MSVC compiler for Windows [Visual Studio](https://visualstudio.microsoft.com/de/downloads/) (2019 or newer) Known Issues: - Sometimes installing the VulkanSDK in the root directory of your drive causes problems. If you have problems with the VulkanSDK, try installing it in a different directory. +- Some applications might cause validation layer warnings. These can be ignored. ### VSCode - Open the project in VSCode, where you will be asked to select a build kit (gcc, etc.) diff --git a/docs/src/Developer/Introduction/02-Style-Guide-for-Programming-in-Ray.md b/docs/src/Backend/Introduction/02-Style-Guide-for-Programming-in-Ray.md similarity index 100% rename from docs/src/Developer/Introduction/02-Style-Guide-for-Programming-in-Ray.md rename to docs/src/Backend/Introduction/02-Style-Guide-for-Programming-in-Ray.md diff --git a/docs/src/Developer/Model/Approximation-of-ray-object-intersection-in-the-case-of-quadric-surfaces.md b/docs/src/Backend/Model/Approximation-of-ray-object-intersection-in-the-case-of-quadric-surfaces.md similarity index 100% rename from docs/src/Developer/Model/Approximation-of-ray-object-intersection-in-the-case-of-quadric-surfaces.md rename to docs/src/Backend/Model/Approximation-of-ray-object-intersection-in-the-case-of-quadric-surfaces.md diff --git a/docs/src/Developer/Model/Efficiency.md b/docs/src/Backend/Model/Efficiency.md similarity index 100% rename from docs/src/Developer/Model/Efficiency.md rename to docs/src/Backend/Model/Efficiency.md diff --git a/docs/src/Developer/Model/Model.md b/docs/src/Backend/Model/Model.md similarity index 100% rename from docs/src/Developer/Model/Model.md rename to docs/src/Backend/Model/Model.md diff --git a/docs/src/Developer/Model/Objects/Objects.md b/docs/src/Backend/Model/Objects/Objects.md similarity index 100% rename from docs/src/Developer/Model/Objects/Objects.md rename to docs/src/Backend/Model/Objects/Objects.md diff --git a/docs/src/Developer/Model/Objects/RZP.md b/docs/src/Backend/Model/Objects/RZP.md similarity index 100% rename from docs/src/Developer/Model/Objects/RZP.md rename to docs/src/Backend/Model/Objects/RZP.md diff --git a/docs/src/Developer/Model/PRNGs-on-the-GPU.md b/docs/src/Backend/Model/PRNGs-on-the-GPU.md similarity index 100% rename from docs/src/Developer/Model/PRNGs-on-the-GPU.md rename to docs/src/Backend/Model/PRNGs-on-the-GPU.md diff --git a/docs/src/Developer/Model/Quad(ric)-function.md b/docs/src/Backend/Model/Quad(ric)-function.md similarity index 100% rename from docs/src/Developer/Model/Quad(ric)-function.md rename to docs/src/Backend/Model/Quad(ric)-function.md diff --git a/docs/src/Developer/Model/Transformation-between-coordinate-systems.md b/docs/src/Backend/Model/Transformation-between-coordinate-systems.md similarity index 100% rename from docs/src/Developer/Model/Transformation-between-coordinate-systems.md rename to docs/src/Backend/Model/Transformation-between-coordinate-systems.md diff --git a/docs/src/Developer/Tools/Code-Coverage.md b/docs/src/Backend/Tools/Code-Coverage.md similarity index 100% rename from docs/src/Developer/Tools/Code-Coverage.md rename to docs/src/Backend/Tools/Code-Coverage.md diff --git a/docs/src/Developer/Tools/Debugging.md b/docs/src/Backend/Tools/Debugging.md similarity index 100% rename from docs/src/Developer/Tools/Debugging.md rename to docs/src/Backend/Tools/Debugging.md diff --git a/docs/src/Developer/Tools/How-to-use-our-formatter.md b/docs/src/Backend/Tools/How-to-use-our-formatter.md similarity index 100% rename from docs/src/Developer/Tools/How-to-use-our-formatter.md rename to docs/src/Backend/Tools/How-to-use-our-formatter.md diff --git a/docs/src/Developer/Tools/Testing.md b/docs/src/Backend/Tools/Testing.md similarity index 100% rename from docs/src/Developer/Tools/Testing.md rename to docs/src/Backend/Tools/Testing.md diff --git a/docs/src/Developer/Tools/Tools.md b/docs/src/Backend/Tools/Tools.md similarity index 100% rename from docs/src/Developer/Tools/Tools.md rename to docs/src/Backend/Tools/Tools.md diff --git a/docs/src/Developer/Vulkan/Vulkan-Beyond.md b/docs/src/Backend/Vulkan/Vulkan-Beyond.md similarity index 100% rename from docs/src/Developer/Vulkan/Vulkan-Beyond.md rename to docs/src/Backend/Vulkan/Vulkan-Beyond.md diff --git a/docs/src/Developer/Vulkan/Vulkan.md b/docs/src/Backend/Vulkan/Vulkan.md similarity index 100% rename from docs/src/Developer/Vulkan/Vulkan.md rename to docs/src/Backend/Vulkan/Vulkan.md diff --git a/docs/src/App/Getting-Started.md b/docs/src/Intro/Getting-Started.md similarity index 100% rename from docs/src/App/Getting-Started.md rename to docs/src/Intro/Getting-Started.md diff --git a/docs/src/App/How-to-use-the-TerminalApp.md b/docs/src/Intro/How-to-use-the-RAY-CLI.md similarity index 70% rename from docs/src/App/How-to-use-the-TerminalApp.md rename to docs/src/Intro/How-to-use-the-RAY-CLI.md index 2d2e02f36..d1ea8aa77 100644 --- a/docs/src/App/How-to-use-the-TerminalApp.md +++ b/docs/src/Intro/How-to-use-the-RAY-CLI.md @@ -1,22 +1,24 @@ -# TerminalApp +# RAY-CLI After a successful build, type `-h` or `--help` for a summary of all known commands. > Hint: `-c` or `--command` are accepted. But `-command` can result in errors. ``` -Terminal Application for RAY-X -Usage: ./TerminalApp [OPTIONS] +Terminal application for RAY-X +Usage: ./RAY-CLI [OPTIONS] Options: -h,--help Print this help message and exit - -v,--version - -i,--input TEXT Input RML File Path. - -x,--cpu Tracing on CPU - -m,--mult Multiple plots extension at output. - -b,--benchmark Benchmark application: (RML Parse → Trace → Output Storage) - -d,--dummy Run an in-house built Beamline. -c,--ocsv Output stored as .csv file. + -b,--batch INT Batch size for Vulkan tracing + -B,--benchmark Benchmark application: (RML -> Trace -> Output) + -x,--cpu Tracing on CPU -p,--plot Plot output footprints and histograms. + -i,--input TEXT Input RML File or Directory. + -f Fix the seed to RAYX::FIXED_SEED (Uses default) + -v,--version + -s,--seed INT Provided user seed + -V,--verbose Dump more information ``` @@ -30,5 +32,4 @@ Options: | `--input` | Path to the RML file to be used as imported beamline. | | `--cpu` | Run Tracing on CPU, instead of using the GPU. | | `--version` | Prints the application's meta info. | -| `--dummy` | Run a dummy beamline with some optical elements, useful for testing. | | `--help` | Prints the help message. | \ No newline at end of file diff --git a/docs/src/App/App.md b/docs/src/Intro/Introduction.md similarity index 50% rename from docs/src/App/App.md rename to docs/src/Intro/Introduction.md index 9d17a0f60..c15d385ca 100644 --- a/docs/src/App/App.md +++ b/docs/src/Intro/Introduction.md @@ -2,10 +2,7 @@ RAY-X is a simulation software for scientific work on beamlines in electron storage rings. In this part of the documentation you will find everything you need to know about: -- How to use the application +- How to get started +- How to use the CLI application - What to do if you encounter errors -- The math its built on -- What you can expect from the results you get - -Disclaimer: We can't guarantee the correctness of all the results, -especially in the early stages of development. \ No newline at end of file +- What you can expect from the results you get \ No newline at end of file diff --git a/docs/src/App/Literature.md b/docs/src/Intro/Literature.md similarity index 100% rename from docs/src/App/Literature.md rename to docs/src/Intro/Literature.md diff --git a/docs/src/README.md b/docs/src/README.md index 04ebe6e04..1bb5d5cb4 100644 --- a/docs/src/README.md +++ b/docs/src/README.md @@ -7,10 +7,3 @@ RAY-X is a simulation and design tool for beamlines at electron storage rings. I This software is the successor of [RAY-UI](https://www.helmholtz-berlin.de/forschung/oe/wi/optik-strahlrohre/arbeitsgebiete/ray_en.html) and aims to reengineer a valuable tool for physicists, engineers and others working on beamlines for electron storage rings. Currently, we only provide a CLI application for the RayCore-library, enabling you to trace beamlines created through RAY-UI efficiently. The main reason for the faster simulations is that we utilize GPUs for the tracing process. - - -We divide this wiki into three main parts. They are designed for App Users, API Users, and Developer. The areas are not exclusive to these audiences, and an API User might need to look at some pages in the App User Area. A Developer might find interesting info in all three parts. - -- [App Area](./AppUser/AppUser.md) -- [API Area](./APIUser/APIUser.md) -- [Developer Area](./Developer/Developer.md) diff --git a/docs/src/SUMMARY.md b/docs/src/SUMMARY.md index adf4a1993..7cb365b57 100644 --- a/docs/src/SUMMARY.md +++ b/docs/src/SUMMARY.md @@ -1,40 +1,39 @@ -[Introduction](README.md) +[Home](README.md) -- [App Area](./App/App.md) - - [Getting Started](./App/Getting-Started.md) - - [How to use TerminalApp](./App/How-to-use-the-TerminalApp.md) - - [Literature](./App/Literature.md) +- [Introduction](./Intro/Introduction.md) + - [Getting Started](./Intro/Getting-Started.md) + - [How to use RAY-CLI](./Intro/How-to-use-the-RAY-CLI.md) + - [Literature](./Intro/Literature.md) -- [API Area](./API/API.md) +- [API](./API/API.md) - [How to use RayCore](./API/How-to-use-RayCore.md) - [RAY-X Profiling](./API/RAYX-Profiling.md) + - [How to use Doxygen](./API/How-to-use-Doxygen.md) - [Object Coordinate System](./API/Object-Coordinate-System.md) - [User vs Model Parameter](./API/User-vs-Model-Parameter.md) - - [Ray generation](./API/Ray-generation.md) - [Vulkan Tracer](./API/VulkanTracer.md) - -- [Developer Area](./Developer/Developer.md) - - [Introduction](./Developer/Introduction/00-Introduction.md) - - [How to Build](./Developer/Introduction/01-How-to-Build.md) - - [Style Guide for Programming in RAY](./Developer/Introduction/02-Style-Guide-for-Programming-in-Ray.md) - - [Model](./Developer/Model/Model.md) - - [Objects](./Developer/Model/Objects/Objects.md) - - [Reflection Zone Plate (RZP)](./Developer/Model/Objects/RZP.md) - - [PRNGs on the GPU](./Developer/Model/PRNGs-on-the-GPU.md) - - [Transformation between coordinate systems](./Developer/Model/Transformation-between-coordinate-systems.md) - - [Quad(ric) Function](./Developer/Model/Quad(ric)-function.md) - - [Approximation of ray object intersection in the case of quadric surfaces](./Developer/Model/Approximation-of-ray-object-intersection-in-the-case-of-quadric-surfaces.md) - - [Efficiency calculations](./Developer/Model/Efficiency.md) - - [Tools](./Developer/Tools/Tools.md) - - [Code Coverage](./Developer/Tools/Code-Coverage.md) - - [Debugging](./Developer/Tools/Debugging.md) - - [How to use our Formatter](./Developer/Tools/How-to-use-our-formatter.md) - - [How to use Doxygen](./Developer/Tools/How-to-use-Doxygen.md) - - [Testing](./Developer/Tools/Testing.md) - - [Vulkan](./Developer/Vulkan/Vulkan.md) - - [Vulkan one stage Compute Pipeline and beyond... A Vulkan Case Study](./Developer/Vulkan/Vulkan-Beyond.md) +- [Backend](./Backend/Backend.md) + - [Introduction](./Backend/Introduction/00-Introduction.md) + - [How to Build](./Backend/Introduction/01-How-to-Build.md) + - [Style Guide for Programming in RAY](./Backend/Introduction/02-Style-Guide-for-Programming-in-Ray.md) + - [Model](./Backend/Model/Model.md) + - [Ray generation](./API/Ray-generation.md) + - [Objects](./Backend/Model/Objects/Objects.md) + - [Reflection Zone Plate (RZP)](./Backend/Model/Objects/RZP.md) + - [PRNGs on the GPU](./Backend/Model/PRNGs-on-the-GPU.md) + - [Transformation between coordinate systems](./Backend/Model/Transformation-between-coordinate-systems.md) + - [Quad(ric) Function](./Backend/Model/Quad(ric)-function.md) + - [Approximation of ray object intersection in the case of quadric surfaces](./Backend/Model/Approximation-of-ray-object-intersection-in-the-case-of-quadric-surfaces.md) + - [Efficiency calculations](./Backend/Model/Efficiency.md) + - [Tools](./Backend/Tools/Tools.md) + - [Code Coverage](./Backend/Tools/Code-Coverage.md) + - [Debugging](./Backend/Tools/Debugging.md) + - [How to use our Formatter](./Backend/Tools/How-to-use-our-formatter.md) + - [Testing](./Backend/Tools/Testing.md) + - [Vulkan](./Backend/Vulkan/Vulkan.md) + - [Vulkan one stage Compute Pipeline and beyond... A Vulkan Case Study](./Backend/Vulkan/Vulkan-Beyond.md) - [Link Dump](Link-Dump.md) From 541a0afe5a52b1a17823d8fd3460b887c0e2ad8d Mon Sep 17 00:00:00 2001 From: Jannis Maier Date: Thu, 4 May 2023 11:54:25 +0200 Subject: [PATCH 19/19] Update gitignore to new structure --- .gitignore | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index b86c1ed41..1cc4dda75 100644 --- a/.gitignore +++ b/.gitignore @@ -4,20 +4,13 @@ bin/ bin-int/ build/ -Intern/RayCore/doc/*/ -Intern/RayCore/tests/output/** +Intern/RAY-Core/doc/*/ +Intern/RAY-Core/tests/output/** out/ # Files *.user *.code-workspace /CMakeSettings.json -/Tests/output/* -/Tests/output-new/* -/Tests/oldray_files/unittestData -/Tests/oldray_files/spec1-first_rzp02/data -/Tests/oldray_files/spec1-first_rzp4mm/data -/Tests/oldray_files/spec1+first_rzp4mm/data -/Tests/.ipynb_checkpoints/* CMakeCache.txt cmake.check_cache